-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (26 loc) · 780 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
30 lines (26 loc) · 780 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
/** @type {import('tailwindcss').Config} */
// npx tailwindcss -i ./src/input.css -o ./src/index.css --watch
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {
screens: {
'max-sm': {'max': '640px'},
'max-md': {'max': '768px'},
'max-lg': {'max': '1023px'},
'o-md': {'min': '0px', 'max': '767px'},
'lg-sm': {'min': '640px', 'max': '1023px'},
'md-lg': {'min': '768px', 'max': '1023px'},
'lg-xl': {'min': '1024px', 'max': '1279px'},
},
colors: {
'accent': "#FF4D30",
'white': "#ffff",
'background': "#F8F8F8",
'darkish': '#706f7b',
'inactiveBtn': "#E9E9E9"
// 'darkish': '#F8F8F8'
},
},
plugins: [],
}}