-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
78 lines (76 loc) · 2.02 KB
/
tailwind.config.cjs
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/** @type {import('tailwindcss').Config} */
module.exports = {
// mode: "jit",
// mode: "jit",
// purge: [],
darkMode: "class",
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
screens: {
mobile: { raw: "(orientation: portrait)" },
desktop: { raw: "(orientation: landscape)" }, //min: "300px", max: "999px" },
},
fontFamily: {
// font-family: "Times New Roman", Times, serif;
robotoMono: ["Roboto Mono", "monospace"],
// robotoSarif: ["Roboto Mono", "monospace", "serif"],
},
extend: {
animation: {
showClick: "showClick 0.4s ease-in-out forwards",
},
keyframes: {
showClick: {
"0%": { width: "0px", opacity: 0 },
"25%": { width: "10%", opacity: 0.4 },
"50%": { width: "50%", opacity: 1 },
"100%": { width: "100%", opacity: 1 },
},
},
colors: {
costom: {
purpel: {
100: "#f2e9ff",
200: "#d9c2ff",
300: "#c096ff",
400: "#a46aff",
500: "#8742ff",
600: "#5918df", //(original color code)
700: "#420b73",
},
teal: {
100: "#e0f7f7",
200: "#b3efef",
300: "#86e7e7",
400: "#3fd4d4", //(original color code)
500: "#2ca8a6",
600: "#1d7471",
700: "#10423d",
800: "#051d1c",
},
},
primary: {
Dark: "#0e1212",
purpel: "#5918df",
teal: "#3fd4d4",
},
transparent: "transparent",
current: "currentColor",
white: "#ffffff",
orange: "#f29766",
yellow: "#f8cd08",
aridyellow: "#ead76c",
darkblue: "#031a27",
gray: "#4b5461",
lightgray: "#565c6a",
maroon: "#e15245",
darkmaroon: "#671c03",
},
},
},
plugins: [
// require("postcss-import"),
// require("tailwindcss"),
// require("autoprefixer"),
],
};