-
Notifications
You must be signed in to change notification settings - Fork 6
/
themes.ts
48 lines (46 loc) · 874 Bytes
/
themes.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
import {
darkGray,
black,
white80,
white40,
goodweebsPurple,
white10,
white20,
white95,
white15,
white12_5,
alienGreen,
darkBlue,
white,
gray6,
white30,
white60,
} from "yep/colors";
export const darkTheme = {
background: black,
navBackground: darkGray,
button: white12_5,
buttonBorder: white30,
text: white95,
subText: white80,
subHeader: white60,
textInverted: black,
iconFill: white95,
footnote: white80,
chipBorder: white15,
selectedChipFill: white95,
listCount: white80,
accent: goodweebsPurple,
listItemBackground: white10,
listItemBorder: white20,
inputPlaceholder: white40,
success: alienGreen,
};
export const websiteTheme = {
navBackground: darkBlue,
text: white,
subText: white95,
hoveredLink: goodweebsPurple,
downloadSectionBackground: goodweebsPurple,
pageBackground: gray6,
};