The clock widget is back! And lots of other improvements, but one that i'm very excited about...
upgrading our "theme system", that we use around the site, has meant that when custom CSS is added to Kumos (and for user profiles) you'll be able to really easily modify your theme around the site, and we'll probably be able to make a little generator easily.
As an example, here is the Luminaire ⛄ theme:
@plugin "daisyui/theme" {
name: "luminaire";
prefersdark: false;
color-scheme: light;
--header-bg: url("https://img.subeta.net/layouts/luminaire/images/header_repeat.png");
--header-image: url("https://img.subeta.net/layouts/luminaire/images/header.png");
/* Refined pastel palette */
--color-base-100: oklch(100% 0 0);
--color-base-200: oklch(97% 0.01 260);
--color-base-300: oklch(93% 0.016 263);
--color-base-content: oklch(42% 0.053 256);
--color-primary: oklch(90% 0.05 285); /* Soft lavender */
--color-primary-content: oklch(18% 0.02 215);
--color-secondary: oklch(45% 0.08 280); /* Muted purple */
--color-secondary-content: oklch(89% 0.03 282);
--color-accent: oklch(75% 0.12 65); /* Gentle peach */
--color-accent-content: oklch(12% 0.04 335);
/* Luminaire theme - soft lavenders */
--color-logo: oklch(80% 0.1 45); /* Soft gold */
--color-nav-bg: oklch(75% 0.08 285); /* Muted lavender */
--color-neutral: oklch(
97% 0.01 285
); /* Very light tint of primary lavender */
--color-neutral-content: oklch(30% 0.02 285);
/* Harmonious semantic colors */
--color-info: oklch(88% 0.085 215);
--color-info-content: oklch(18% 0.02 215);
--color-success: oklch(80% 0.077 198);
--color-success-content: oklch(16% 0.015 198);
--color-warning: oklch(89% 0.045 71);
--color-warning-content: oklch(18% 0.009 71);
--color-error: oklch(73% 0.11 20);
--color-error-content: oklch(15% 0.022 20);
/* Elegant rounded corners */
--radius-selector: 1rem;
--radius-field: 0.5rem;
--radius-box: 1rem;
--size-selector: 0.25rem;
--size-field: 0.25rem;
--border: 1px;
--depth: 0;
--noise: 0;
}
That's all it takes to completely transform the site into those lush pastel colors!
💖 ✨ 🤗