forked from r4topunk/gnars-base
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.config.ts
45 lines (43 loc) · 1.3 KB
/
theme.config.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
import { ThemeConfig } from "types/ThemeConfig";
import { darkTheme, lightTheme } from "theme/default";
import merge from "lodash.merge";
export const theme: ThemeConfig = merge(lightTheme, {
styles: {
fonts: {
heading: "Londrina Solid",
nouns: "Londrina Solid",
body: "Londrina Solid"
},
colors: {
muted: `255, 255, 255`, // white background
backdrop: `255, 255, 255`, // white background
fill: `255, 255, 255`, // black text
stroke: `251, 177, 70`, // orange stroke
"text-base": `0 , 0 , 0 `,
"text-muted": `0 , 0 , 0 `,
"text-inverted": `0 , 0 , 0 `,
"text-highlighted": `251, 177, 70`,
"text-pink": `216, 17, 89`,
"button-accent": `251, 177, 60`,
"button-accent-hover": `250, 198, 116`,
"button-muted": `143, 45, 86`,
"proposal-success": `141, 224, 58`,
"proposal-danger": `240, 50, 50`,
"proposal-muted": `216, 17, 89`,
"proposal-highlighted": `251, 177, 70`,
}
},
nav: {
primary: [
{ label: "Gnars", href: "https://Gnars.com" },
{ label: "About", href: "/about" },
{ label: "Proposals", href: "/vote" },
],
secondary: [
],
},
brand: {
title: "Gnars",
logo: "https://gnarsdocs.vercel.app/img/favicon.ico",
},
} as Partial<ThemeConfig>);