forked from pointer-gg/comments-with-polygon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.ts
58 lines (56 loc) · 1.06 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
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
import { extendTheme, theme as DEFAULT_THEME } from "@chakra-ui/react";
const theme = extendTheme({
config: {
initialColorMode: "dark",
useSystemColorMode: false,
},
fonts: {
heading: "Poppins",
body: "Poppins",
},
styles: {
global: {
body: {
bgGradient: "",
},
},
},
colors: {
gray: {
50: "#FAFAFA",
100: "#F5F5F5",
200: "#E5E5E5",
300: "#D4D4D4",
400: "#A3A3A3",
500: "#737373",
600: "#525252",
700: "#404040",
800: "#262626",
900: "#171717",
},
},
components: {
Avatar: {
baseStyle: {
container: {
bgGradient: "linear(to-r, purple.300, pink.300)",
// border: "2px solid var(--chakra-colors-purple-300)"
},
},
},
Textarea: {
defaultProps: {
focusBorderColor: "pink.200",
},
},
Spinner: {
baseStyle: {
color: "pink.200",
},
},
},
shadows: {
outline: "0 0 0 3px var(--chakra-colors-pink-200) !important",
},
});
export default theme;