-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
42 lines (42 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
//https://daisyui.com/docs/colors/
export default {
content: ['./src/**/*.{html,js,jsx,ts,tsx}'],
theme: {
extend: {
fontFamily: {
nunito: ['"Nunito"', 'sans-serif'],
},
},
},
daisyui: {
themes: [
{
mytheme: {
primary: '#4361ee',
//"primary-content": "#ffffff",
secondary: '#EFF4FF',
//"secondary-content": "#E0E6ED",
accent: '#888EA8',
//"accent-content": "#888EA8",
neutral: '#3b3f5c',
//"neutral-content": "#3b3f5c",
'base-100': '#fafafa', // Когда поле вводиться //#ffffff
'base-200': '#ffffff',
'base-300': '#E0E6ED',
//"base-300": "#fafafa",
//"base-content": "#fafafa",
info: '#2196f3',
'info-content': '#2196f3',
success: '#00ab55',
'success-content': '#ffffff',
warning: '#e2a03f',
'warning-content': '#ffffff',
error: '#e7515a',
'error-content': '#ffffff',
},
},
],
},
plugins: [require('daisyui'), require('@kobalte/tailwindcss')],
};