summaryrefslogtreecommitdiff
path: root/src/engine/utils/colors.ts
blob: 199180c3123db645099826fc1a3334916d12444e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// gruvbox dark
export const colors = {
  bg: "#282828",
  fg: "#ebdbb2",
  red: "#cc241d",
  green: "#98971a",
  yellow: "#d79921",
  blue: "#458588",
  purple: "#b16286",
  aqua: "#689d6a",
  orange: "#d65d0e",
  gray: "#a89984",
  lightGray: "#928374",
  darkGray: "#3c3836",
  lightRed: "#fb4934",
  lightGreen: "#b8bb26",
  lightYellow: "#fabd2f",
  lightBlue: "#83a598",
  lightPurple: "#d3869b",
  lightAqua: "#8ec07c",
  lightOrange: "#fe8019",
};