forked from oscafrica/osf-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·82 lines (81 loc) · 1.92 KB
/
tailwind.config.js
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// See https://tailwindcss.com/docs/configuration for details
module.exports = {
content: [
"./src/pages/**/*.{html,js}",
"./src/components/**/*.{html,js}",
"./src/**/*.html",
"./src/**/*.js",
"./src/**/*.tsx"
],
theme: {
fontFamily: {
display: ["source sans", "avenir", "gotham", "ubuntu", "anisette-std", "work-sans", "clash-display"],
body: ["source sans", "avenir", "gotham", "ubuntu", "anisette-std", "work-sans", "clash-display"],
avenir: ["avenir"],
ubuntu: ["ubuntu"],
anisette: ["anisette"],
workSans: ["work-sans"],
clashDisplay: ["clash-display"]
},
prefix: "oc-",
extend: {
spacing: {
"oc-10": "10px"
},
colors: {
white: "#FFFFFF",
"dark-blue": {
primary: "#081E31",
100: "#96ADDD",
200: "#5A75AB",
300: "#445984",
400: "#283756",
500: "#283756",
600: "#283757"
},
"army-green": {
primary: "#1B352D"
},
orange: {
primary: "#F79313",
100: "#FFE0BC",
200: "#F5C388",
300: "#F9AA4F",
400: "#F7931E"
},
gray: {
primary: "464B54",
100: "#F0F0F0",
200: "#D6D6D6"
},
"light-green": {
primary: "#F1F2D3",
100: "#FCFDED",
200: "#D7D9B4"
},
"dark-green": "#B2B396",
"trans-gray": "rgba(10, 34, 55, 0.5)",
"circle-gray": "#E7ECF8",
brown: "#440101",
"white-smoke": "#F4F4F4"
},
fontSize: {
h1: "2.25rem",
h2: "2rem",
h3: "1.75rem",
h4: "1.5rem",
h5: "1.25rem",
h6: "1rem",
spo: "1.75rem",
sec: "3.75rem",
sship1: "4.95rem",
sship2: "8.12rem"
},
lineHeight: {
text: "22px"
}
}
},
variants: {},
plugins: []
};