-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.ts
33 lines (31 loc) · 1.13 KB
/
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
import { buildLegacyTheme } from "sanity"
const props = {
"--my-white": "#fff",
"--my-black": "#1a1a1a",
"--my-red": "#b44337",
"--my-green": "#0f9d58",
"--papa-fam-brand": "#F7AB0A",
"--my-yellow": "#f4bb40",
"--my-cyan": "#0ff"
}
export const myTheme = buildLegacyTheme({
"--black": props["--my-black"],
"--white": props["--my-white"],
"--gray": "#666",
"--gray-base": "#666",
"--component-bg": props["--my-black"],
"--component-text-color": props["--my-white"],
"--brand-primary": props["--papa-fam-brand"],
"--default-button-color": "#666",
"--default-button-primary-color": props["--papa-fam-brand"],
"--default-button-danger-color": props["--my-red"],
"--default-button-success-color": props["--my-green"],
"--default-button-warning-color": props["--my-yellow"],
"--state-info-color": props["--papa-fam-brand"],
"--state-success-color": props["--my-green"],
"--state-danger-color": props["--my-red"],
"--state-warning-color": props["--my-yellow"],
"--main-navigation-color": props["--my-black"],
"--main-navigation-color--inverted": props["--my-white"],
"--focus-color": props["--papa-fam-brand"]
})