-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·72 lines (71 loc) · 1.71 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,ts}"],
/*darkMode: "media", //Based on the browser’s color scheme preference. (Set by Default)*/
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#9E1F63",
50: "#FAE5F0",
100: "#F4C8DF",
200: "#EA94C2",
300: "#DF5DA2",
400: "#D52A85",
600: "#801950",
700: "#5E123B",
800: "#400D28",
900: "#1E0613",
950: "#11030B",
},
secondary: "#FF10AA",
'fanatyx-bg': '#EFEAF4',
'fanatyx-bg-home': '#E6E7E8'
},
fontFamily: {
sans: ["Figtree, sans-serif", ...defaultTheme.fontFamily.sans],
},
screens: {
"sidebar-breakpoint": { max: "1159px" },
// => @media (max-width: 1159px) { ... }
tablet: { max: "768px" },
// => @media (max-width: 768px) { ... }
},
flex: {
"post-item": "1 0 0%",
"0-auto": "0 0 auto",
},
backgroundImage: {
"profile-default-banner":
"url('src/assets/angular.png')",
},
boxShadow: {
dialog: "0 0 45px rgba(0, 0, 0, 0.25)",
topBox: "0 -4px 10px 0 rgba(0,0,0,0.17);",
},
scale: {
'-1': '-1'
},
},
typography: (theme) => ({
DEFAULT: {
css: {
color: theme("#252525"),
},
},
}),
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
lg: "4rem",
xl: "5rem",
"2xl": "6rem",
},
},
},
plugins: [],
};