changeset 6743:abe77e950260

feat(theme): add vesper theme (#13394)
author IwantHappiness <132616344+IwantHappiness@users.noreply.github.com>
date Sat, 26 Apr 2025 19:16:18 +0300
parents dd459331fb09
children ba59923e50fc
files runtime/themes/licenses/vesper.LICENSE runtime/themes/vesper.toml
diffstat 2 files changed, 142 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/runtime/themes/licenses/vesper.LICENSE	Sat Apr 26 19:16:18 2025 +0300
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2023 Rauno Freiberg
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/runtime/themes/vesper.toml	Sat Apr 26 19:16:18 2025 +0300
@@ -0,0 +1,121 @@
+# Author: IwantHappiness <[email protected]>
+
+tag = { fg = "beige" }
+type = { fg = "beige" }
+
+label = { fg = "beige" }
+
+operator = { fg = "gray" }
+
+attribute = { fg = "gray" }
+
+function = { fg = "beige" }
+
+namespace = { fg = "beige" }
+
+comment = { fg = "comment" }
+
+constructor = { fg = "beige" }
+
+constant = { fg = "beige" }
+"constant.character.escape" = { fg = "gray" }
+
+"markup.bold" = { modifiers = ["bold"] }
+"markup.link" = { fg = "bright-green", underline = { style = "line" } }
+
+variable = { fg = "white" }
+"variable.builtin" = { fg = "gray" }
+"variable.parameter" = { modifiers = ["italic"] }
+
+"murkup.raw" = { bg = "white" }
+"murkup.normal" = { bg = "white" }
+"murkup.heading" = { bg = "white" }
+
+"diff.delta" = { fg = "beige" }
+"diff.minus" = { fg = "#FF808015" }
+"diff.plus" = { fg = "bright-green" }
+
+string = { fg = "bright-green" }
+"string.regexp" = { fg = "gray" }
+"string.special.path" = { fg = "gray" }
+"string.special.url" = { fg = "white", underline = { style = "line" } }
+
+punctuation = { fg = "gray" }
+"punctuation.bracket" = { fg = "gray" }
+"punctuation.delimiter" = { fg = "white" }
+"punctuation.special" = { fg = "bright-green" }
+
+keyword = { fg = "gray" }
+"keyword.operator" = { fg = "beige" }
+"keyword.function" = { fg = "beige" }
+"keyword.directive" = { fg = "beige" }
+"keyword.storage.type" = { fg = "beige" }
+"keyword.control.repeat" = { fg = "gray" }
+"keyword.control.import" = { fg = "beige" }
+"keyword.control.conditional" = { fg = "gray" }
+
+error = { fg = "red" }
+hint = { fg = "gray" }
+info = { fg = "white" }
+warning = { fg = "beige" }
+"diagnostic.unnecessary" = { modifiers = ["dim"] }
+"diagnostic.deprecated" = { modifiers = ["crossed_out"] }
+"diagnostic.error" = { underline = { style = "curl", color = "red" } }
+"diagnostic.warning" = { underline = { style = "curl", color = "beige"} }
+"diagnostic.info" = { underline = { style = "curl", color = "white"} }
+"diagnostic.hint" = { underline = { style = "curl", color = "gray" } }
+
+# tabstop = { bg = "white" }
+
+# UI
+# "ui.window" = { bg = "white" }
+
+"ui.popup" = { bg = "dark-gray" }
+ 
+"ui.selection" = { bg = "bg-selection" }
+
+"ui.help" = { bg = "dark-gray", fg = "beige" }
+
+"ui.background" = { bg = "black", fg = "white" }
+
+"ui.picker.header.column.active" = { bg = "gray" }
+
+"ui.linenr" = { fg = "dim-gray" }
+"ui.linenr.selected" = { fg = "white" }
+
+"ui.virtual.whitespace" = { fg = "dim-gray" }
+"ui.virtual.inlay-hint" = { bg = "dark-gray", fg = "gray" }
+
+"ui.text" = { fg = "white" }
+"ui.text.inactive" = { fg = "comment" }
+"ui.text.focus" = { bg = "bright-green", fg = "black" }
+
+"ui.menu.scroll" = { fg = "white" }
+"ui.menu.selected" = { bg = "dim-gray" }
+"ui.menu" = { fg = "white", bg = "dark-gray" }
+
+"ui.statusline" = { bg = "dark-gray" }
+"ui.statusline.inactive" = { bg = "dark-gray" }
+"ui.statusline.select" = { bg = "red", fg = "black" }
+"ui.statusline.normal" = { bg = "beige", fg = "black" }
+"ui.statusline.insert" = { bg = "bright-green", fg = "black" }
+
+"ui.cursor.insert" = { bg = "bright-green" }
+"ui.cursorline.primary" = { bg = "dark-gray" }
+"ui.cursorline.secondary" = { bg = "dark-gray" }
+"ui.cursor.primary" = { bg = "cursor", fg = "black" }
+"ui.cursor" = { fg = "white", modifiers = ["reversed"] }
+
+[palette]
+red = "#ff8080"
+gray = "#A0A0A0"
+white = "#ffffff"
+beige = "#ffc799"
+black = "#101010"
+dim-gray = "#505050"
+dark-gray = "#1C1C1C"
+bright-green = "#99FFE415"
+
+cursor = "#aeafad"
+comment = "#8b8b8b94"
+bg-selection = "#666666"