From d058bbc77689572e9fd0a985977e1e807563a674 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 24 May 2025 18:11:23 +0300 Subject: [PATCH] style(next): add a notice --- apps/client/src/stylesheets/theme-next-dark.css | 6 ++++++ apps/client/src/stylesheets/theme-next-light.css | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/apps/client/src/stylesheets/theme-next-dark.css b/apps/client/src/stylesheets/theme-next-dark.css index 9525231f5..031bdf465 100644 --- a/apps/client/src/stylesheets/theme-next-dark.css +++ b/apps/client/src/stylesheets/theme-next-dark.css @@ -5,6 +5,12 @@ * Color scheme */ :root { + + /* + * ⚠️ NOTICE: This theme is currently in the beta stage of development. + * The names and purposes of these CSS variables are subject to frequent changes. + */ + --theme-style: dark; --native-titlebar-background: #00000000; diff --git a/apps/client/src/stylesheets/theme-next-light.css b/apps/client/src/stylesheets/theme-next-light.css index a53ef1e97..ba994587f 100644 --- a/apps/client/src/stylesheets/theme-next-light.css +++ b/apps/client/src/stylesheets/theme-next-light.css @@ -5,6 +5,12 @@ * Color scheme */ :root { + + /* + * ⚠️ NOTICE: This theme is currently in the beta stage of development. + * The names and purposes of these CSS variables are subject to frequent changes. + */ + --theme-style: light; --native-titlebar-background: #ffffff00;