color adjustments

This commit is contained in:
Cássio Zen 2016-07-08 14:11:53 -03:00
parent 5cd8042819
commit 9a3a013b5b
2 changed files with 9 additions and 4 deletions

View File

@ -1,8 +1,8 @@
:root {
--foregroundColor: #222;
--foregroundColor: #555;
--backgroundColor: rgba(245, 245, 245, 0.98);
--textFieldBorderColor: #e7e7e7;
--highlightFGColor: #000;
--highlightFGColor: #444;
--highlightBGColor: #d2dee4;
}
@ -73,11 +73,16 @@
.command {
padding: 6px;
cursor: default;
color: var(--foregroundColor);
}
.command strong, .highlightedCommand strong {
color: #000;
}
.command .faded {
font-weight: 300;
color: #555;
color: #888;
}
.highlightedCommand {

View File

@ -296,7 +296,7 @@ class FindBar extends Component {
<span><Icon type="search"/>Search... </span> :
<span className={styles.faded}><Icon type="search"/>Search for: </span>
}
{this.state.value}</span>
<strong>{this.state.value}</strong></span>
);
}
return (