Skip to content

Commit

Permalink
feat(themes): add new base app CSS Vars
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Jun 9, 2023
1 parent f7201a4 commit b4b2ffd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/themes/src/morpheme/_app.dark.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.dark {
--v-app-bg-color: var(--color-gray-true-900);
--v-app-color: var(--color-gray-true-200);
}
4 changes: 4 additions & 0 deletions packages/themes/src/morpheme/_app.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
:root {
--v-app-bg-color: var(--color-white);
--v-app-color: var(--color-gray-700);
}
1 change: 1 addition & 0 deletions packages/themes/src/morpheme/main.dark.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import 'app.dark';
@import 'alert.dark';
@import 'badge.dark';
@import 'button.dark';
Expand Down
1 change: 1 addition & 0 deletions packages/themes/src/morpheme/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
@import '@morpheme/design-tokens/css/variables.css';

// components
@import 'app';
@import 'alert';
@import 'button';
@import 'badge';
Expand Down

0 comments on commit b4b2ffd

Please sign in to comment.