-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
43 lines (40 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
primary: "#691f74",
primaryDark: "#44195d",
primaryLight: "#f0e9f1",
black: "#17171d",
darkNavy: "#002745",
grayColor: "#606065",
lightGray: "#B9B9BB",
secondary: "#e34b32",
secondaryLight: "#fff0eb",
},
},
screens: {
sm: "640px",
md: "768px",
md_lg: "960px",
lg: "1024px",
xl: "1280px",
},
},
plugins: [require("@tailwindcss/forms")],
};
/*
--pxpHoverTransition: 300ms cubic-bezier(0.215,0.61,0.355,1);
--pxpHoverOpacity: 0.6;
--pxpTextColor: #17171D;
--pxpMainColor: #0969C3;
--pxpMainColorTransparent: rgba(9,105,195,0.05);
--pxpMainColorDark: #002745;
--pxpMainColorLight: #e6f0f9;
--pxpSecondaryColor: #fff0d9;
--pxpSecondaryColorLight: #FFF8EC;
--pxpLightGrayColor: #dedede;
--pxpDarkGrayColor: #999;
*/