-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (30 loc) · 734 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
31 lines (30 loc) · 734 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'class',
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
screens: {
xxs: '321px',
xs: '475px',
...defaultTheme.screens,
},
extend: {
colors: {
background: 'hsl(231, 16%, 92%)',
primary: 'hsl(231, 16%, 25%)',
'background-dark': 'hsl(231, 16%, 25%)',
'primary-dark': 'hsl(231, 16%, 92%)',
'n-green': 'hsl(110, 33%, 50%)',
'n-gray': 'hsl(231, 16%, 45%)',
},
},
neumorphismSize: {
xs: '0.05em',
sm: '0.1em',
default: '0.2em',
lg: '0.4em',
xl: '0.8em',
},
},
plugins: [require('tailwindcss-neumorphism')],
}