-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (69 loc) · 2.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
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
import defaultTheme from "tailwindcss/defaultTheme";
import forms from "@tailwindcss/forms";
import containerQueries from "@tailwindcss/container-queries";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/js/**/*.vue",
],
safelist: [
{
pattern: /text-(4xl|3xl|2xl|xl|lg|md|sm|xs|2xs)/,
},
],
theme: {
fontSize: {
DEFAULT: "15px",
"2xs": "10px",
xs: "12px",
sm: "13px",
md: "15px",
lg: "16px",
xl: "18px",
"2xl": "20px",
"3xl": "24px",
"4xl": "28px",
},
extend: {
fontFamily: {
sans: ["hk-grotesk", ...defaultTheme.fontFamily.sans],
title: ["kanit", ...defaultTheme.fontFamily.sans],
},
textColor: {
DEFAULT: "#FFFFFF",
},
colors: {
gray: {
900: "#060606",
800: "#121212",
700: "#1A1A1A",
600: "#1D1D1D",
500: "#3B3B3B",
400: "#414141",
200: "#B4B4B4",
},
primary: {
lowlight: "#0C1F63",
DEFAULT: "#1544EF",
highlight: "#0075FF",
},
alternate: {
DEFAULT: "#FFFFFF",
},
secondary: {
DEFAULT: "#A6B9FF",
},
error: {
DEFAULT: "#D95454",
},
},
ringColor: ({ theme }) => ({
DEFAULT: theme("colors.alternate.DEFAULT"),
}),
},
},
plugins: [forms, containerQueries],
};