Convert color schema, begin migrating old classes (finishes grey & red)

This commit is contained in:
Dane Everitt 2019-02-09 14:32:18 -08:00
parent 6c7a5d5bb9
commit 32b43cff9a
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
35 changed files with 186 additions and 166 deletions

View file

@ -11,7 +11,7 @@ code {
* Indicators for server online status.
*/
.indicator {
@apply .bg-grey-darker .border .border-grey;
@apply .bg-neutral-800 .border .border-grey;
border-radius: 50%;
width: 16px;
height: 16px;
@ -89,16 +89,16 @@ code {
}
& a, & a:visited {
@apply .no-underline .text-grey-darkest;
@apply .no-underline .text-neutral-900;
}
& > .content {
@apply .border .border-grey-light .bg-white .no-underline .block .text-black .p-4;
border-top: 4px solid config('colors.grey-light') !important;
@apply .border .border-neutral-400 .bg-white .no-underline .block .text-black .p-4;
border-top: 4px solid config('colors.neutral-400') !important;
}
& > .footer {
@apply .border .border-grey-light .border-t-0 .bg-grey-lightest;
@apply .border .border-neutral-400 .border-t-0 .bg-neutral-50;
}
}
@ -110,7 +110,7 @@ code {
@apply .w-full .my-4;
& > input[type="text"] {
@apply .w-full .p-3 .rounded .border .text-grey-darker;
@apply .w-full .p-3 .rounded .border .text-neutral-800;
transition: border 150ms ease-in;
&:focus {