-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.cjs
51 lines (51 loc) · 1.25 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
daisyui: {
themes: [
{
coollabs: {
primary: "#181818",
"primary-focus": "#242424",
secondary: "#4338ca",
accent: "#4338ca",
neutral: "#1B1D1D",
"base-100": "#101010",
info: "#2563EB",
success: "#16A34A",
warning: "#FCD34D",
error: "#DC2626",
},
},
],
},
theme: {
extend: {
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' }
}
},
animation: {
bounce: 'bounce 2s infinite;'
},
colors: {
coollabs: '#6B16ED',
'coollabs-100': '#7317FF',
coolblack: '#181818',
'coolgray-100': '#181818',
'coolgray-200': '#202020',
'coolgray-300': '#242424',
'coolgray-400': '#282828',
'coolgray-500': '#323232'
}
}
},
variants: {
scrollbar: ['dark'],
extend: {}
},
plugins: [require("daisyui")]
}