-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (35 loc) · 834 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (35 loc) · 834 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
35
36
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
important: true,
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
colors: {
brand: '#315343',
accent: '#cce1d7',
second: '#757575',
warning: '#ff49db',
danger: '#ff7849',
grey: '#696969',
white: '#ffffff',
},
screens: {
xs: '430px',
s: '500px',
sm: '576px',
// => @media (min-width: 640px) { ... }
md: '768px',
// => @media (min-width: 768px) { ... }
lg: '992px',
// => @media (min-width: 1024px) { ... }
xl: '1200px',
// => @media (min-width: 1280px) { ... }
xxl: '1400px',
// => @media (min-width: 1536px) { ... }
},
},
plugins: [],
};