Skip to content

Commit

Permalink
Flexoki light and dark themes
Browse files Browse the repository at this point in the history
  • Loading branch information
natrimmer authored and jgmdev committed Oct 12, 2023
1 parent de47335 commit bb1ab6b
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 0 deletions.
31 changes: 31 additions & 0 deletions colors/flexoki_dark.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
-- Flexoki dark theme by Steph Ango (kepano), https://stephango.com/flexoki
-- Ported by chambored, https://github.com/chambored

local style = require "core.style"
local common = require "core.common"

style.background = { common.color "#100F0F" }
style.background2 = { common.color "#1C1B1A" }
style.background3 = { common.color "#282726" }
style.text = { common.color "#CECDC3" }
style.caret = { common.color "#CECDC3" }
style.accent = { common.color "#205EA6" } -- blue
style.dim = { common.color "#CECDC3" }
style.divider = { common.color "#403E3C" } -- ui-3
style.selection = { common.color "#343331" } -- ui-2
style.line_number = { common.color "#6F6E69" }
style.line_number2 = { common.color "#100F0F" } -- black
style.line_highlight = { common.color "#575653" } -- tx-3
style.scrollbar = { common.color "#DAD8CE" } -- tx-1
style.scrollbar2 = { common.color "#878580" } -- tx-2

style.syntax["normal"] = { common.color "#282726" } -- ui
style.syntax["symbol"] = { common.color "#5E409D" } -- purple
style.syntax["comment"] = { common.color "#6F6E69" } -- tx-2
style.syntax["keyword"] = { common.color "#AF3029" } -- red
style.syntax["keyword2"] = { common.color "#205EA6" } -- blue
style.syntax["number"] = { common.color "#66800B" } -- green
style.syntax["literal"] = { common.color "#AD8301" } -- yellow
style.syntax["string"] = { common.color "#BC5215" } -- orange
style.syntax["operator"] = { common.color "#66800B" } -- green
style.syntax["function"] = { common.color "#24837B" } -- cyan
32 changes: 32 additions & 0 deletions colors/flexoki_light.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
-- Flexoki light theme by Steph Ango (kepano), https://stephango.com/flexoki
-- Ported by chambored, https://github.com/chambored

local style = require "core.style"
local common = require "core.common"

style.background = { common.color "#FFFCF0" }
style.background2 = { common.color "#F2F0E5" }
style.background3 = { common.color "#E6E4D9" }
style.text = { common.color "#1C1B1A" }
style.caret = { common.color "#1C1B1A" }
style.accent = { common.color "#4385BE" } -- blue
style.dim = { common.color "#1C1B1A" }
style.divider = { common.color "#CECDC3" } -- ui-3
style.selection = { common.color "#DAD8CE" } -- ui-2
style.line_number = { common.color "#6F6E69" } -- tx-2
style.line_number2 = { common.color "#FFFCF0" } -- paper
style.line_highlight = { common.color "#B7B5AC" } -- tx-3
style.scrollbar = { common.color "#E6E4D9" } -- ui
style.scrollbar2 = { common.color "#B7B5AC" } -- tx-3

style.syntax["normal"] = { common.color "#E6E4D9" } -- ui
style.syntax["symbol"] = { common.color "#8B7EC8" } -- purple
style.syntax["comment"] = { common.color "#6F6E69" } -- tx-2
style.syntax["keyword"] = { common.color "#D14D41" } -- red
style.syntax["keyword2"] = { common.color "#4385BE" } -- blue
style.syntax["number"] = { common.color "#879A39" } -- green
style.syntax["literal"] = { common.color "#D0A215" } -- yellow
style.syntax["string"] = { common.color "#DA702C" } -- orange
style.syntax["operator"] = { common.color "#879A39" } -- green
style.syntax["function"] = { common.color "#3AA99F" } -- cyan

19 changes: 19 additions & 0 deletions previews/flexoki_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions previews/flexoki_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bb1ab6b

Please sign in to comment.