-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 1.13 KB
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (38 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'dark-blue': '#00305C',
'dark-blue-2': '#003E75',
'light-blue': '#0093C7',
'light-blue-2': '#009DE0',
'def-grey': '#58595B',
primary: {
DEFAULT: 'var(--primary-color, #00305C)',
light: 'var(--primary-color-light, #4d80b3)',
dark: 'var(--primary-color-dark, #002040)',
},
secondary: {
DEFAULT: 'var(--secondary-color, #0093C7)',
light: 'var(--secondary-color-light, #99c2ff)',
dark: 'var(--secondary-color-dark, #3385ff)',
},
accent: {
DEFAULT: 'var(--accent-color, #009DE0)',
light: 'var(--accent-color-light, #ffb84d)',
dark: 'var(--accent-color-dark, #cc7a00)',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['Roboto Mono', 'monospace'],
},
},
},
plugins: [],
}