- monorepo: pnpm workspace + go.work + pyproject.toml + commitlint/husky - infra: docker-compose (minimal + full profiles) + init-sql + prometheus - arch-scan: multi-language scanner skeleton (TS/Go/Python/Proto) - shared-proto: buf v2 + classes.proto (ClassService CRUD contract) - api-gateway: Go/Gin + JWT HS256 auth + reverse proxy + request ID - classes: NestJS golden template (error system + observability + middleware + CRUD + tests) - teacher-portal: Next.js + paper-feel UI design system - CI/CD: 4 workflows (go/ts/py/proto) - docs: migration guide + project_rules + coding-standards + git-workflow + ui-design-system + 004 + 9 module READMEs + known-issues + spec/plan migration + roadmap
27 lines
629 B
JavaScript
27 lines
629 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
paper: 'hsl(40, 20%, 98%)',
|
|
ink: {
|
|
DEFAULT: 'hsl(25, 3%, 15%)',
|
|
muted: 'hsl(30, 5%, 45%)',
|
|
},
|
|
accent: 'hsl(220, 60%, 35%)',
|
|
rule: 'hsl(30, 10%, 90%)',
|
|
},
|
|
fontFamily: {
|
|
serif: ['Fraunces', 'Georgia', 'serif'],
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
mono: ['JetBrains Mono', 'monospace'],
|
|
},
|
|
borderRadius: {
|
|
DEFAULT: '6px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|