From 5200f3d94b9d97749e0c2aea785a91b674dc9436 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Fri, 25 Jun 2021 09:13:58 +0200 Subject: [PATCH] WIP: adding 'voronianski color schemes Resources from: https://github.com/voronianski --- data/colors/breakers.lua | 29 +++++++++++++++++++++++++++++ data/colors/oceanic.lua | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 data/colors/breakers.lua create mode 100644 data/colors/oceanic.lua diff --git a/data/colors/breakers.lua b/data/colors/breakers.lua new file mode 100644 index 00000000..7218c16f --- /dev/null +++ b/data/colors/breakers.lua @@ -0,0 +1,29 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#f9fafa" } -- 249 250 250 +style.background2 = { common.color "#ebedef" } -- 235 237 239 +style.background3 = { common.color "#2c2a2b" } -- A FAIRE +style.text = { common.color "#404040" }-- A FAIRE +style.caret = { common.color "#fc1785" }-- A FAIRE +style.accent = { common.color "#fc1785" }-- A FAIRE +style.dim = { common.color "#b0b0b0" }-- A FAIRE +style.divider = { common.color "#e8e8e8" }-- A FAIRE +style.selection = { common.color "#b7dce8" }-- A FAIRE +style.line_number = { common.color "#d0d0d0" }-- A FAIRE +style.line_number2 = { common.color "#808080" }-- A FAIRE +style.line_highlight = { common.color "#e3e6e8" }-- 227 230 232 --"#c7cbd1" } +style.scrollbar = { common.color "#e0e0e0" }-- A FAIRE +style.scrollbar2 = { common.color "#c0c0c0" }-- A FAIRE + + +style.syntax["normal"] = { common.color "#323232" } -- 50 50 50 +style.syntax["symbol"] = { common.color "#323232" } -- 50 50 50 +style.syntax["comment"] = { common.color "#999999" } -- 153 153 153 +style.syntax["keyword"] = { common.color "#c695c6" } -- 198 149 198 +style.syntax["keyword2"] = { common.color "#ec6066" } -- 236 96 102 red-like +style.syntax["number"] = { common.color "#f9ae57" } -- 249 174 87 +style.syntax["literal"] = { common.color "#60b4b4" } -- 96 180 180 +style.syntax["string"] = { common.color "#99c794" } -- 153 199 148 +style.syntax["operator"] = { common.color "#f97b57" } -- 249 123 87 red-like operator +style.syntax["function"] = { common.color "#6699cc" } -- 102 153 204 blue-like diff --git a/data/colors/oceanic.lua b/data/colors/oceanic.lua new file mode 100644 index 00000000..52d9e0c5 --- /dev/null +++ b/data/colors/oceanic.lua @@ -0,0 +1,35 @@ +-- https://github.com/voronianski/oceanic-next-color-scheme + +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#1b2b34" } -- OK +style.background2 = { common.color "#343d46" } -- OK unfocused tab and statusview background +style.background3 = { common.color "#343d46" } -- OK +style.text = { common.color '#CDD3DE' } -- OK +style.caret = { common.color '#c0c5ce' } -- OK +style.accent = { common.color "#e1e1e6" } +style.dim = { common.color "#525257" } +style.divider = { common.color '#343d46' } -- OK +style.selection = { common.color '#4f5b66' } -- OK +style.line_number = { common.color "#525259" } +style.line_number2 = { common.color "#83838f" } +style.line_highlight = { common.color "#343438" } +style.scrollbar = { common.color "#414146" } +style.scrollbar2 = { common.color "#4b4b52" } +style.nagbar = { common.color "#FF0000" } +style.nagbar_text = { common.color "#FFFFFF" } +style.nagbar_dim = { common.color "rgba(0, 0, 0, 0.45)" } + +style.syntax = {} +style.syntax["normal"] = { common.color "#e1e1e6" } +style.syntax["symbol"] = { common.color "#e1e1e6" } +style.syntax["comment"] = { common.color "#676b6f" } +style.syntax["keyword"] = { common.color "#E58AC9" } +style.syntax["keyword2"] = { common.color "#F77483" } +style.syntax["number"] = { common.color "#FFA94D" } +style.syntax["literal"] = { common.color "#FFA94D" } +style.syntax["string"] = { common.color "#f7c95c" } +style.syntax["operator"] = { common.color "#93DDFA" } +style.syntax["function"] = { common.color "#93DDFA" } +