-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (34 loc) · 1 KB
/
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
mode: 'jit',
content: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
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',
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
}