helix-mods/runtime/themes/ayu_light.toml

82 lines
2.4 KiB
TOML
Raw Normal View History

2022-07-26 03:05:27 +02:00
# Author: André Sá <enkodr@outlook.com>
# Based on the AYU theme colors from https://github.com/dempfi/ayu
2022-07-26 03:05:27 +02:00
# Syntax highlighting
2022-11-10 01:42:44 +01:00
"type" = "blue"
"type.builtin" = "blue"
"constructor" = "green"
"constant" = "magenta"
"string" = "green"
"string.regexp" = "orange"
"string.special" = "yellow"
2022-07-26 03:05:27 +02:00
"comment" = { fg = "gray", modifiers = ["italic"] }
2022-11-10 01:42:44 +01:00
"variable" = "foreground"
"label" = "orange"
"punctuation" = "foreground"
"keyword" = "orange"
"keyword.control" = "yellow"
"keyword.directive" = "yellow"
"operator" = "orange"
"function" = "yellow"
"tag" = "blue"
"namespace" = "blue"
"markup.heading" = "orange"
"markup.list" = "yellow"
"markup.raw.block" = { bg = "gray", fg = "orange" }
2022-11-10 01:42:44 +01:00
"markup.link.url" = "blue"
"markup.link.text" = "yellow"
"markup.link.label" = "green"
"markup.quote" = "yellow"
"diff.plus" = "green"
"diff.minus" = "red"
"diff.delta" = "yellow"
2022-07-26 03:05:27 +02:00
# Interface
"ui.background"= { bg = "background" }
2022-11-30 00:30:06 +01:00
"ui.cursor" = { fg = "dark_gray", bg = "orange" }
2022-11-10 01:42:44 +01:00
"ui.cursor.match" = "orange"
"ui.linenr" = "dark_gray"
"ui.linenr.selected" = "gray"
"ui.statusline" = { fg = "foreground", bg = "black" }
"ui.cursorline" = { bg = "black" }
2022-11-10 01:42:44 +01:00
"ui.popup" = { fg = "#7B91b3", bg = "black" }
"ui.window" = "dark_gray"
"ui.help" = { fg = "#7B91b3", bg = "black" }
"ui.text" = "foreground"
"ui.text.focus" = { bg = "dark_gray", fg = "foreground" }
"ui.text.info" = "foreground"
"ui.virtual.whitespace" = "dark_gray"
2022-07-26 03:05:27 +02:00
"ui.virtual.ruler" = { bg = "black" }
"ui.menu" = { fg = "foreground", bg = "black" }
2022-11-10 01:42:44 +01:00
"ui.menu.selected" = { bg = "gray", fg = "background" }
"ui.selection" = { bg = "dark_gray" }
"warning" = "yellow"
2022-07-26 03:05:27 +02:00
"error" = { fg = "red", modifiers = ["bold"] }
"info" = { fg = "blue", modifiers = ["bold"] }
"hint" = { fg = "blue", modifiers = ["bold"] }
"diagnostic"= { fg = "red", modifiers = ["underlined"] }
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
2022-11-10 01:42:44 +01:00
"ui.bufferline" = { fg = "gray", bg = "background" }
"ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" }
2022-07-26 03:05:27 +02:00
2022-11-10 01:42:44 +01:00
"special" = "orange"
2022-07-26 03:05:27 +02:00
[palette]
2022-11-10 01:42:44 +01:00
background = "#fafafa"
2022-07-26 03:05:27 +02:00
foreground = "#5c6166"
black = "#e7eaed"
white = "#fcfcfc"
2022-07-26 03:05:27 +02:00
blue = "#399ee6"
light_blue = "#55b4d4"
2022-07-26 03:05:27 +02:00
cyan = "#478acc"
2022-11-10 01:42:44 +01:00
dark_gray = "#d8d8d7"
gray = "#828c9a"
2022-07-26 03:05:27 +02:00
green = "#86b300"
magenta = "#a37acc"
orange = "#fa8d3e"
red = "#f07171"
yellow = "#ffaa33"