mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 22:18:00 +08:00
update new coloras
This commit is contained in:
6
packages/ui/styles/themes/dark.css
Normal file
6
packages/ui/styles/themes/dark.css
Normal file
@@ -0,0 +1,6 @@
|
||||
.dark {
|
||||
--background-color-default: #232323;
|
||||
--background-color-body: #1c1c1c;
|
||||
--border-color-default: #282828;
|
||||
--border-color-body: #282828;
|
||||
}
|
||||
6
packages/ui/styles/themes/light.css
Normal file
6
packages/ui/styles/themes/light.css
Normal file
@@ -0,0 +1,6 @@
|
||||
:root {
|
||||
--background-color-default: #fbfcfd;
|
||||
--background-color-body: #f8f9fa;
|
||||
--border-color-default: #eceef0;
|
||||
--border-color-body: #e6e8eb;
|
||||
}
|
||||
6
packages/ui/styles/tw-extend/color.js
Normal file
6
packages/ui/styles/tw-extend/color.js
Normal file
@@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
"backgroundColor-DEFAULT": "var(--background-color-default, #232323);",
|
||||
"backgroundColor-body": "var(--background-color-body, #1c1c1c);",
|
||||
"borderColor-DEFAULT": "var(--border-color-default, #282828);",
|
||||
"borderColor-body": "var(--border-color-body, #282828);"
|
||||
}
|
||||
Reference in New Issue
Block a user