-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
40 lines (39 loc) · 935 Bytes
/
tailwind.config.js
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./layouts/**/*.html'],
theme: {
container: {
center: true,
padding: '3rem'
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
serif: [...defaultTheme.fontFamily.serif],
mono: [...defaultTheme.fontFamily.mono],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
'nord0': '#2E3440',
'nord1': '#3B4252',
'nord2': '#434C5E',
'nord3': '#4C566A',
'nord4': '#D8DEE9',
'nord5': '#E5E9F0',
'nord6': '#ECEFF4',
'nord7': '#8FBCBB',
'nord8': '#88C0D0',
'nord9': '#81A1C1',
'nord10': '#5E81AC',
'nord11': '#BF616A',
'nord12': '#D08770',
'nord13': '#EBCB8B',
'nord14': '#A3BE8C',
'nord15': '#B48EAD',
},
},
variants: {
extend: {}
},
plugins: [],
}