-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (46 loc) · 1.28 KB
/
tailwind.config.js
File metadata and controls
48 lines (46 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'proxima': ['Proxima Nova', 'sans-serif'],
'sans': ['Proxima Nova', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
},
fontWeight: {
'thin': '100',
'regular': '400',
'bold': '700',
'black': '900',
},
colors: {
brand: {
// Primary Reds
"rich-red": '#E22A30',
"mid-red": "#f3706d",
"light-red": "#fda091",
"pale-red": "#f8bdbd",
'deep-red': '#91120D',
'dark-brown': '#381611',
// Neutrals
black: '#0F0004',
'dark-grey': '#333333',
'mid-grey': '#716D6E',
'warm-grey': '#DCDAD2',
'cool-grey': '#E5E5E5',
'warm-white': '#FEFAF4',
white: '#FFFFFF',
// Accent Colours (Use sparingly)
blue: '#0096C3', // Kids program
orange: '#F25101', // Fusion program
purple: '#870394', // Youth program
gold: '#EEB753', // Gold accent
},
},
},
},
plugins: [],
}