mirror of
https://github.com/Rnhmjoj/solarized-dark-ui
synced 2025-01-10 09:24:21 +01:00
Initial commit
This commit is contained in:
parent
6a80bf4fd6
commit
a82dbb04af
@ -1,5 +1,5 @@
|
|||||||
# Spacegray Dark UI theme
|
# Solarized Dark UI theme
|
||||||
|
|
||||||
Port of the [Spacegray](http://kkga.github.io/spacegray) Sublime Text theme to Atom.
|
Based on [Spacegray Dark UI](https://github.com/cannikin/spacegray-dark-ui) Atom theme.
|
||||||
|
|
||||||
![screenshot](http://ridingtheclutch.com.s3.amazonaws.com/images/spacegray.png)
|
![screenshot](https://raw.github.com/Rnhmjoj/solarized-dark-ui/master/screenshot.png)
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "spacegray-dark-ui",
|
"name": "solarized-dark-ui",
|
||||||
"theme": "ui",
|
"theme": "ui",
|
||||||
"version": "0.5.0",
|
"version": "0.0.1",
|
||||||
"description": "Port of the Spacegray Sublime Text theme http://kkga.github.io/spacegray to Atom",
|
"description": "Solarized Dark UI theme for Atom",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "https://github.com/cannikin/spacegray-dark-ui",
|
"repository": "https://github.com/rnhmjoj/solarized-dark-ui",
|
||||||
"engines": {
|
"engines": {
|
||||||
"atom": ">0.50.0"
|
"atom": ">0.50.0"
|
||||||
}
|
}
|
||||||
|
@ -2,5 +2,5 @@
|
|||||||
|
|
||||||
ul.background-message {
|
ul.background-message {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: rgba(0, 0, 0, .2);
|
color: @text-color;
|
||||||
}
|
}
|
||||||
|
@ -28,15 +28,20 @@
|
|||||||
height: @tab-height;
|
height: @tab-height;
|
||||||
line-height: @tab-height;
|
line-height: @tab-height;
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
|
border: 1px solid @tab-border-color;
|
||||||
|
border-left: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
|
margin-right: 2px;
|
||||||
transition: color .1s ease-in;
|
transition: color .1s ease-in;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: -1px;
|
||||||
left: -18px;
|
left: -18px;
|
||||||
|
border: 1px solid @tab-border-color;
|
||||||
|
border-right: 0;
|
||||||
height: @tab-height;
|
height: @tab-height;
|
||||||
width: 40px;
|
width: 40px;
|
||||||
}
|
}
|
||||||
@ -73,6 +78,7 @@
|
|||||||
.tab.active {
|
.tab.active {
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
line-height: @tab-height - 3px;
|
line-height: @tab-height - 3px;
|
||||||
|
border: 1px solid @tab-border-color-active;
|
||||||
color: @text-color-highlight;
|
color: @text-color-highlight;
|
||||||
|
|
||||||
.title{
|
.title{
|
||||||
@ -87,8 +93,12 @@
|
|||||||
|
|
||||||
&, &:before {
|
&, &:before {
|
||||||
background-color: @tab-background-color-active;
|
background-color: @tab-background-color-active;
|
||||||
|
border: 1px solid @tab-border-color-active;
|
||||||
height: @tab-height;
|
height: @tab-height;
|
||||||
}
|
}
|
||||||
|
&:before {
|
||||||
|
border-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
.selected > .name:before,
|
.selected > .name:before,
|
||||||
.selected > .list-item > .name,
|
.selected > .list-item > .name,
|
||||||
.selected > .list-item > .name:before {
|
.selected > .list-item > .name:before {
|
||||||
color: #fff !important;
|
color: @text-color-highlight !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
// Colors
|
// Colors
|
||||||
|
|
||||||
@text-color: rgb(101, 115, 127);
|
@text-color: #657b83;
|
||||||
@text-color-subtle: #484F5A;
|
@text-color-subtle: #93a1a1;
|
||||||
@text-color-highlight: rgb(192,197,206);
|
@text-color-highlight: #93a1a1;
|
||||||
@text-color-selected: rgb(223, 225, 232);
|
@text-color-selected: #586e75;
|
||||||
|
|
||||||
@text-color-info: #5786B8;
|
@text-color-info: #657b83;
|
||||||
@text-color-success: #68A281;
|
@text-color-success: #859900;
|
||||||
@text-color-warning: #AA8A69;
|
@text-color-warning: #b58900;
|
||||||
@text-color-error: #9B4444;
|
@text-color-error: #cb4b16;
|
||||||
|
|
||||||
@text-color-ignored: @text-color-subtle;
|
@text-color-ignored: @text-color-subtle;
|
||||||
@text-color-added: @text-color-success;
|
@text-color-added: @text-color-success;
|
||||||
@ -21,11 +21,11 @@
|
|||||||
@background-color-warning: #ffaa2c;
|
@background-color-warning: #ffaa2c;
|
||||||
@background-color-error: #c00;
|
@background-color-error: #c00;
|
||||||
@background-color-highlight: rgba(255, 255, 255, 0.07);
|
@background-color-highlight: rgba(255, 255, 255, 0.07);
|
||||||
@background-color-selected: #343D46;
|
@background-color-selected: #082933;
|
||||||
|
|
||||||
@tree-background-color: #232830;
|
@tree-background-color: #00212b;
|
||||||
|
|
||||||
@app-background-color: #2B303B;
|
@app-background-color: #002b36;
|
||||||
|
|
||||||
@base-background-color: lighten(@tool-panel-background-color, 5%);
|
@base-background-color: lighten(@tool-panel-background-color, 5%);
|
||||||
@base-border-color: rgba(0, 0, 0, 0.5);
|
@base-border-color: rgba(0, 0, 0, 0.5);
|
||||||
@ -33,13 +33,13 @@
|
|||||||
@pane-item-background-color: @base-background-color;
|
@pane-item-background-color: @base-background-color;
|
||||||
@pane-item-border-color: rgba(0, 0, 0, 0.5);
|
@pane-item-border-color: rgba(0, 0, 0, 0.5);
|
||||||
|
|
||||||
@input-background-color: #1C1F26;
|
@input-background-color: #073642;
|
||||||
@input-border-color: @base-border-color;
|
@input-border-color: @base-border-color;
|
||||||
|
|
||||||
@tool-panel-background-color: #1C1F26;
|
@tool-panel-background-color: #00212b;
|
||||||
@tool-panel-border-color: transparent;
|
@tool-panel-border-color: transparent;
|
||||||
|
|
||||||
@inset-panel-background-color: #161719;
|
@inset-panel-background-color: #1a1e24;
|
||||||
@inset-panel-border-color: @base-border-color;
|
@inset-panel-border-color: @base-border-color;
|
||||||
|
|
||||||
@panel-heading-background-color: #43484d;
|
@panel-heading-background-color: #43484d;
|
||||||
@ -48,16 +48,17 @@
|
|||||||
@overlay-background-color: @tool-panel-background-color;
|
@overlay-background-color: @tool-panel-background-color;
|
||||||
@overlay-border-color: @background-color-highlight;
|
@overlay-border-color: @background-color-highlight;
|
||||||
|
|
||||||
@button-background-color: #1C1F26;
|
@button-background-color: #073642;
|
||||||
@button-background-color-hover: #1C1F26;
|
@button-background-color-hover: #073642;
|
||||||
@button-background-color-selected: #1C1F26;
|
@button-background-color-selected: #073642;
|
||||||
@button-border-color: transparent;
|
@button-border-color: transparent;
|
||||||
|
|
||||||
@tab-bar-background-color: rgb(28, 31, 38);
|
@tab-bar-background-color: #002b36;
|
||||||
@tab-bar-border-color: transparent;
|
@tab-bar-border-color: transparent;
|
||||||
@tab-background-color: #1C1F26;
|
@tab-background-color: transparent;
|
||||||
@tab-background-color-active: rgb(43, 48, 59);
|
@tab-background-color-active: #294a55;
|
||||||
@tab-border-color: transparent;
|
@tab-border-color: @tool-panel-background-color;
|
||||||
|
@tab-border-color-active: #3f616b;
|
||||||
|
|
||||||
@tree-view-background-color: @tool-panel-background-color;
|
@tree-view-background-color: @tool-panel-background-color;
|
||||||
@tree-view-border-color: @tool-panel-border-color;
|
@tree-view-border-color: @tool-panel-border-color;
|
||||||
@ -81,7 +82,7 @@
|
|||||||
@component-line-height: 25px;
|
@component-line-height: 25px;
|
||||||
@component-border-radius: 2px;
|
@component-border-radius: 2px;
|
||||||
|
|
||||||
@tab-height: 30px;
|
@tab-height: 36px;
|
||||||
|
|
||||||
|
|
||||||
// Other
|
// Other
|
||||||
|
Loading…
Reference in New Issue
Block a user