Merge pull request #747 from zed-industries/styles-in-typescript

Style the Zed app using Typescript styleTrees and Design Tokens
This commit is contained in:
Nathan Sobo 2022-04-06 10:39:10 -06:00 committed by GitHub
commit e21f90fec5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 11785 additions and 1336 deletions

View file

@ -1001,7 +1001,8 @@ mod tests {
lazy_static::lazy_static! {
static ref DEFAULT_THEME: parking_lot::Mutex<Option<Arc<Theme>>> = Default::default();
static ref FONTS: Vec<Arc<Vec<u8>>> = vec![
Assets.load("fonts/zed-sans/zed-sans-extended.ttf").unwrap().to_vec().into()
Assets.load("fonts/zed-sans/zed-sans-extended.ttf").unwrap().to_vec().into(),
Assets.load("fonts/zed-mono/zed-mono-extended.ttf").unwrap().to_vec().into(),
];
}