Files
lucia-frontend/tailwind.config.js
2023-02-09 17:23:46 +08:00

52 lines
1.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,vue}",
"./src/**/**/*.{js,ts,jsx,tsx,vue}"],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
'primary': '#0099FF',
// 'secondary': '',
'neutral': {
10: '#ffffff',
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a'
},
'danger': '#FF3366',
},
container: {
center: true,
padding: '16px',
},
fontSize: {
xs: ['12px', 1],
sm: ['14px', 1],
base: ['16px', 1],
lg: ['18px', 1],
xl: ['20px', 1],
'2xl': ['24px', 1],
'3xl': ['30px', 1],
'4xl': ['36px', 1],
},
screens: {
// 'sm': '640px',
// 'md': '768px',
// 'lg': '1024px',
// 'xl': '1280px',
'2xl': '1536px',
}
},
};