-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (35 loc) · 1023 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (35 loc) · 1023 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
28
29
30
31
32
33
34
35
36
37
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./src/**/*.{js,jsx,ts,tsx,html}'],
theme: {
fontFamily: {
sans: ['ui-sans-serif', 'system-ui'],
'space-mono': ['Space Mono', 'ui-sans-serif', 'system-ui'],
roboto: ['Roboto', 'ui-sans-serif', 'system-ui'],
},
extend: {
colors: {
'charcoal-100': '#bfbfbf',
'charcoal-200': '#727272',
'charcoal-300': '#3a3a3a',
'charcoal-400': '#2e3135',
'charcoal-500': '#1f1f1f',
'charcoal-600': '#191919',
'charcoal-700': '#171717',
'charcoal-800': '#111113',
'light-yellow': '#ffc53d',
'light-orange': '#ff8a30 ',
'light-blue': '#70b8ff',
'light-green': '#3ddb8f',
'light-purple': '#c96cff',
'dark-yellow': '#362b00',
'dark-orange': '#331e10',
'dark-blue': '#0d2849',
'dark-green': '#132d23',
'dark-purple': '#2b132d',
},
},
},
plugins: [],
};