-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
83 lines (82 loc) · 1.91 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
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
79
80
81
82
83
const defaultTheme = require("tailwindcss/defaultTheme");
const plugin = require("tailwindcss/plugin");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"src/**/*.{js,ts,jsx,tsx}",
"src/shared/react-components/**/*.{js,ts,jsx,tsx}",
"src/shared/ui/**/*.{js,ts,jsx,tsx}",
"node_modules/flowbite-react/lib/esm/theme.js",
],
darkMode: "class",
theme: {
fontFamily: {
averta: "Averta",
inter: "Inter",
},
extend: {
colors: {
pt: {
purple: {
50: "#F5F0FF",
100: "#DECEFF",
200: "#C8ADFF",
300: "#B18CFF",
400: "#9B6AFF",
500: "#8050E3",
600: "#6538C1",
700: "#4C249F",
800: "#36147D",
900: "#24095B",
DEFAULT: "#8050E3",
},
teal: {
light: "#35F0D0",
dark: "#0DC5A5",
DEFAULT: "#35F0D0",
},
pink: {
light: "#FA48E8",
dark: "#B623A7",
DEFAULT: "#FA48E8",
},
bg: {
purple: {
light: "#5D3A97",
dark: "#2D0C66",
darker: "#21064E",
DEFAULT: "#2D0C66",
},
},
warning: {
light: "#FFB6B6",
dark: "#8B0000",
DEFAULT: "#8B0000",
},
gold: "#FFB636",
transparent: "#F5F0FF1A",
},
},
},
screens: {
smSonner: "601px",
...defaultTheme.screens,
"3xl": "1900px",
"4xl": "2200px",
"5xl": "2500px",
},
},
plugins: [
plugin(({ addUtilities }) =>
addUtilities({
".no-scrollbar::-webkit-scrollbar": {
display: "none",
},
".no-scrollbar": {
"-ms-overflow-style": "none",
"scrollbar-width": "none",
},
})
),
],
};