Skip to content

Commit

Permalink
feat(color): add new theme for golden dullahan
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Nov 23, 2023
1 parent 05797c9 commit e67bafd
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 1 deletion.
1 change: 0 additions & 1 deletion colors/dullahan-gold.lua

This file was deleted.

1 change: 1 addition & 0 deletions colors/dullahan-golden.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("dullahan")._load("golden")
67 changes: 67 additions & 0 deletions lua/dullahan/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,73 @@ M.default = {
fg = hsl(0, 0, 95), -- #f2f2f2
}

M.golden = {
none = "NONE",

base04 = hsl(0, 0, 4), -- #0a0a0a
base03 = hsl(0, 0, 8), -- #141414
base02 = hsl(0, 0, 11), -- #1c1c1c
base01 = hsl(0, 0, 67), -- #ababab
base00 = hsl(0, 0, 40), -- #666666
base0 = hsl(0, 0, 95), -- #f2f2f2
base1 = hsl(200, 100, 58), -- #5effc3
base2 = hsl(0, 0, 47), -- #787878
base3 = hsl(0, 0, 78), -- #c7c7c7
base4 = hsl(0, 0, 100), -- #ffffff
yellow = hsl(245, 100, 68), -- #695cff
yellow100 = hsl(245, 100, 78), -- #988fff
yellow300 = hsl(245, 100, 73), -- #8175ff
yellow500 = hsl(245, 100, 68), -- #695cff
yellow700 = hsl(245, 100, 63), -- #5242ff
yellow900 = hsl(246, 100, 58), -- #3b29ff
orange = hsl(257, 100, 58), -- #6529ff
orange100 = hsl(257, 100, 80), -- #b699ff
orange300 = hsl(257, 100, 63), -- #7842ff
orange500 = hsl(257, 100, 58), -- #6529ff
orange700 = hsl(257, 100, 53), -- #530fff
orange900 = hsl(257, 100, 48), -- #4500f5
red = hsl(275, 100, 68), -- #ba5aff
red100 = hsl(275, 100, 80), -- #d499ff
red300 = hsl(275, 100, 72), -- #c370ff
red500 = hsl(275, 100, 68), -- #bb5cff
red700 = hsl(275, 100, 47), -- #8c00f0
red900 = hsl(275, 100, 42), -- #7d00d6
magenta = hsl(9, 100, 57), -- #e6583e
magenta100 = hsl(9, 100, 80), -- #ffa899
magenta300 = hsl(9, 100, 73), -- #ff8a75
magenta500 = hsl(9, 100, 57), -- #e6583e
magenta700 = hsl(9, 100, 47), -- #f02400
magenta900 = hsl(9, 100, 42), -- #d62000
violet = hsl(215, 100, 62), -- #3d8eff
violet100 = hsl(214, 100, 80), -- #99c3ff
violet300 = hsl(215, 100, 70), -- #66a6ff
violet500 = hsl(215, 100, 62), -- #3d8eff
violet700 = hsl(215, 100, 50), -- #006aff
violet900 = hsl(215, 100, 42), -- #0059d6
blue = hsl(41, 100, 50), -- #ffb000
blue100 = hsl(230, 100, 82), -- #ffe2a3
blue300 = hsl(230, 100, 76), -- #ffd885
blue500 = hsl(230, 100, 50), -- #ffb000
blue700 = hsl(230, 100, 47), -- #f0a400
blue900 = hsl(230, 100, 42), -- #d69200
cyan = hsl(200, 100, 62), -- #5ac8ff
cyan100 = hsl(201, 100, 80), -- #99ddff
cyan300 = hsl(200, 100, 68), -- #5cc9ff
cyan500 = hsl(200, 100, 62), -- #3dbeff
cyan700 = hsl(207, 100, 53), -- #0fafff
cyan900 = hsl(208, 100, 48), -- #00a3f5
green = hsl(260, 100, 68), -- #925cff
green100 = hsl(282, 100, 84), -- #e7adff
green300 = hsl(268, 100, 76), -- #da85ff
green500 = hsl(260, 100, 68), -- #925cff
green700 = hsl(260, 100, 20), -- #470066
green900 = hsl(260, 100, 10), -- #240033

bg = hsl(0, 0, 11), -- #1c1c1c
bg_highlight = hsl(0, 0, 8), -- #141414
fg = hsl(0, 0, 95), -- #f2f2f2
}

---@return ColorScheme
function M.setup(opts)
opts = opts or {}
Expand Down

0 comments on commit e67bafd

Please sign in to comment.