Skip to content

Commit

Permalink
prepare colors
Browse files Browse the repository at this point in the history
  • Loading branch information
s-light committed Nov 12, 2024
1 parent ec6c70a commit 47aabab
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 9 deletions.
11 changes: 11 additions & 0 deletions src/css/app.scss
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
// app global css in SCSS form
body.body--light {
color: $text
}

body.body--dark {
color: $text-on-dark
}

body.body--dark .q-dark {
color: $text-on-dark
}
28 changes: 19 additions & 9 deletions src/css/quasar.variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,24 @@
// to match your app's branding.
// Tip: Use the "Theme Builder" on Quasar's documentation website.

$primary : #1976D2;
$secondary : #26A69A;
$accent : #9C27B0;

$dark : #1D1D1D;
$dark-page : #121212;
$mks-blue: rgb(104, 191, 202);
$mks-green: rgb(176, 171, 3);
$mks-yellow: rgb(245, 157, 33);
$mks-orange: rgb(234, 96, 49);
$mks-gray: rgb(239, 239, 239);

$positive : #21BA45;
$negative : #C10015;
$info : #31CCEC;
$warning : #F2C037;
$primary: $mks-blue;
$secondary: $mks-yellow;
$accent: $mks-orange;

$text: hsl(194, 26%, 22%);
$text-on-dark: hsl(194, 26%, 82%);

$dark: #1d1d1d;
$dark-page: #121212;

$positive: $mks-green;
$negative: $mks-orange;
$info: $mks-blue;
$warning: $mks-yellow;

0 comments on commit 47aabab

Please sign in to comment.