done with UI refactor, adjusted colors to roc logo

This commit is contained in:
Anton-4 2021-02-19 17:33:27 +01:00
parent 774f723980
commit 7853c41944
30 changed files with 2719 additions and 3173 deletions

View file

@ -2,15 +2,15 @@
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
#![allow(clippy::large_enum_variant)]
#[cfg_attr(test, macro_use)]
extern crate indoc;
extern crate pest;
#[cfg_attr(test, macro_use)]
extern crate pest_derive;
#[cfg_attr(test, macro_use)]
extern crate indoc;
mod graphics;
mod lang;
mod editor;
mod graphics;
pub mod lang; //TODO remove pub for unused warnings
mod ui;
use std::io;
@ -18,4 +18,4 @@ use std::path::Path;
pub fn launch(filepaths: &[&Path]) -> io::Result<()> {
editor::main::launch(filepaths)
}
}