-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (33 loc) · 890 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (33 loc) · 890 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
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./components/*.vue', './layouts/*.vue', './pages/*.vue'],
theme: {
extend: {
fontFamily: {
sans: ['DM Sans', ...defaultTheme.fontFamily.sans],
mono: ['JetBrains Mono', ...defaultTheme.fontFamily.mono],
},
colors: {
artisan: '#BB2926',
'artisan-light': '#F26763',
'artisan-accent': '#d3403e',
gray: {
50: '#fcfcfc',
100: '#f5f5f5',
200: '#ededed',
300: '#e8e8e8',
400: '#c7c7c7',
500: '#8f8f8f',
600: '#6f6f6f',
700: '#4d4d4d',
800: '#2a2a2a',
900: '#1a1a1a',
950: '#171717',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
}