25 lines
694 B
Go
25 lines
694 B
Go
package theme
|
|
|
|
// nord theme
|
|
// https://www.nordtheme.com/
|
|
var paletteNord = Palette{
|
|
Name: "nord",
|
|
|
|
Fg: "#eceff4", // snow storm - nord6
|
|
FgMuted: "#d8dee9", // snow storm - nord4
|
|
FgSubtle: "#4c566a", // polar night - nord3
|
|
Bg: "#2e3440", // polar night - nord0
|
|
BgMuted: "#3b4252", // polar night - nord1
|
|
Border: "#434c5e", // polar night - nord2
|
|
|
|
Red: "#bf616a", // aurora - nord11
|
|
Green: "#a3be8c", // aurora - nord14
|
|
Yellow: "#ebcb8b", // aurora - nord13
|
|
Blue: "#81a1c1", // frost - nord9
|
|
Magenta: "#b48ead", // aurora - nord15
|
|
Cyan: "#88c0d0", // frost - nord8
|
|
Orange: "#d08770", // aurora - nord12
|
|
Gray: "#4c566a", // polar night - nord3
|
|
}
|
|
|