From 6d1698fcb625ad8859466969340936704f23b571 Mon Sep 17 00:00:00 2001
From: alikia2x
Date: Mon, 28 Apr 2025 02:02:52 +0800
Subject: [PATCH] update: color system with tailwind theme
---
.tokeignore | 4 +++-
packages/frontend/src/pages/login/index.astro | 2 +-
packages/frontend/src/pages/register/index.astro | 2 +-
packages/frontend/src/styles/global.css | 12 +++++++++---
4 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/.tokeignore b/.tokeignore
index aafc28c..f4e0597 100644
--- a/.tokeignore
+++ b/.tokeignore
@@ -3,4 +3,6 @@ data
*.svg
*.txt
*.md
-*config*
\ No newline at end of file
+*config*
+Inter.css
+MiSans.css
\ No newline at end of file
diff --git a/packages/frontend/src/pages/login/index.astro b/packages/frontend/src/pages/login/index.astro
index 95a9f19..01b9f9b 100644
--- a/packages/frontend/src/pages/login/index.astro
+++ b/packages/frontend/src/pages/login/index.astro
@@ -7,7 +7,7 @@ import Layout from "@layouts/Layout.astro";
很抱歉,但您现在无法登录。
-
因为目前还没有写好啦~
+
因为目前还没有写好啦~
返回首页
diff --git a/packages/frontend/src/pages/register/index.astro b/packages/frontend/src/pages/register/index.astro
index 985e3c7..5c530b8 100644
--- a/packages/frontend/src/pages/register/index.astro
+++ b/packages/frontend/src/pages/register/index.astro
@@ -23,7 +23,7 @@ import RightArrow from "@components/icon/RightArrow.astro";
很抱歉,但您现在无法注册。
- 因为目前还没有写好啦~
+ 因为目前还没有写好啦~
返回首页
diff --git a/packages/frontend/src/styles/global.css b/packages/frontend/src/styles/global.css
index 34a2d53..c84ae7e 100644
--- a/packages/frontend/src/styles/global.css
+++ b/packages/frontend/src/styles/global.css
@@ -9,17 +9,23 @@
--color-dark-surface-container-high: #322826;
--color-dark-container: #271d1c;
--color-container: #fceae7;
+ --color-on-surface: #231918;
+ --color-dark-on-surface: #f1dfdc;
+ --color-surface: #fff8f6;
+ --color-dark-surface: #1a1110;
+ --color-primary: #904b40;
+ --color-dark-primary: #ffb2b7;
}
a {
- @apply text-[#904b40] dark:text-[#ffb2b7];
+ @apply text-primary dark:text-dark-primary;
}
:root {
font-family: "MiSans", "Inter", sans-serif;
font-weight: 400;
- @apply bg-[#fff8f6] dark:bg-[#1a1110] text-[#231918] dark:text-[#f1dfdc]
+ @apply bg-surface dark:bg-dark-surface text-on-surface dark:text-dark-on-surface
}
@supports (font-variation-settings: normal) {
@@ -28,4 +34,4 @@ a {
font-optical-sizing: auto;
font-weight: 330;
}
-}
\ No newline at end of file
+}