diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-11 01:46:29 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-11 01:46:29 +0200 |
commit | ca8adb497460e39654069ef583d851dd05078cb4 (patch) | |
tree | ef194bebfe1154823450daa708396782109dfe82 /util/themecontext.tsx | |
parent | bb6fe7325dfe76c0618d34455e56122c3204a3b3 (diff) | |
parent | f495a9499c549d92d64ee3a2e50a239ea769c609 (diff) |
chore(preview): merge branches
Diffstat (limited to 'util/themecontext.tsx')
-rw-r--r-- | util/themecontext.tsx | 29 |
1 files changed, 3 insertions, 26 deletions
diff --git a/util/themecontext.tsx b/util/themecontext.tsx index fdea9d6..1a62e73 100644 --- a/util/themecontext.tsx +++ b/util/themecontext.tsx @@ -1,31 +1,8 @@ import { createContext } from 'react' -const initialTheme = { - base1: '#1c1f24', - base2: '#21272d', - base3: '#23272e', - base4: '#484854', - base5: '#62686E', - base6: '#757B80', - base7: '#9ca0a4', - base8: '#DFDFDF', - bg: '#242730', - 'bg-alt': '#2a2e38', - blue: '#51afef', - cyan: '#5cEfFF', - 'dark-blue': '#1f5582', - 'dark-cyan': '#6A8FBF', - fg: '#bbc2cf', - 'fg-alt': '#5D656B', - green: '#7bc275', - grey: '#484854', - magenta: '#C57BDB', - orange: '#e69055', - red: '#ff665c', - teal: '#4db5bd', - violet: '#a991f1', - yellow: '#FCCE7B', -} +import { themes } from '../components/themes' +const initialTheme = ['vibrant', themes['one-vibrant']] +type Theme = [name: string, themeObject: { [color: string]: string }] export interface ThemeContextProps { emacsTheme: typeof initialTheme |