-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
84 lines (83 loc) · 2.09 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
74
75
76
77
78
79
80
81
82
83
84
import { nextui } from "@nextui-org/react";
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
xs: "470px",
...defaultTheme.screens,
},
extend: {
colors: {
reactjs: "#61dbfb",
nextjs: "#000000",
aws: "#ff9900",
python: "#306998",
typescript: "#007acc",
javascript: "#f7df1e",
css: "#1572b6",
supabase: "#3ecf8e",
nodejs: "#417e38",
docker: "#1d63ed",
firebase: "#ffca28",
java: "#ed2025",
c: "#5d6cbf",
css: "#214ce5",
html: "#e44d26",
},
background: {
striped:
"linear-gradient(45deg, #f3f3f3 25%, transparent 25%, transparent 75%, #f3f3f3 75%, #f3f3f3), linear-gradient(45deg, #f3f3f3 25%, transparent 25%, transparent 75%, #f3f3f3 75%, #f3f3f3)",
},
backgroundImage: {
rainy: "url('../public/rain_background.jpg')",
"insta-gradient":
"radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)",
},
animation: {
thunderstrike: "thunderstrike 7s ease-out 2s infinite",
"skeleton-loader": "pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
keyframes: {
thunderstrike: {
"0%": {
opacity: 0,
},
"92%": {
opacity: 0,
},
"93%": {
opacity: 0.6,
},
"94%": {
opacity: 0.2,
},
"96%": {
opacity: 1,
},
"100%": {
opacity: 0,
},
},
},
},
},
darkMode: "class",
plugins: [
nextui({
themes: {
dark: {
colors: {
content1: "#18181b99",
},
},
},
}),
],
};