25 lines
559 B
Go
25 lines
559 B
Go
package theme
|
|
|
|
// dracula theme
|
|
// https://draculatheme.com/
|
|
var paletteDracula = Palette{
|
|
Name: "dracula",
|
|
|
|
Fg: "#f8f8f2", // foreground
|
|
FgMuted: "#f8f8f2", // foreground
|
|
FgSubtle: "#6272a4", // comment
|
|
Bg: "#282a36", // background
|
|
BgMuted: "#44475a", // selection
|
|
Border: "#44475a", // selection
|
|
|
|
Red: "#ff5555",
|
|
Green: "#50fa7b",
|
|
Yellow: "#f1fa8c",
|
|
Blue: "#6272a4", // dracula uses comment color for blue tones
|
|
Magenta: "#bd93f9", // purple
|
|
Cyan: "#8be9fd",
|
|
Orange: "#ffb86c",
|
|
Gray: "#6272a4", // comment
|
|
}
|
|
|