mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-23 00:41:13 +00:00
New Bun-based React Router 7 app with Tailwind CSS, branded with Arc logo/colors. Features an app shell with nav routing (/start, /pipelines, /settings) and a Trello-style pipeline board with Working, Pending, Verify, and Merge columns showing PR cards with CI status, comments, resources, and action buttons. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
677 B
CSS
27 lines
677 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
--font-mono: "JetBrains Mono", ui-monospace, monospace;
|
|
|
|
/* Primary — Teal */
|
|
--color-teal-300: #B5DDEF;
|
|
--color-teal-500: #67B2D7;
|
|
--color-teal-700: #357F9E;
|
|
|
|
/* Neutrals Dark — Navy */
|
|
--color-navy-950: #0F1729;
|
|
--color-navy-800: #252C3D;
|
|
--color-navy-600: #4B5768;
|
|
|
|
/* Neutrals Light — Ice */
|
|
--color-ice-50: #F7F9FB;
|
|
--color-ice-100: #E8EDF3;
|
|
--color-ice-300: #A8B5C5;
|
|
|
|
/* Accent */
|
|
--color-mint: #5AC8A8;
|
|
--color-amber: #F0A45B;
|
|
--color-coral: #E86B6B;
|
|
}
|