-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
56 lines (46 loc) · 1.33 KB
/
tailwind.config.mjs
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
import daisyui from 'daisyui';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [typography, daisyui],
daisyui: {
themes: [
{
'dark-pastel': {
primary: '#ffffff',
'primary-focus': '#ebe5ff',
'primary-content': '#111113',
secondary: '#d1ffea',
'secondary-focus': '#a8ffe5',
'secondary-content': '#111113',
accent: '#d9d6ff',
'accent-focus': '#c4bdff',
'accent-content': '#111113',
neutral: '#1c1d21',
'neutral-focus': '#16181d',
'neutral-content': '#ffffff',
'base-100': '#1a1a1f',
'base-200': '#151619',
'base-300': '#111113',
'base-content': '#ebecf0',
info: '#b1e1f5',
success: '#4cb8ad',
warning: '#fdba6d',
error: '#ee6363',
'--rounded-box': '4px',
'--rounded-btn': '2px',
'--rounded-badge': '1.9rem',
'--animation-btn': '.1s',
'--animation-input': '.1s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '4px',
'--border-btn': '1px',
},
},
],
},
};