-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
38 lines (38 loc) · 1.11 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const srcDir = ".";
export default <Partial<Config>>{
darkMode: "class",
theme: {
colors: {
white: "#FFFFFF",
black: "#181818",
},
screens: {
"mob-lg": { min: "400px" },
"tab-pt": { min: "600px" },
"tab-ls": { min: "900px" },
"pc-sm": { min: "1200px" },
"mob-sm-only": { max: "399px" },
"mob-lg-only": { min: "400px", max: "599px" },
"tab-pt-only": { min: "600px", max: "899px" },
"tab-ls-only": { min: "900px", max: "1199px" },
"pc-sm-only": { min: "1200px", max: "1799px" },
"pc-lg": { min: "1800px" },
short: { raw: "(max-height: 649px)" },
tall: { raw: "(min-height: 650px)" },
},
},
plugins: [],
content: [
`${srcDir}/components/**/*.{vue,js,ts}`,
`${srcDir}/layouts/**/*.vue`,
`${srcDir}/pages/**/*.vue`,
`${srcDir}/composables/**/*.{js,ts}`,
`${srcDir}/plugins/**/*.{js,ts}`,
`${srcDir}/utils/**/*.{js,ts}`,
`${srcDir}/App.{js,ts,vue}`,
`${srcDir}/app.{js,ts,vue}`,
`${srcDir}/Error.{js,ts,vue}`,
`${srcDir}/error.{js,ts,vue}`,
],
};