Don't restrict the accent colour by declaring as the subscription input border color and instead use the text color for that, and set a yellow as the default accent

This commit is contained in:
Kevin MacMartin 2018-04-25 23:48:40 -04:00
parent d2c7da70d3
commit 68e78d2853
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ $container-max-widths: (
$c-text: #111; // text
$c-text-light: #fff; // light text
$c-base: #2e2e2e; // base
$c-accent: #000; // accent
$c-accent: #d4d72e; // accent
$c-error: #f00; // error
// Values

View file

@ -6,7 +6,7 @@
margin: 5px;
width: calc(100% - 10px);
padding: 3px;
border: 1px solid lighten($c-accent, 50%);
border: 1px solid $c-text;
font-size: 14px;
text-align: center;
transition: border-color $trans-speed;