diff options
| author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2020-02-16 17:06:01 +0100 |
|---|---|---|
| committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2020-02-16 17:06:01 +0100 |
| commit | 28fa5edbcead160d01932d49573bc60d8d80602c (patch) | |
| tree | 72e0d8cf990b50a3d19a48889a97e03356731e36 | |
| parent | 77d27c67c1dadce4abe7a6a97c0b73eaa3706e60 (diff) | |
| download | rust-28fa5edbcead160d01932d49573bc60d8d80602c.tar.gz rust-28fa5edbcead160d01932d49573bc60d8d80602c.zip | |
Add module colors to css
| -rw-r--r-- | crates/ra_ide/src/snapshots/highlighting.html | 1 | ||||
| -rw-r--r-- | crates/ra_ide/src/snapshots/rainbow_highlighting.html | 1 | ||||
| -rw-r--r-- | crates/ra_ide/src/syntax_highlighting.rs | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/crates/ra_ide/src/snapshots/highlighting.html b/crates/ra_ide/src/snapshots/highlighting.html index 1cc55e78b51..a02dbaf2fe9 100644 --- a/crates/ra_ide/src/snapshots/highlighting.html +++ b/crates/ra_ide/src/snapshots/highlighting.html @@ -16,6 +16,7 @@ pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padd .literal { color: #BFEBBF; } .literal\.numeric { color: #6A8759; } .macro { color: #94BFF3; } +.module { color: #AFD8AF; } .variable { color: #DCDCCC; } .variable\.mut { color: #DCDCCC; text-decoration: underline; } diff --git a/crates/ra_ide/src/snapshots/rainbow_highlighting.html b/crates/ra_ide/src/snapshots/rainbow_highlighting.html index 918fd4b9787..95f038f0001 100644 --- a/crates/ra_ide/src/snapshots/rainbow_highlighting.html +++ b/crates/ra_ide/src/snapshots/rainbow_highlighting.html @@ -16,6 +16,7 @@ pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padd .literal { color: #BFEBBF; } .literal\.numeric { color: #6A8759; } .macro { color: #94BFF3; } +.module { color: #AFD8AF; } .variable { color: #DCDCCC; } .variable\.mut { color: #DCDCCC; text-decoration: underline; } diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs index 174e135951a..20c414ca1b7 100644 --- a/crates/ra_ide/src/syntax_highlighting.rs +++ b/crates/ra_ide/src/syntax_highlighting.rs @@ -365,6 +365,7 @@ pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padd .literal { color: #BFEBBF; } .literal\\.numeric { color: #6A8759; } .macro { color: #94BFF3; } +.module { color: #AFD8AF; } .variable { color: #DCDCCC; } .variable\\.mut { color: #DCDCCC; text-decoration: underline; } |
