Fixed colors

This commit is contained in:
Jori Lallo
2016-07-15 00:41:56 -07:00
parent 0493a35824
commit 741f21b890
7 changed files with 14 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ svg {
max-height: 100%;
}
a {
color: $linkColor;
color: $actionColor;
text-decoration: none;
}
h1, h2, h3,

View File

@@ -1,3 +1,5 @@
@import './constants.scss';
:global {
/* BASICS */
@@ -54,7 +56,7 @@
.cm-fat-cursor .CodeMirror-cursor {
width: auto;
border: 0;
background: #7e7;
background: $actionColor;
}
.cm-fat-cursor div.CodeMirror-cursors {
z-index: 1;

View File

@@ -1,10 +1,11 @@
$lightGray: #eee;
$textColor: #171B35;
$linkColor: #0C77F8;
$actionColor: #2da9e1;
$headerHeight: 42px;
:export {
textColor: $textColor;
actionColor: $actionColor;
}