Files
Ant-Browser/frontend/tailwind.config.js
Ant Browser Release Bot 6f58a6c19a publish: 1.0.0 snapshot (bad2ec1)
channel: master
version: 1.0.0
source-ref: master
published-at-utc: 2026-03-13T15:19:28Z
2026-03-13 23:19:29 +08:00

47 lines
1.0 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#fdf8f3',
100: '#f9ede0',
200: '#f3dbc2',
300: '#e9c49d',
400: '#dda876',
500: '#c9915c',
600: '#b87d4a',
700: '#9a6840',
800: '#7d5538',
900: '#664630',
},
accent: {
yellow: '#f5d547',
orange: '#f5a962',
},
background: {
DEFAULT: '#e5e7eb',
card: '#ffffff',
},
},
fontFamily: {
sans: ['-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', '"Helvetica Neue"', 'Arial', 'sans-serif'],
},
borderRadius: {
'DEFAULT': '0.5rem',
'lg': '0.75rem',
'xl': '1rem',
},
boxShadow: {
'card': '0 2px 8px rgba(0, 0, 0, 0.08)',
'card-hover': '0 4px 16px rgba(0, 0, 0, 0.12)',
},
},
},
plugins: [],
}