-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuse-theme.ts
151 lines (130 loc) · 3.04 KB
/
use-theme.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import type { Theme } from "../types.js"
type ThemePalette = {
background: string,
foreground: string,
primary: string,
secondary: string,
}
const nord = {
foreground: "#D8DEE9",
background: "#2E3440",
primary: "#94BECE",
secondary: "#94BECE",
}
const dracula = {
foreground: "#f8f8f2",
background: "#282a36",
primary: "#bd93f9",
secondary: "#50fa7b",
}
export const catppuccinMocha = {
foreground: "#cdd6f4",
background: "#282a36",
primary: "#b1baf7",
secondary: "#50fa7b",
}
const catppuccinMacchiato = {
foreground: "#cad3f5",
background: "#24273a",
primary: "#b7bdf8",
secondary: "#50fa7b",
}
const catppuccinFrappe = {
foreground: "#cad3f5",
background: "#24273a",
primary: "#babbf1",
secondary: "#50fa7b",
}
const catppuccinLatte = {
foreground: "#4c4f69",
background: "#dce0e8",
primary: "#7287fd",
secondary: "#50fa7b",
}
const onedark = {
foreground: "#abb2bf",
background: "#282c34",
primary: "#98c379",
secondary: "#d19a66",
}
const onedarkDark = {
foreground: "#abb2bf",
background: "#000000",
primary: "#89ca78",
secondary: "#d19a66",
}
const onelight = {
foreground: "#6a6a6a",
background: "#fafafa",
primary: "#1da912",
secondary: "#ee9025",
}
const onedarkVivid = {
foreground: "#abb2bf",
background: "#282c34",
primary: "#89ca78",
secondary: "#d19a66",
}
const tokyonightStorm = {
foreground: "#c0caf5",
background: "#24283b",
primary: "#7aa2f7",
secondary: "#9ece6a",
}
const tokyonightMoon = {
foreground: "#c8d3f5",
background: "#222436",
primary: "#82aaff",
secondary: "#c3e88d",
}
const tokyonightDay = {
foreground: "#222436",
background: "#c8d3f5",
primary: "#82aaff",
secondary: "#c3e88d",
}
const tokyonight = {
...tokyonightStorm,
background: "#1a1b26",
}
const ayu = {
foreground: "#cfcebe",
background: "#212733",
primary: "#e59448",
secondary: "#b7cb52",
}
const ayuDark = {
foreground: "#cfcebe",
background: "#0f141a",
primary: "#ff7734",
secondary: "#b7cb52",
}
const ayuLight = {
foreground: "#616772",
background: "#fafafa",
primary: "#ff7734",
secondary: "#b7cb52",
}
export function getTheme(theme?: Theme): ThemePalette {
const selectedTheme = theme || process.env.BETTER_TMUX_THEME || 'catppuccin-mocha'
switch (selectedTheme) {
case 'catppuccin-mocha': return catppuccinMocha
case 'catppuccin-macchiato': return catppuccinMacchiato
case 'catppuccin-latte': return catppuccinLatte
case 'catppuccin-frappe': return catppuccinFrappe
case 'nord': return nord
case 'dracula': return dracula
case 'onedark': return onedark
case 'onelight': return onelight
case 'onedark-vivid': return onedarkVivid
case 'onedark-dark': return onedarkDark
case 'tokyonight': return tokyonight
case 'tokyonight-storm': return tokyonightStorm
case 'tokyonight-moon': return tokyonightMoon
case 'tokyonight-day': return tokyonightDay
case 'ayu': return ayu
case 'ayu-dark': return ayuDark
case 'ayu-light': return ayuLight
}
}
export const useTheme = getTheme