-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
45 lines (42 loc) · 1.37 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/js/**/*.vue",
],
theme: {
extend: {
keyframes: {
wiggle: {
"0%": {
transform: "translateY(20px)",
},
"100%": {
transform: "translateY(0px)",
},
},
},
animation: {
wiggle: "wiggle ease-in-out ",
},
fontFamily: {
sans: ["Nunito", ...defaultTheme.fontFamily.sans],
},
colors: {
"primary-bg": "#101010",
"primary-bg-hover": "#18181c",
"secondary-bg": "rgba(255,255,255,0.05)",
"author-bg": "#161616",
"nav-bg": "#1c1c1c",
"secondary-bg-hover": "rgba(255,255,255,0.08)",
"brand-clr": "#ffca00",
"brand-clr-hover": "#ffd740",
"primary-clr": "#ffffff",
"secondary-clr": "#818181",
},
},
},
plugins: [require("@tailwindcss/forms")],
};