fix(projects): enforce contribution colors by theme

This commit is contained in:
poyrazavsever
2026-08-31 12:40:20 +03:00
parent d2c30da602
commit ca45b97c60
2 changed files with 11 additions and 1 deletions
+10
View File
@@ -10,6 +10,12 @@
@layer base {
:root {
--poyraz-font-secondary: "Nunito", ui-rounded, "Avenir Next", system-ui, sans-serif;
--github-contribution-empty: #ebedf0;
}
.dark,
[data-poyraz-theme="dark"] {
--github-contribution-empty: #27272a;
}
}
@@ -23,6 +29,10 @@ html[data-poyraz-theme="light"] body {
}
@layer utilities {
.github-contribution-empty {
fill: var(--github-contribution-empty);
}
@keyframes marquee {
0% { transform: translateX(0%); }
100% { transform: translateX(-50%); }