-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (43 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{astro,js,ts,vue}",
],
// darkMode: 'class',
theme: {
extend: {
colors: {
footergray: {
light: '#60739f',
DEFAULT: '#60739f',
dark: '#c5c9d4',
},
footerhovergray: {
light: '#222939',
DEFAULT: '#222939',
dark: '#f5f7fc',
},
},
listStyleType: {
circle: 'circle',
square: 'square',
roman: 'upper-roman',
},
screens: {
x3lmax: { max: "2550px" },
// => @media (max-width: 1535px) { ... }
x2lmax: { max: "1650px" },
// => @media (max-width: 1279px) { ... }
xlmax: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lgmax: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
mdmax: { max: "767px" },
// => @media (max-width: 767px) { ... }
smax: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
},
},
plugins: [],
}