About-me / app /globals.css
aguitauwu
pos nomas
b2a9185
@import 'tailwindcss';
@import 'tw-animate-css';
@custom-variant dark (&:is(.dark *));
/* GitHub Dark Theme */
:root {
--background: #0d1117;
--foreground: #e6edf3;
--card: #161b22;
--card-foreground: #e6edf3;
--popover: #161b22;
--popover-foreground: #e6edf3;
--primary: #238636;
--primary-foreground: #ffffff;
--secondary: #21262d;
--secondary-foreground: #c9d1d9;
--muted: #161b22;
--muted-foreground: #8b949e;
--accent: #388bfd;
--accent-foreground: #ffffff;
--destructive: #f85149;
--destructive-foreground: #ffffff;
--border: #30363d;
--input: #21262d;
--ring: #388bfd;
--radius: 6px;
}
.dark {
--background: #0d1117;
--foreground: #e6edf3;
--card: #161b22;
--card-foreground: #e6edf3;
--popover: #161b22;
--popover-foreground: #e6edf3;
--primary: #238636;
--primary-foreground: #ffffff;
--secondary: #21262d;
--secondary-foreground: #c9d1d9;
--muted: #161b22;
--muted-foreground: #8b949e;
--accent: #388bfd;
--accent-foreground: #ffffff;
--destructive: #f85149;
--destructive-foreground: #ffffff;
--border: #30363d;
--input: #21262d;
--ring: #388bfd;
}
@theme inline {
--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
--font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-popover: var(--popover);
--color-popover-foreground: var(--popover-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-destructive-foreground: var(--destructive-foreground);
--color-border: var(--border);
--color-input: var(--input);
--color-ring: var(--ring);
--radius-sm: calc(var(--radius) - 2px);
--radius-md: var(--radius);
--radius-lg: calc(var(--radius) + 2px);
}
@layer base {
* {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
}
}