mirror of
https://github.com/supabase/supabase.git
synced 2026-05-09 00:10:05 +08:00
This PR migrates all tailwind configs in the apps to be CSS configs. They import a shared CSS Tailwind config from the `config` package (which in turns imports the old JS config). The shared JS config will be migrated to CSS in a followup PR. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Centralized Tailwind into a config-driven entrypoint and updated the app build flow to use the new build step; many apps now import unified global styles. * **Style** * Migrated global styles to a Tailwind v4-style setup, added project-wide content scanning, consolidated theme imports, standardized theme tokens (including new --container-site max-width), and added a small prose utility to remove paragraph margins. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Claude Sonnet 4.6 <[email protected]>
166 lines
4.9 KiB
CSS
166 lines
4.9 KiB
CSS
@import 'config/tailwind.config.css';
|
|
@import './../../../packages/ui/build/css/themes/classic-dark.css';
|
|
|
|
@source '../app/**/*.{js,ts,jsx,tsx}';
|
|
@source '../components/**/*.{js,ts,jsx,tsx}';
|
|
@source '../registry/**/*.{js,ts,jsx,tsx}';
|
|
@source '../content/**/*.mdx';
|
|
@source './../../../packages/ui/src/**/*.{tsx,ts,js}';
|
|
@source './../../../packages/ui-patterns/src/**/*.{tsx,ts,js}';
|
|
|
|
@theme {
|
|
/* added to get max-w-site */
|
|
--container-site: 128rem;
|
|
|
|
/* The following are needed to render the examples, since they use regular shadcn variables. Some classes are
|
|
* commented out classes because they clashed with Supabase defined classes
|
|
*/
|
|
--radius-lg: var(--radius);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
/* --color-background: hsl(var(--background)); */
|
|
--color-foreground: hsl(var(--foreground));
|
|
--color-card: hsl(var(--card));
|
|
--color-card-foreground: hsl(var(--card-foreground));
|
|
--color-popover: hsl(var(--popover));
|
|
--color-popover-foreground: hsl(var(--popover-foreground));
|
|
--color-primary: hsl(var(--primary));
|
|
--color-primary-foreground: hsl(var(--primary-foreground));
|
|
--color-secondary: hsl(var(--secondary));
|
|
--color-secondary-foreground: hsl(var(--secondary-foreground));
|
|
--color-muted: hsl(var(--muted));
|
|
--color-muted-foreground: hsl(var(--muted-foreground));
|
|
--color-accent: hsl(var(--accent));
|
|
--color-accent-foreground: hsl(var(--accent-foreground));
|
|
--color-destructive: hsl(var(--destructive));
|
|
--color-destructive-foreground: hsl(var(--destructive-foreground));
|
|
/* --color-border: hsl(var(--border)); */
|
|
--color-input: hsl(var(--input));
|
|
--color-ring: hsl(var(--ring));
|
|
--color-chart-1: hsl(var(--chart-1));
|
|
--color-chart-2: hsl(var(--chart-2));
|
|
--color-chart-3: hsl(var(--chart-3));
|
|
--color-chart-4: hsl(var(--chart-4));
|
|
--color-chart-5: hsl(var(--chart-5));
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 100%;
|
|
--foreground: 0 0% 14.5%;
|
|
--card: 0 0% 100%;
|
|
--card-foreground: 0 0% 14.5%;
|
|
--popover: 0 0% 100%;
|
|
--popover-foreground: 0 0% 14.5%;
|
|
--primary: 0 0% 20.5%;
|
|
--primary-foreground: 0 0% 98.5%;
|
|
--secondary: 0 0% 97%;
|
|
--secondary-foreground: 0 0% 20.5%;
|
|
--muted: 0 0% 97%;
|
|
--muted-foreground: 0 0% 55.6%;
|
|
--accent: 0 0% 97%;
|
|
--accent-foreground: 0 0% 20.5%;
|
|
--destructive: 27.3 24.5% 57.7%;
|
|
--destructive-foreground: 27.3 24.5% 57.7%;
|
|
--border: 0 0% 92.2%;
|
|
--input: 0 0% 92.2%;
|
|
--ring: 0 0% 70.8%;
|
|
--chart-1: 41.1 22.2% 64.6%;
|
|
--chart-2: 184.7 11.8% 60%;
|
|
--chart-3: 227.4 7% 39.8%;
|
|
--chart-4: 84.4 18.9% 82.8%;
|
|
--chart-5: 70.1 18.8% 76.9%;
|
|
--radius: 0.625rem;
|
|
--sidebar: 0 0% 98.5%;
|
|
--sidebar-foreground: 0 0% 14.5%;
|
|
--sidebar-primary: 0 0% 20.5%;
|
|
--sidebar-primary-foreground: 0 0% 98.5%;
|
|
--sidebar-accent: 0 0% 97%;
|
|
--sidebar-accent-foreground: 0 0% 20.5%;
|
|
--sidebar-border: 0 0% 92.2%;
|
|
--sidebar-ring: 0 0% 70.8%;
|
|
}
|
|
|
|
[data-theme='dark'],
|
|
[data-theme='classic-dark'] {
|
|
--background: 0 0% 14.5%;
|
|
--foreground: 0 0% 98.5%;
|
|
--card: 0 0% 0%;
|
|
--card-foreground: 0 0% 98.5%;
|
|
--popover: 0 0% 14.5%;
|
|
--popover-foreground: 0 0% 98.5%;
|
|
--primary: 0 0% 98.5%;
|
|
--primary-foreground: 0 0% 20.5%;
|
|
--secondary: 0 0% 26.9%;
|
|
--secondary-foreground: 0 0% 98.5%;
|
|
--muted: 0 0% 26.9%;
|
|
--muted-foreground: 0 0% 70.8%;
|
|
--accent: 0 0% 26.9%;
|
|
--accent-foreground: 0 0% 98.5%;
|
|
--destructive: 25.7 14.1% 39.6%;
|
|
--destructive-foreground: 25.3 23.7% 63.7%;
|
|
--border: 0 0% 26.9%;
|
|
--input: 0 0% 26.9%;
|
|
--ring: 0 0% 55.6%;
|
|
--chart-1: 264.4 24.3% 48.8%;
|
|
--chart-2: 162.5 17% 69.6%;
|
|
--chart-3: 70.1 18.8% 76.9%;
|
|
--chart-4: 303.9 26.5% 62.7%;
|
|
--chart-5: 16.4 24.6% 64.5%;
|
|
--sidebar: 0 0% 20.5%;
|
|
--sidebar-foreground: 0 0% 98.5%;
|
|
--sidebar-primary: 264.4 24.3% 48.8%;
|
|
--sidebar-primary-foreground: 0 0% 98.5%;
|
|
--sidebar-accent: 0 0% 26.9%;
|
|
--sidebar-accent-foreground: 0 0% 98.5%;
|
|
--sidebar-border: 0 0% 26.9%;
|
|
--sidebar-ring: 0 0% 43.9%;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
html {
|
|
@apply scroll-smooth;
|
|
}
|
|
body {
|
|
@apply bg-default text-foreground;
|
|
/* font-feature-settings: "rlig" 1, "calt" 1; */
|
|
font-synthesis-weight: none;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.step {
|
|
counter-increment: step;
|
|
}
|
|
|
|
.step:before {
|
|
@apply absolute w-9 h-9 bg-muted rounded-full font-mono font-medium text-center text-base inline-flex items-center justify-center -indent-px border-4 border-background;
|
|
@apply ml-[-50px] mt-[-4px];
|
|
content: counter(step);
|
|
}
|
|
|
|
.chunk-container {
|
|
@apply shadow-none;
|
|
}
|
|
|
|
.chunk-container::after {
|
|
content: '';
|
|
@apply absolute -inset-4 shadow-xl rounded-xl border;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.container {
|
|
@apply px-4;
|
|
}
|
|
}
|
|
|
|
.preview * {
|
|
@apply border-border outline-ring/50;
|
|
}
|