You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

180 lines
3.3 KiB

// Dark Background
$gb-dm-bg0: #282828;
$gb-dm-bg0-hard: #1d2021;
$gb-dm-bg0-soft: #32302f;
$gb-dm-bg1: #3c3836;
$gb-dm-bg2: #504945;
$gb-dm-bg3: #665c54;
$gb-dm-bg4: #7c6f64;
// Dark Foreground
$gb-dm-fg0: #fbf1c7;
$gb-dm-fg1: #ebdbb2;
$gb-dm-fg2: #d5c4a1;
$gb-dm-fg3: #bdae93;
$gb-dm-fg4: #a89984;
// Dark Colors
$gb-dm-dark-red: #cc241d;
$gb-dm-dark-green: #98971a;
$gb-dm-dark-yellow: #d79921;
$gb-dm-dark-blue: #458588;
$gb-dm-dark-purple: #b16286;
$gb-dm-dark-aqua: #689d6a;
$gb-dm-dark-orange: #d65d0e;
$gb-dm-dark-gray: #928374;
$gb-dm-light-red: #fb4934;
$gb-dm-light-green: #b8bb26;
$gb-dm-light-yellow: #fabd2f;
$gb-dm-light-blue: #83a598;
$gb-dm-light-purple: #d3869b;
$gb-dm-light-aqua: #8ec07c;
$gb-dm-light-orange: #f38019;
$gb-dm-light-gray: #a89984;
// Light Background
$gb-lm-bg0: #fbf1c7;
$gb-lm-bg0-hard: #f9f5d7;
$gb-lm-bg0-soft: #f2e5bc;
$gb-lm-bg1: #ebdbb2;
$gb-lm-bg2: #d5c4a1;
$gb-lm-bg3: #bdae93;
$gb-lm-bg4: #a89984;
// Light Foreground
$gb-lm-fg0: #282828;
$gb-lm-fg1: #3c3836;
$gb-lm-fg2: #504945;
$gb-lm-fg3: #665c54;
$gb-lm-fg4: #7c6f64;
// Light Colors
$gb-lm-dark-red: #cc241d;
$gb-lm-dark-green: #98971a;
$gb-lm-dark-yellow: #d79921;
$gb-lm-dark-blue: #458588;
$gb-lm-dark-purple: #b16286;
$gb-lm-dark-aqua: #689d6a;
$gb-lm-dark-orange: #d65d0e;
$gb-lm-dark-gray: #928374;
$gb-lm-light-red: #9d0006;
$gb-lm-light-green: #79740e;
$gb-lm-light-yellow: #b57614;
$gb-lm-light-blue: #076678;
$gb-lm-light-purple: #8f3f71;
$gb-lm-light-aqua: #427b58;
$gb-lm-light-orange: #af3a03;
$gb-lm-light-gray: #7c6f64;
html, body, * {
margin: 0;
padding: 0;
}
body {
position: absolute;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
}
.vimvixen-console {
bottom: 0;
margin: 0;
padding: 0;
background-color: blue;
@mixin consoole-font {
font-style: normal;
font-family: monospace;
font-size: 12px;
line-height: 16px;
color: $gb-dm-fg0;
}
&-command-wrapper {
border-top: 1px solid green;
}
&-completion {
background-color: $gb-dm-bg0;
@include consoole-font;
&-title {
background-color: $gb-dm-bg1;
font-weight: bold;
margin: 0;
padding: 0;
}
&-item {
padding-left: 1.5rem;
background-position: 0 center;
background-size: contain;
background-repeat: no-repeat;
white-space: pre;
&.vimvixen-completion-selected {
background-color: $gb-dm-dark-aqua;
.vimvixen-console-completion-item-url{
color: $gb-dm-fg2;
}
}
&-caption {
display: inline-block;
width: 40%;
text-overflow: ellipsis;
overflow: hidden;
}
&-url {
display: inline-block;
color: $gb-dm-dark-green;
width: 60%;
text-overflow: ellipsis;
overflow: hidden;
}
}
}
&-message {
@include consoole-font;
background-color: red;
border-top: 1px solid gray;
}
&-error {
background-color: red;
font-weight: bold;
color: white;
}
&-info {
font-weight: normal;
background-color: $gb-dm-dark-green;
color: $gb-dm-fg0;
}
&-command {
background-color: $gb-dm-bg2;
display: flex;
&-prompt {
@include consoole-font;
background-color: $gb-dm-bg2;
}
&-input {
border: none;
flex-grow: 1;
background-color: $gb-dm-bg2;
@include consoole-font;
}
}
}