forked from tech-by-design/tech-by-design.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
43 lines (43 loc) · 1.04 KB
/
tailwind.config.cjs
File metadata and controls
43 lines (43 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
fontFamily:{
'sans': ['Indivisible'],
'serif': ['Indivisible'],
'mono': ['ui-monospace'],
'display': ['Indivisible'],
},
extend: {
colors: {
"orange": {
DEFAULT: '#FE6D18',
100 : '#FFEBB4',
500 : '#FFC122',
800 : '#FF8C18',
900 : '#FE6D18',
},
"spruce": {
DEFAULT: '#03464C',
50 : '#E0F1EF',
100 : '#B7E6E4',
200 : '#72CCC6',
900 : '#03464C',
},
"neutral": {
DEFAULT: '#FDFDFB', //white
200 : '#F7F7F5', //light gray
300 : '#D4D5D5', // sandstone
400 : '#505455', //charcoal
500 : '#231F20' //black
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}