-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1 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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"vista-white": "#fbf8f3",
"violet-blue": "#4d13d1",
liver: "#4f4f4f",
"link-water": "#e6defd",
"light-grey": "#dadada",
"purple-mimosa": "#A587FF",
},
screens: {
desktop: "1920px",
"laptop-max": "1600px",
tablet: { max: "1024px" },
"mobile-max": { max: "600px" },
mobile: { max: "360px" },
},
fontSize: {
"3xl": "1.75rem",
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
".selector": {
"user-drag": "none",
"-webkit-user-drag": "none",
"user-select": "none",
"-moz-user-select": "none",
"-webkit-user-select": "none",
"-ms-user-select": "none",
},
});
}),
],
};