diff options
author | Yomain | 2024-03-30 10:43:53 +0000 |
---|---|---|
committer | GitHub | 2024-03-30 10:43:53 +0000 |
commit | 381976a04cca05b6658eb1eaf921532d4895298d (patch) | |
tree | 5ba0445eea72c3f7a575c0bd5493e00a0a5b8d94 /runtime | |
parent | 527cbe656c740c997b299f989ac1be7cac4a8e16 (diff) |
fix: cursor line on material themes (#10043)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/themes/material_darker.toml | 1 | ||||
-rw-r--r-- | runtime/themes/material_deep_ocean.toml | 3 | ||||
-rw-r--r-- | runtime/themes/material_oceanic.toml | 3 | ||||
-rw-r--r-- | runtime/themes/material_palenight.toml | 3 |
4 files changed, 7 insertions, 3 deletions
diff --git a/runtime/themes/material_darker.toml b/runtime/themes/material_darker.toml index f117f719..52cea1d4 100644 --- a/runtime/themes/material_darker.toml +++ b/runtime/themes/material_darker.toml @@ -13,6 +13,7 @@ disabled = "#474747" accent = "#ff9800" +active = "#323232" highlight = "#3f3f3f" comment = "#616161" diff --git a/runtime/themes/material_deep_ocean.toml b/runtime/themes/material_deep_ocean.toml index b98a32e5..6cf4c0a6 100644 --- a/runtime/themes/material_deep_ocean.toml +++ b/runtime/themes/material_deep_ocean.toml @@ -76,7 +76,7 @@ "ui.cursor" = { bg = "highlight", fg = "white" } "ui.cursor.primary" = { bg = "white", fg = "gray" } -"ui.cursorline.primary" = { bg = "white" } +"ui.cursorline.primary" = { bg = "active" } "ui.virtual" = { fg = "gray" } "ui.virtual.ruler" = { bg = "highlight" } @@ -114,6 +114,7 @@ disabled = "#464b5d" accent = "#84ffff" +active = "#1a1c25" highlight = "#1f2233" comment = "#464b5d" diff --git a/runtime/themes/material_oceanic.toml b/runtime/themes/material_oceanic.toml index ea4930d3..fde54d7d 100644 --- a/runtime/themes/material_oceanic.toml +++ b/runtime/themes/material_oceanic.toml @@ -12,10 +12,11 @@ disabled = "#415967" accent = "#009688" +active = "#314549" highlight = "#425b67" comment = "#546e7a" selection = "#395b65" -line-number = "#355058"
\ No newline at end of file +line-number = "#355058" diff --git a/runtime/themes/material_palenight.toml b/runtime/themes/material_palenight.toml index ef9c27e2..f34517df 100644 --- a/runtime/themes/material_palenight.toml +++ b/runtime/themes/material_palenight.toml @@ -10,10 +10,11 @@ disabled = "#515772" accent = "#ab47bc" +active = "#414863" highlight = "#444267" comment = "#676e95" selection = "#444267" -line-number = "#3a3f58"
\ No newline at end of file +line-number = "#3a3f58" |