92 lines
1.5 KiB
Haskell
92 lines
1.5 KiB
Haskell
|
module Nord
|
||
|
( nord0
|
||
|
, nord1
|
||
|
, nord2
|
||
|
, nord3
|
||
|
, nord4
|
||
|
, nord5
|
||
|
, nord6
|
||
|
, nord7
|
||
|
, nord8
|
||
|
, nord9
|
||
|
, nord10
|
||
|
, nord11
|
||
|
, nord12
|
||
|
, nord13
|
||
|
, nord14
|
||
|
, nord15
|
||
|
, yellow
|
||
|
, orange
|
||
|
, red
|
||
|
, purple
|
||
|
, green
|
||
|
, background
|
||
|
, backgroundhl
|
||
|
, foreground
|
||
|
, foregroundhl
|
||
|
, foregroundll
|
||
|
) where
|
||
|
|
||
|
-- POLAR NIGHT
|
||
|
-- The origin color or the Polar Night palette.
|
||
|
nord0 = "#2E3440";
|
||
|
|
||
|
-- A brighter shade color based on nord0.
|
||
|
nord1 = "#3B4252";
|
||
|
|
||
|
-- An even more brighter shade color of nord0.
|
||
|
nord2 = "#434C5E";
|
||
|
|
||
|
-- The brightest shade color based on nord0.
|
||
|
nord3 = "#4C566A";
|
||
|
|
||
|
-- SNOW STORM
|
||
|
-- The origin color or the Snow Storm palette.
|
||
|
nord4 = "#D8DEE9";
|
||
|
|
||
|
-- A brighter shade color of nord4.
|
||
|
nord5 = "#E5E9F0";
|
||
|
|
||
|
-- The brightest shade color based on nord4.
|
||
|
nord6 = "#ECEFF4";
|
||
|
|
||
|
-- FROST
|
||
|
-- A calm and highly contrasted color reminiscent of frozen polar water.
|
||
|
nord7 = "#8FBCBB";
|
||
|
|
||
|
-- The bright and shiny primary accent color reminiscent of pure and clear ice.
|
||
|
nord8 = "#88C0D0";
|
||
|
|
||
|
-- A more darkened and less saturated color reminiscent of arctic waters.
|
||
|
nord9 = "#81A1C1";
|
||
|
|
||
|
-- A dark and intensive color reminiscent of the deep arctic ocean.
|
||
|
nord10 = "#5E81AC";
|
||
|
|
||
|
-- AURORA
|
||
|
-- RED
|
||
|
nord11 = "#BF616A";
|
||
|
|
||
|
-- ORANGE
|
||
|
nord12 = "#D08770";
|
||
|
|
||
|
-- YELLOW
|
||
|
nord13 = "#EBCB8B";
|
||
|
|
||
|
-- GREEN
|
||
|
nord14 = "#A3BE8C";
|
||
|
|
||
|
-- PURPLE
|
||
|
nord15 = "#B48EAD";
|
||
|
|
||
|
foregroundhl = nord6
|
||
|
foreground = nord5
|
||
|
foregroundll = nord4
|
||
|
backgroundhl = nord1
|
||
|
background = nord0
|
||
|
red = nord11
|
||
|
orange = nord12
|
||
|
yellow = nord13
|
||
|
green = nord14
|
||
|
purple = nord15
|