WIP – Add Syntax themes to importer
Co-Authored-By: Marshall Bowers <1486634+maxdeviant@users.noreply.github.com>
This commit is contained in:
parent
4b5ca3e420
commit
efd1db1b09
19 changed files with 553 additions and 1724 deletions
|
@ -59,6 +59,17 @@ pub fn andromeda() -> UserThemeFamily {
|
|||
hidden: Some(rgba(0x746f77ff).into()),
|
||||
..Default::default()
|
||||
},
|
||||
syntax: Some(UserSyntaxTheme {
|
||||
highlights: vec![
|
||||
("comment".into(), rgba(0x9fa0a6cc).into()),
|
||||
("something".into(), rgba(0x00e8c6ff).into()),
|
||||
("punctuation".into(), rgba(0xf92571ff).into()),
|
||||
("something".into(), rgba(0xc64dedff).into()),
|
||||
("something".into(), rgba(0xee5d42ff).into()),
|
||||
("something".into(), rgba(0x95e072ff).into()),
|
||||
("punctuation".into(), rgba(0x95e072ff).into()),
|
||||
],
|
||||
}),
|
||||
},
|
||||
},
|
||||
UserTheme {
|
||||
|
@ -107,6 +118,17 @@ pub fn andromeda() -> UserThemeFamily {
|
|||
hidden: Some(rgba(0x746f77ff).into()),
|
||||
..Default::default()
|
||||
},
|
||||
syntax: Some(UserSyntaxTheme {
|
||||
highlights: vec![
|
||||
("comment".into(), rgba(0x9fa0a6cc).into()),
|
||||
("something".into(), rgba(0x00e8c6ff).into()),
|
||||
("punctuation".into(), rgba(0xf92571ff).into()),
|
||||
("something".into(), rgba(0xc64dedff).into()),
|
||||
("something".into(), rgba(0xee5d42ff).into()),
|
||||
("something".into(), rgba(0x95e072ff).into()),
|
||||
("punctuation".into(), rgba(0x95e072ff).into()),
|
||||
],
|
||||
}),
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue