Considering lightening up some of the darker colours?
As an old person with aging eyes, I find the dark colours in the dark theme (which I otherwise greatly like) too dark to see. I've had better success with this override file, and was wondering if you might consider adopting these (or something similar) in the default colour scheme?
```json
{
"globals":
{
"line_highlight": "hsla(210, 13%, 40%, 0.5)",
"gutter_foreground": "hsl(210, 10%, 30%)"
},
"rules":
[
{"name": "Symbol namespaces",
"scope": "meta.namespace.symbol, source.symbol punctuation.definition.namespace",
"foreground": "hsl(210, 10%, 50%)"},
{"name": "Metadata",
"scope": "meta.metadata, meta.metadata keyword.operator, meta.metadata string, meta.metadata constant, meta.metadata punctuation.definition.constant, meta.metadata punctuation",
"foreground": "hsl(210, 10%, 50%)"}
]
}
```
Worst case this issue can live here as a worked example for anyone else who experiences the same issue. On my system, this lives in a plain text JSON file at the location: `~/Library/Application Support/Sublime Text/Packages/User/Clojure Sublimed Dark.sublime-color-scheme`
0 条评论