-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
27 lines (27 loc) · 740 Bytes
/
tailwind.config.js
File metadata and controls
27 lines (27 loc) · 740 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
sans: ['Source Sans Pro', 'sans-serif'],
},
extend: {
colors: {
'qc-header': '#124766',
'qc-header-second': '#1A6591',
'qc-background': '#7297ac',
'qc-link': '#2ba6cb',
'qc-link-hover': '#258faf',
'qc-non-canon': '#bb3629',
'qc-non-canon-second': '#ee4433',
},
transitionProperty: {
filter: 'filter',
},
},
},
plugins: [],
corePlugins: {
preflight: false,
},
}