-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 1.33 KB
/
tailwind.config.js
File metadata and controls
50 lines (50 loc) · 1.33 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
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,css}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: '"Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
},
colors: {
'nord-neutral': {
DEFAULT: '#494E59',
dark: '#EFF1F5',
},
'nord-neutral-deep': {
DEFAULT: '#2E3440',
dark: '#ECEFF4',
},
'nord-dim': {
DEFAULT: '#ABAEB3',
dark: '#F7F9FB',
},
'nord-solid': {
DEFAULT: '#636C7D',
dark: '#D8DEE9',
},
'nord-primary': '#5E81AC',
'nord-secondary': '#CFDBE7',
'nord-secondary-deep': '#81A1C1',
'nord-secondary-dim': '#F0F4F8',
'nord-outline': {
DEFAULT: '#D8DEE9',
dark: '#434C5E',
},
'nord-background': {
DEFAULT: '#ECEFF4',
dark: '#2E3440',
},
'nord-foreground': {
DEFAULT: '#FFFFFF',
dark: '#252932',
},
},
},
},
future: {
hoverOnlyWhenSupported: true,
},
plugins: [require('tailwind-nord')],
}