mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
🔧 Rename theme-x to ThemeX
This commit is contained in:
parent
1d35c53820
commit
c50690d0b6
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ import Box from "./components/Box"
|
||||||
|
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
const [theme, ] = useState("theme-dark");
|
const [theme, ] = useState("ThemeDark");
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classNames(Style["app"], theme)}>
|
<div className={classNames(Style["app"], theme)}>
|
||||||
|
|
|
@ -9,7 +9,7 @@ body {
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark {
|
.ThemeDark {
|
||||||
--bg-primary: #3B7097;
|
--bg-primary: #3B7097;
|
||||||
--bg-light: #34607A;
|
--bg-light: #34607A;
|
||||||
--bg-dark: #254D61;
|
--bg-dark: #254D61;
|
||||||
|
@ -24,7 +24,7 @@ body {
|
||||||
--cmp-dark: #7C7C7C;
|
--cmp-dark: #7C7C7C;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light {
|
.ThemeLight {
|
||||||
--bg-primary: #CAE4F6;
|
--bg-primary: #CAE4F6;
|
||||||
--bg-light: #B2CEDF;
|
--bg-light: #B2CEDF;
|
||||||
--bg-dark: #7292AF;
|
--bg-dark: #7292AF;
|
||||||
|
|
Loading…
Reference in a new issue