-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy paththeme.css.ts
More file actions
64 lines (60 loc) · 1.88 KB
/
theme.css.ts
File metadata and controls
64 lines (60 loc) · 1.88 KB
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
import { createTheme } from "@vanilla-extract/css"
import { darken, rgba } from "polished"
import { rootFontSize } from "src/style/constants"
import { themeContract } from "src/style/theme-contract.css"
export const themeClass = createTheme(themeContract, {
fontSizes: {
root: rootFontSize,
},
colors: {
// primary: "#A25B5B",
// primaryDark: darken(0.1, "#A25B5B"),
// primaryContrast: "#F8ECD1",
// primaryText: "white",
// secondary: "#C0D8C0",
// secondaryDark: darken(0.1, "#C0D8C0"),
// secondaryContrast: darken(0.65, "#C0D8C0"),
// secondaryText: rgba("black", 0.95),
// body: "white",
// bodyDark: darken(0.1, "white"),
// text: rgba("black", 0.95),
// link: "#85586F",
// focus: "#85586F",
// headings: rgba("black", 0.95),
// borders: "darkgray",
primary: "#405372",
primaryDark: darken(0.1, "#405372"),
primaryContrast: "white",
primaryText: "white",
secondary: "#f7eeed",
secondaryDark: darken(0.1, "#f7eeed"),
secondaryContrast: "#9f4c43",
secondaryText: rgba("black", 0.95),
body: "white",
bodyDark: darken(0.1, "white"),
text: rgba("black", 0.95),
link: "#405372",
focus: "#85586F",
headings: "#9f4c43",
borders: "darkgray",
},
fonts: {
header: `"Quattrocento Sans", "Segoe UI", "Arial", "sans-serif"`,
body: `"Charis SIL", Digohweli, serif, Arial`,
cherokee: `Digohweli, "Charis SIL", "serif", "Arial"`,
smallCaps: "Charis SIL",
},
})
export const wordpressUrl = "https://wp.dailp.northeastern.edu"
export const devUrl = "https://dev.dailp.northeastern.edu"
export const prodUrl = "https://dailp.northeastern.edu"
// theme.fonts.body = theme.fonts.bodyArr.join(",")
// theme.fonts.header = theme.fonts.headerArr.join(",")
// const iconButton = css`
// border: none;
// margin: 0;
// padding: 8px;
// & > svg {
// display: block;
// }
// `