Initial commit: React frontend (SLP Software) + AIDLC workflow docs
Co-authored-by: Junie <junie@jetbrains.com>
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
export default {
|
||||
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
bg: 'var(--color-bg)',
|
||||
surface: 'var(--color-surface)',
|
||||
'surface-2': 'var(--color-surface-2)',
|
||||
line: 'var(--color-line)',
|
||||
text: 'var(--color-text)',
|
||||
muted: 'var(--color-muted)',
|
||||
accent: 'var(--color-accent)',
|
||||
'accent-soft': 'var(--color-accent-soft)',
|
||||
'accent-line': 'var(--color-accent-line)',
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['Instrument Sans', 'system-ui', 'sans-serif'],
|
||||
display: ['Sora', 'sans-serif'],
|
||||
mono: ['JetBrains Mono', 'monospace'],
|
||||
},
|
||||
borderRadius: {
|
||||
DEFAULT: '14px',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
} satisfies Config;
|
||||
Reference in New Issue
Block a user