Initial commit with 2026 World Cup Quant Platform core modules and CI/CD
This commit is contained in:
31
platform/web/tailwind.config.ts
Normal file
31
platform/web/tailwind.config.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
const config: Config = {
|
||||
content: [
|
||||
'./app/**/*.{js,ts,jsx,tsx}',
|
||||
'./components/**/*.{js,ts,jsx,tsx}',
|
||||
'./hooks/**/*.{js,ts,jsx,tsx}',
|
||||
'./lib/**/*.{js,ts,jsx,tsx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
warm: {
|
||||
base: '#f6f0e1',
|
||||
panel: '#fff8e6',
|
||||
accent: '#d1432d',
|
||||
'accent-strong': '#b83822',
|
||||
muted: '#7a5b46',
|
||||
danger: '#8c2f2f',
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['var(--font-body)', 'Noto Sans TC', 'PingFang TC', 'Heiti TC', 'sans-serif'],
|
||||
mono: ['var(--font-matrix)', 'VT323', 'monospace'],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user