Skip to content

Commit

Permalink
Merge pull request #481 from node-red-contrib-themes/border-colors
Browse files Browse the repository at this point in the history
  • Loading branch information
bonanitech authored Jul 13, 2024
2 parents d435a97 + 9ed9d33 commit 21cc91c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions src/themes/aurora/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ $text-color-success: #c5e400;
$text-color-code: #aaaaaa;
$text-color-link: #bbbb77;

$primary-border-color: darken($primary-background, 8%);
$secondary-border-color: darken($primary-background, 6%);
$tertiary-border-color: darken($primary-background, 7%);
$primary-border-color: #3f3d4d;
$secondary-border-color: scale-color($primary-border-color, $lightness: -14%);
$tertiary-border-color: scale-color($primary-border-color, $lightness: -7%);

$border-color-error: #df2935;
$border-color-warning: #ffcf70;
Expand Down
4 changes: 2 additions & 2 deletions src/themes/cobalt2/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ $text-color-code: #ffc600;
$text-color-link: #0088ff;

$primary-border-color: #1f4662;
$secondary-border-color: #0d3a58;
$tertiary-border-color: $primary-border-color;
$secondary-border-color: scale-color($primary-border-color, $lightness: -14%);
$tertiary-border-color: scale-color($primary-border-color, $lightness: -7%);

$border-color-error: #df2935;
$border-color-warning: #ffcf70;
Expand Down
6 changes: 3 additions & 3 deletions src/themes/espresso-libre/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ $text-color-success: #3a3;
$text-color-code: #ad1625;
$text-color-link: #0088cc;

$primary-border-color: darken($secondary-background, 8%);
$secondary-border-color: darken($secondary-background, 6%);
$tertiary-border-color: darken($secondary-background, 7%);
$primary-border-color: #3a312c;
$secondary-border-color: scale-color($primary-border-color, $lightness: -14%);
$tertiary-border-color: scale-color($primary-border-color, $lightness: -7%);

$border-color-error: #df2935;
$border-color-warning: #ffcf70;
Expand Down
6 changes: 3 additions & 3 deletions src/themes/monoindustrial/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ $text-color-success: #3a3;
$text-color-code: #ad1625;
$text-color-link: #0088cc;

$primary-border-color: darken($secondary-background, 8%);
$secondary-border-color: darken($secondary-background, 6%);
$tertiary-border-color: darken($secondary-background, 7%);
$primary-border-color: #171d1b;
$secondary-border-color: scale-color($primary-border-color, $lightness: -14%);
$tertiary-border-color: scale-color($primary-border-color, $lightness: -7%);

$border-color-error: #df2935;
$border-color-warning: #ffcf70;
Expand Down
6 changes: 3 additions & 3 deletions src/themes/oceanic-next/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ $text-color-success: #99c794;
$text-color-code: #d7ba7d;
$text-color-link: #3794ff;

$primary-border-color: darken($secondary-background, 8%);
$secondary-border-color: darken($secondary-background, 6%);
$tertiary-border-color: darken($secondary-background, 7%);
$primary-border-color: #2b3b44;
$secondary-border-color: scale-color($primary-border-color, $lightness: -14%);
$tertiary-border-color: scale-color($primary-border-color, $lightness: -7%);

$border-color-error: #df2935;
$border-color-warning: #ffcf70;
Expand Down

0 comments on commit 21cc91c

Please sign in to comment.