diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-06 14:35:04 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-06 14:35:04 -0700 |
commit | 823620b2a6ebb7ece619991e47a37ad46542b69f (patch) | |
tree | 82a1501c5f707a1bcbc6c28bd6d0f5731cc9f618 /src/engine/utils/colors.ts | |
parent | ce06fa7c29ba4e3d6137f7aa74fbfe45af0e8b73 (diff) | |
download | the-abstraction-engine-823620b2a6ebb7ece619991e47a37ad46542b69f.tar.gz the-abstraction-engine-823620b2a6ebb7ece619991e47a37ad46542b69f.zip |
add particles
Diffstat (limited to 'src/engine/utils/colors.ts')
-rw-r--r-- | src/engine/utils/colors.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/engine/utils/colors.ts b/src/engine/utils/colors.ts new file mode 100644 index 0000000..199180c --- /dev/null +++ b/src/engine/utils/colors.ts @@ -0,0 +1,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", +}; |