mirror of
https://gitbruv.vercel.app/api/git/bruv/gitbruv.git
synced 2025-12-20 23:24:09 +01:00
173 lines
4.4 KiB
CSS
173 lines
4.4 KiB
CSS
@import "tailwindcss";
|
|
@import "tw-animate-css";
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
@font-face {
|
|
font-family: "Mona Sans";
|
|
src: url("https://github.githubassets.com/static/fonts/mona-sans/MonaSans.woff2") format("woff2");
|
|
font-weight: 200 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: "Mona Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
|
|
--font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
|
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-chart-5: var(--chart-5);
|
|
--color-chart-4: var(--chart-4);
|
|
--color-chart-3: var(--chart-3);
|
|
--color-chart-2: var(--chart-2);
|
|
--color-chart-1: var(--chart-1);
|
|
--color-ring: var(--ring);
|
|
--color-input: var(--input);
|
|
--color-border: var(--border);
|
|
--color-destructive: var(--destructive);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-card: var(--card);
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
--radius-2xl: calc(var(--radius) + 8px);
|
|
--radius-3xl: calc(var(--radius) + 12px);
|
|
--radius-4xl: calc(var(--radius) + 16px);
|
|
--color-success: var(--success);
|
|
--color-success-foreground: var(--success-foreground);
|
|
}
|
|
|
|
:root {
|
|
--radius: 0.5rem;
|
|
--background: #0d1117;
|
|
--foreground: #e6edf3;
|
|
--card: #161b22;
|
|
--card-foreground: #e6edf3;
|
|
--popover: #1c2128;
|
|
--popover-foreground: #e6edf3;
|
|
--primary: #238636;
|
|
--primary-foreground: #ffffff;
|
|
--secondary: #21262d;
|
|
--secondary-foreground: #c9d1d9;
|
|
--muted: #161b22;
|
|
--muted-foreground: #8b949e;
|
|
--accent: #58a6ff;
|
|
--accent-foreground: #ffffff;
|
|
--destructive: #f85149;
|
|
--border: #30363d;
|
|
--input: #21262d;
|
|
--ring: #58a6ff;
|
|
--chart-1: #238636;
|
|
--chart-2: #58a6ff;
|
|
--chart-3: #a371f7;
|
|
--chart-4: #f78166;
|
|
--chart-5: #d29922;
|
|
--sidebar: #010409;
|
|
--sidebar-foreground: #e6edf3;
|
|
--sidebar-primary: #238636;
|
|
--sidebar-primary-foreground: #ffffff;
|
|
--sidebar-accent: #21262d;
|
|
--sidebar-accent-foreground: #c9d1d9;
|
|
--sidebar-border: #21262d;
|
|
--sidebar-ring: #58a6ff;
|
|
--success: #238636;
|
|
--success-foreground: #ffffff;
|
|
}
|
|
|
|
.dark {
|
|
--background: #0d1117;
|
|
--foreground: #e6edf3;
|
|
--card: #161b22;
|
|
--card-foreground: #e6edf3;
|
|
--popover: #1c2128;
|
|
--popover-foreground: #e6edf3;
|
|
--primary: #238636;
|
|
--primary-foreground: #ffffff;
|
|
--secondary: #21262d;
|
|
--secondary-foreground: #c9d1d9;
|
|
--muted: #161b22;
|
|
--muted-foreground: #8b949e;
|
|
--accent: #58a6ff;
|
|
--accent-foreground: #ffffff;
|
|
--destructive: #f85149;
|
|
--border: #30363d;
|
|
--input: #21262d;
|
|
--ring: #58a6ff;
|
|
--sidebar: #010409;
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground antialiased;
|
|
font-family: "Mona Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1280px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.container {
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.container {
|
|
padding-left: 2rem;
|
|
padding-right: 2rem;
|
|
}
|
|
}
|
|
|
|
::selection {
|
|
background: rgba(88, 166, 255, 0.4);
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #30363d;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #484f58;
|
|
}
|
|
|
|
input[type="radio"] {
|
|
accent-color: var(--primary);
|
|
}
|