Skip to content

Commit

Permalink
Improve Sass variables
Browse files Browse the repository at this point in the history
  • Loading branch information
santiph committed Sep 28, 2017
1 parent bea2abd commit 531d2dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 8 additions & 0 deletions src/style/_gjs_variables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* Class names prefixes */
$app-prefix: 'gjs-' !default;

/* Colors / Theme */

$mainColor: #373d49 !default;
$active-color: #35d7bb !default;
$tag-color: #4c9790 !default;
6 changes: 2 additions & 4 deletions src/style/main.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
$app-prefix: 'gjs-';
$active-color: #35d7bb;
$tag-color: #4c9790; /* #008f73 #4c9790 */
@import "gjs_variables.scss";

.#{$app-prefix}clm-tags .#{$app-prefix}sm-title,
.#{$app-prefix}sm-sector .#{$app-prefix}sm-title {
Expand Down Expand Up @@ -69,7 +67,7 @@ $tag-color: #4c9790; /* #008f73 #4c9790 */
.#{$app-prefix}sm-select option,
.#{$app-prefix}sm-unit option,
.sp-container {
background-color: #373d49;
background-color: $mainColor;
}

.#{$app-prefix}import-label,
Expand Down

0 comments on commit 531d2dd

Please sign in to comment.