This commit is contained in:
2026-05-14 15:43:32 +01:00
parent 450af53370
commit c02a56cafa
16 changed files with 5297 additions and 1 deletions
+132
View File
@@ -0,0 +1,132 @@
@import "tailwindcss";
@theme {
--color-cerulean-50: #e5f9ff;
--color-cerulean-100: #ccf3ff;
--color-cerulean-200: #99e7ff;
--color-cerulean-300: #66dbff;
--color-cerulean-400: #33cfff;
--color-cerulean-500: #00c3ff;
--color-cerulean-600: #009ccc;
--color-cerulean-700: #007599;
--color-cerulean-800: #004e66;
--color-cerulean-900: #002733;
--color-cerulean-950: #001b24;
--color-tropical-teal-50: #e5feff;
--color-tropical-teal-100: #ccfcff;
--color-tropical-teal-200: #99faff;
--color-tropical-teal-300: #66f7ff;
--color-tropical-teal-400: #33f5ff;
--color-tropical-teal-500: #00f2ff;
--color-tropical-teal-600: #00c2cc;
--color-tropical-teal-700: #009199;
--color-tropical-teal-800: #006166;
--color-tropical-teal-900: #003033;
--color-tropical-teal-950: #002224;
--color-light-yellow-50: #fefde7;
--color-light-yellow-100: #fcfbcf;
--color-light-yellow-200: #f9f69f;
--color-light-yellow-300: #f7f26e;
--color-light-yellow-400: #f4ee3e;
--color-light-yellow-500: #f1e90e;
--color-light-yellow-600: #c1bb0b;
--color-light-yellow-700: #918c08;
--color-light-yellow-800: #605d06;
--color-light-yellow-900: #302f03;
--color-light-yellow-950: #222102;
--color-soft-apricot-50: #fff2e6;
--color-soft-apricot-100: #fee5cd;
--color-soft-apricot-200: #fdca9b;
--color-soft-apricot-300: #fdb068;
--color-soft-apricot-400: #fc9636;
--color-soft-apricot-500: #fb7b04;
--color-soft-apricot-600: #c96303;
--color-soft-apricot-700: #974a02;
--color-soft-apricot-800: #643102;
--color-soft-apricot-900: #321901;
--color-soft-apricot-950: #231101;
--color-vibrant-coral-50: #fde9e8;
--color-vibrant-coral-100: #fad3d1;
--color-vibrant-coral-200: #f6a8a2;
--color-vibrant-coral-300: #f17c74;
--color-vibrant-coral-400: #ed5145;
--color-vibrant-coral-500: #e82517;
--color-vibrant-coral-600: #ba1e12;
--color-vibrant-coral-700: #8b160e;
--color-vibrant-coral-800: #5d0f09;
--color-vibrant-coral-900: #2e0705;
--color-vibrant-coral-950: #200503;
--color-bg: #fefde7;
--color-surface: #fcfbcf;
--color-surface-alt: #f9f69f;
--color-fury-white: #fefde7;
--color-fury-ice: #fcfbcf;
--color-fury-blue: #f9f69f;
--color-fury-glow: #fdb068;
--color-fury-cyan: #e82517;
--color-fury-aqua: #ed5145;
--color-fury-violet: #fb7b04;
--color-text: #000000;
--color-text-soft: #555555;
--color-text-muted: #888888;
--color-border: #fee5cd;
--color-ring: #ed5145;
--color-shadow: rgba(232, 37, 23, 0.12);
--color-success: #00f2ff;
--color-warning: #f4ee3e;
--color-danger: #e82517;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
min-width: 320px;
min-height: 100vh;
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}
.pixel-mountains {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
image-rendering: pixelated;
object-fit: cover;
object-position: center bottom;
pointer-events: none;
z-index: 0;
}
.tree {
width: min(100%, 500px);
height: auto;
display: block;
background: #fefde7;
border: 3px solid #fdca9b;
border-radius: 16px;
padding: 12px;
box-shadow:
0 4px 24px rgba(253, 202, 155, 0.35),
0 1px 3px rgba(50, 25, 1, 0.08);
}
.falling-leaves {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}