-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
44 lines (35 loc) · 872 Bytes
/
tailwind.config.ts
File metadata and controls
44 lines (35 loc) · 872 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
42
43
44
import type { Config } from "tailwindcss"
const config: Config = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
screens: {
"3xl": "1633px",
"1.5xl": "1333px",
"lt-2xl": { max: "1535px" },
"lt-xl": { max: "1279px" },
"lt-lg": { max: "1023px" },
"lt-md": { max: "767px" },
"lt-sm": { max: "639px" },
"xsm": "439px",
"lt-xsm": { max: "439px" },
"xxsm": "339px",
"lt-xxsm": { max: "339px" },
'coarse': { 'raw': '(pointer: coarse)' },
'fine': { 'raw': '(pointer: fine)' },
},
colors: {
"primary": "#60a5fa",
"secondary": "#1d4ed8",
"elevated": "#1C1C1E",
"elevated-2": "#262628",
"label": "#ddd",
"tertiary": "#555",
"quaternary": "#333",
"center-container-dark": "#121212",
},
},
},
plugins: [],
}
export default config