-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (50 loc) · 1.26 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
import tailwindClipPath from "tailwind-clip-path";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/primereact/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "selector",
theme: {
clipPath: {
full: "polygon(0% 100 %, 0% 0 %, 100% 0 %, 100% 100 %)",
left: "polygon(0% 100%, 0% 0%, 100% 0%, 80% 100%)",
right: "polygon(20% 0, 100% 0, 100% 100%, 0% 100%)",
},
extend: {
fontFamily: {
title: "Sansation",
page: "Roboto",
},
gridTemplateColumns: {
14: "repeat(14, minmax(0, 1fr))",
15: "repeat(15, minmax(0, 1fr))",
16: "repeat(16, minmax(0, 1fr))",
},
height: {
screen: "100dvh",
},
boxShadow: {
von: "#1b1c1d 0 0 5px",
"von-inset": "inset #1b1c1d 0 0 5px",
"von-inverted": "#dedede 0 0 5px",
},
colors: {
von: {
darkGray: "#1b1c1d",
lightGray: "#dedede",
teal: "#16b2ab",
},
},
},
},
corePlugins: {
preflight: false,
},
plugins: [tailwindClipPath],
};