lapce/defaults/light-theme.toml

86 lines
2.0 KiB
TOML
Raw Normal View History

2021-09-27 13:39:44 +00:00
white = "#fafafa"
black = "#383a42"
2021-09-27 16:40:34 +00:00
grey = "#E5E5E6"
2021-09-27 13:39:44 +00:00
light_grey = "#f2f2f2"
2021-09-28 08:43:36 +00:00
blue = "#4078f2"
2021-10-18 20:21:23 +00:00
red = "#e45649"
2021-09-28 08:43:36 +00:00
yellow = "#c18401"
2021-09-27 13:39:44 +00:00
green = "#50A14F"
purple = "#A626A4"
2021-09-27 17:07:52 +00:00
cyan = "#0184bc"
2021-10-18 17:49:40 +00:00
magenta = "#A626A4"
2021-09-27 13:39:44 +00:00
2021-09-27 16:40:34 +00:00
"lapce.active_tab" = "$white"
"lapce.inactive_tab" = "$grey"
2021-09-28 08:43:36 +00:00
"lapce.error" = "#e51400"
"lapce.warn" = "#e9a700"
2021-09-27 16:40:34 +00:00
"lapce.dropdown_shadow" = "#b4b4b4"
2021-09-28 08:43:36 +00:00
"lapce.border" = "#b4b4b4"
2021-09-27 16:40:34 +00:00
2021-10-14 12:05:47 +00:00
"terminal.cursor" = "$black"
"terminal.foreground" = "$black"
"terminal.background" = "$white"
2021-10-18 17:49:40 +00:00
"terminal.white" = "$white"
"terminal.black" = "$black"
"terminal.red" = "$red"
2021-10-14 20:59:48 +00:00
"terminal.blue" = "$blue"
"terminal.green" = "$green"
"terminal.yellow" = "$yellow"
2021-10-18 17:49:40 +00:00
"terminal.cyan" = "$cyan"
"terminal.magenta" = "$magenta"
2021-10-18 20:21:23 +00:00
"terminal.bright_white" = "#A0A1A7"
2021-10-18 17:49:40 +00:00
"terminal.bright_red" = "$red"
"terminal.bright_blue" = "$blue"
"terminal.bright_green" = "$green"
"terminal.bright_yellow" = "$yellow"
"terminal.bright_cyan" = "$cyan"
"terminal.bright_magenta" = "$magenta"
2021-10-18 20:21:23 +00:00
"terminal.bright_black" = "#090A0B"
2021-10-14 12:05:47 +00:00
2021-09-27 13:39:44 +00:00
"editor.background" = "$white"
"editor.foreground" = "$black"
2021-09-27 16:40:34 +00:00
"editor.dim" = "#A0A1A7"
2021-09-28 08:43:36 +00:00
"editor.caret" = "#526FFF"
2021-09-27 16:40:34 +00:00
"editor.selection" = "$grey"
"editor.current_line" = "$light_grey"
2021-09-27 13:39:44 +00:00
2021-09-27 16:40:34 +00:00
"palette.background" = "#eaeaeb"
"palette.current" = "#dbdbdc"
2021-09-27 13:39:44 +00:00
2021-09-27 16:40:34 +00:00
"completion.background" = "#eaeaeb"
"completion.current" = "#dbdbdc"
2021-09-27 13:39:44 +00:00
2021-09-27 16:40:34 +00:00
"panel.background" = "#eaeaeb"
"panel.current" = "#dbdbdc"
2021-09-27 13:39:44 +00:00
2021-09-27 16:40:34 +00:00
"status.background" = "#eaeaeb"
2021-09-28 08:43:36 +00:00
"style.comment" = "#A0A1A7"
"style.constant" = "$yellow"
"style.type" = "$yellow"
2021-10-05 10:10:49 +00:00
"style.typeAlias" = "$yellow"
2021-09-28 08:43:36 +00:00
"style.number" = "$yellow"
"style.enum" = "$yellow"
"style.struct" = "$yellow"
"style.structure" = "$yellow"
"style.interface" = "$yellow"
2021-10-05 10:10:49 +00:00
"style.attribute" = "$yellow"
2021-09-28 08:43:36 +00:00
"style.function" = "$blue"
"style.method" = "$blue"
"style.function.method" = "$blue"
"style.keyword" = "$purple"
"style.selfKeyword" = "$purple"
"style.field" = "$red"
"style.property" = "$red"
"style.enumMember" = "$red"
"style.enum-member" = "$red"
"style.string" = "$green"
"style.type.builtin" = "$cyan"
2021-10-05 10:10:49 +00:00
"style.builtinType" = "$cyan"