mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-04-23 09:50:33 +00:00
35 lines
1.2 KiB
CSS
35 lines
1.2 KiB
CSS
/* Seamark color overrides (injected after atcr.io's compiled stylesheet) */
|
|
[data-theme="dark"] {
|
|
--color-primary: oklch(72% 0.17 225);
|
|
--color-primary-content: oklch(15% 0.05 240);
|
|
--color-secondary: oklch(90% 0.182 98.111);
|
|
--color-secondary-content: oklch(30% 0.182 98.111);
|
|
--color-accent: oklch(70% 0.14 345);
|
|
--color-accent-content: oklch(98% 0.008 345);
|
|
--color-base-100: oklch(20% 0.05 250);
|
|
--color-base-200: oklch(25% 0.05 250);
|
|
--color-base-300: oklch(30% 0.05 250);
|
|
}
|
|
|
|
[data-theme="light"] {
|
|
--color-primary: oklch(48% 0.17 250);
|
|
--color-primary-content: oklch(98% 0.01 250);
|
|
--color-secondary: oklch(76% 0.095 76.1);
|
|
--color-secondary-content: oklch(27.1% 0.026 76.4);
|
|
--color-accent: oklch(56% 0.17 345);
|
|
--color-accent-content: oklch(98% 0.008 345);
|
|
--color-base-100: oklch(98% 0.01 225);
|
|
--color-base-200: oklch(95% 0.02 225);
|
|
--color-base-300: oklch(92% 0.03 225);
|
|
}
|
|
|
|
@keyframes rock {
|
|
0%, 100% { transform: translateY(-50%) rotate(-3deg); }
|
|
50% { transform: translateY(-50%) rotate(3deg); }
|
|
}
|
|
|
|
.animate-rock {
|
|
animation: rock 3s ease-in-out infinite;
|
|
transform-origin: bottom center;
|
|
}
|