Skip to content

Commit

Permalink
fix input/alert colors
Browse files Browse the repository at this point in the history
  • Loading branch information
aotearoan committed Jun 29, 2020
1 parent 36a82d9 commit 9ff7907
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aotearoan/neon",
"description": "Neon is a design library of components for use with VueJS. It supports light and dark modes and can be extended to support multiple themes",
"version": "0.18.14",
"version": "0.18.15",
"main": "dist/@aotearoan/neon.umd.js",
"types": "dist/@aotearoan/components.d.ts",
"files": [
Expand Down
4 changes: 2 additions & 2 deletions src/sass/common/colors/_alert.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ $notificationIcons: (
box-shadow: 0.5 * $base-space 0.5 * $base-space 2 * $base-space $color-neutral-d4;

&__title {
color: $color-text-dark;
color: $color-text-light;
}

&__body {
color: $color-text-dark;
color: $color-text-light;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/sass/common/colors/_notification-counter.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.neon-notification-counter {
background-color: $background-color-notification-counter;
color: $color-text-dark;
color: $color-text-light;
}
4 changes: 2 additions & 2 deletions src/sass/common/colors/variables-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ $color-radio-button-label: $color-neutral-d3;

// input
$border-color-input: $color-neutral-l2;
$background-color-input: rgba($color-text-dark, 0.5);
$background-color-input-active: $color-text-dark;
$background-color-input: rgba($color-text-light, 0.5);
$background-color-input-active: $color-text-light;
$border-color-input-selected: d1;
$color-placeholder: $color-neutral-l1;

Expand Down

0 comments on commit 9ff7907

Please sign in to comment.