mirror of
https://github.com/leanote/desktop-app.git
synced 2026-01-13 07:03:04 +08:00
night theme
This commit is contained in:
@@ -1 +1 @@
|
||||
{"version":"1.0","updatedTime":"2015-11-25T07:21:51.505Z"}
|
||||
{"version":"1.0-beta","updatedTime":"2015-11-25T07:21:51.505Z"}
|
||||
@@ -31,6 +31,7 @@
|
||||
textarea#wmd-input {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
#wmd-input {
|
||||
.ace_searchbtn_close {
|
||||
margin: 0px;
|
||||
|
||||
@@ -329,3 +329,105 @@ body.writting .info-toolbar {
|
||||
background-color: #000;
|
||||
color: #000;
|
||||
}
|
||||
textarea#wmd-input {
|
||||
color: #c2c2c2 !important;
|
||||
}
|
||||
#wmd-input.ace_editor {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_marker-layer .ace_active-line {
|
||||
background-color: rgba(89, 128, 166, 0.05);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_cursor {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.insert-mode .ace_cursor {
|
||||
border-color: #c2c2c2 !important;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_print-margin {
|
||||
background: none;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading {
|
||||
color: #c2c2c2;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_1,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_2,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_3,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_4,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_5 {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_list {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant.ace_language {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-weight: normal;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_meta.ace_tag {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_keyword.ace_operator {
|
||||
color: #384654;
|
||||
background-color: transparent;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_storage,
|
||||
#wmd-input.ace-tm .ace_keyword {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_entity.ace_name.ace_function {
|
||||
color: #1a2026;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_string {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_invalid {
|
||||
color: inherit;
|
||||
background: inherit;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_strong {
|
||||
color: #c2c2c2;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_emphasis {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_blockquote {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code {
|
||||
color: #c2c2c2;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code_block {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_link {
|
||||
color: #576c82;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_description {
|
||||
color: #576c82;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant {
|
||||
color: #384654;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_comment {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-style: italic;
|
||||
}
|
||||
#wmd-input.normal-mode .ace_cursor {
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
#wmd-input.emacs-mode .ace_cursor {
|
||||
border: 2px rgba(101, 189, 119, 0.8) solid !important;
|
||||
background-color: #65bd77;
|
||||
}
|
||||
|
||||
@@ -360,3 +360,122 @@ body.writting {
|
||||
background-color: #000;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
// markdown ace
|
||||
|
||||
// markdown editor ace
|
||||
@mdAceTextColor: @txtcolor; // #04294E; // #384654;
|
||||
@mdAceHeadingColor: @txtcolor; // 1a2026
|
||||
@mdAceBlockquoteColor: @txtcolor;
|
||||
@mdAceCursorColor: @txtcolor;
|
||||
|
||||
textarea#wmd-input {
|
||||
color: @txtcolor !important;
|
||||
}
|
||||
@mdAceTagColor: rgba(87, 108, 130, 0.6);
|
||||
|
||||
#wmd-input {
|
||||
|
||||
&.ace_editor {
|
||||
color: @mdAceTextColor;
|
||||
}
|
||||
&.ace-tm {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
&.ace-tm .ace_marker-layer .ace_active-line {
|
||||
background-color: rgba(89, 128, 166, 0.05);
|
||||
}
|
||||
&.ace-tm .ace_cursor {
|
||||
color: @mdAceCursorColor;
|
||||
}
|
||||
&.insert-mode .ace_cursor {
|
||||
border-color: @mdAceCursorColor !important;
|
||||
}
|
||||
// 左侧的线
|
||||
&.ace-tm .ace_print-margin {
|
||||
background: none;
|
||||
}
|
||||
&.ace-tm .ace_markup.ace_heading {
|
||||
color: @mdAceHeadingColor;
|
||||
font-weight: bold;
|
||||
|
||||
&.ace_1,&.ace_2,&.ace_3,&.ace_4,&.ace_5 {
|
||||
color: @mdAceTagColor;
|
||||
}
|
||||
}
|
||||
|
||||
&.ace-tm .ace_markup.ace_list {
|
||||
color: @txtcolor;
|
||||
}
|
||||
&.ace-tm .ace_constant.ace_language {
|
||||
color: @mdAceTagColor;
|
||||
font-weight: normal;
|
||||
}
|
||||
&.ace-tm .ace_meta.ace_tag {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
&.ace-tm .ace_keyword.ace_operator {
|
||||
color: #384654;
|
||||
background-color: transparent;
|
||||
}
|
||||
&.ace-tm .ace_storage,
|
||||
&.ace-tm .ace_keyword {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
font-weight: bold;
|
||||
}
|
||||
&.ace-tm .ace_entity.ace_name.ace_function {
|
||||
color: #1a2026;
|
||||
}
|
||||
&.ace-tm .ace_string {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
&.ace-tm .ace_invalid {
|
||||
color: inherit;
|
||||
background: inherit;
|
||||
}
|
||||
&.ace-tm .ace_strong {
|
||||
color: @txtcolor;
|
||||
font-weight: bold;
|
||||
}
|
||||
&.ace-tm .ace_emphasis {
|
||||
color: @txtcolor;
|
||||
}
|
||||
&.ace-tm .ace_blockquote {
|
||||
color: @mdAceBlockquoteColor;
|
||||
}
|
||||
&.ace-tm .ace_code {
|
||||
color: @txtcolor;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
&.ace-tm .ace_code_block {
|
||||
color: @txtcolor;
|
||||
}
|
||||
&.ace-tm .ace_link {
|
||||
color: #576c82;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
&.ace-tm .ace_description {
|
||||
color: #576c82;
|
||||
}
|
||||
&.ace-tm .ace_constant {
|
||||
color: #384654;
|
||||
}
|
||||
&.ace-tm .ace_comment {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
// vim cursor
|
||||
&.normal-mode .ace_cursor {
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
// emacs cursor
|
||||
&.emacs-mode .ace_cursor {
|
||||
border: 2px rgba(101, 189, 119, 0.8) solid !important;
|
||||
background-color: rgb(101, 189, 119, 0.9);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -329,6 +329,108 @@ body.writting .info-toolbar {
|
||||
background-color: #000;
|
||||
color: #000;
|
||||
}
|
||||
textarea#wmd-input {
|
||||
color: #c2c2c2 !important;
|
||||
}
|
||||
#wmd-input.ace_editor {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_marker-layer .ace_active-line {
|
||||
background-color: rgba(89, 128, 166, 0.05);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_cursor {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.insert-mode .ace_cursor {
|
||||
border-color: #c2c2c2 !important;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_print-margin {
|
||||
background: none;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading {
|
||||
color: #c2c2c2;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_1,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_2,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_3,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_4,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_5 {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_list {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant.ace_language {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-weight: normal;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_meta.ace_tag {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_keyword.ace_operator {
|
||||
color: #384654;
|
||||
background-color: transparent;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_storage,
|
||||
#wmd-input.ace-tm .ace_keyword {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_entity.ace_name.ace_function {
|
||||
color: #1a2026;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_string {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_invalid {
|
||||
color: inherit;
|
||||
background: inherit;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_strong {
|
||||
color: #c2c2c2;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_emphasis {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_blockquote {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code {
|
||||
color: #c2c2c2;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code_block {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_link {
|
||||
color: #576c82;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_description {
|
||||
color: #576c82;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant {
|
||||
color: #384654;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_comment {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-style: italic;
|
||||
}
|
||||
#wmd-input.normal-mode .ace_cursor {
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
#wmd-input.emacs-mode .ace_cursor {
|
||||
border: 2px rgba(101, 189, 119, 0.8) solid !important;
|
||||
background-color: #65bd77;
|
||||
}
|
||||
#leftNotebook {
|
||||
background: url(images/left_bg.jpg) no-repeat !important;
|
||||
background-size: 100% auto !important;
|
||||
|
||||
@@ -329,6 +329,108 @@ body.writting .info-toolbar {
|
||||
background-color: #000;
|
||||
color: #000;
|
||||
}
|
||||
textarea#wmd-input {
|
||||
color: #93a1a1 !important;
|
||||
}
|
||||
#wmd-input.ace_editor {
|
||||
color: #93a1a1;
|
||||
}
|
||||
#wmd-input.ace-tm {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_marker-layer .ace_active-line {
|
||||
background-color: rgba(89, 128, 166, 0.05);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_cursor {
|
||||
color: #93a1a1;
|
||||
}
|
||||
#wmd-input.insert-mode .ace_cursor {
|
||||
border-color: #93a1a1 !important;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_print-margin {
|
||||
background: none;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading {
|
||||
color: #93a1a1;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_1,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_2,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_3,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_4,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_5 {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_list {
|
||||
color: #93a1a1;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant.ace_language {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-weight: normal;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_meta.ace_tag {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_keyword.ace_operator {
|
||||
color: #384654;
|
||||
background-color: transparent;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_storage,
|
||||
#wmd-input.ace-tm .ace_keyword {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_entity.ace_name.ace_function {
|
||||
color: #1a2026;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_string {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_invalid {
|
||||
color: inherit;
|
||||
background: inherit;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_strong {
|
||||
color: #93a1a1;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_emphasis {
|
||||
color: #93a1a1;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_blockquote {
|
||||
color: #93a1a1;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code {
|
||||
color: #93a1a1;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code_block {
|
||||
color: #93a1a1;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_link {
|
||||
color: #576c82;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_description {
|
||||
color: #576c82;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant {
|
||||
color: #384654;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_comment {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-style: italic;
|
||||
}
|
||||
#wmd-input.normal-mode .ace_cursor {
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
#wmd-input.emacs-mode .ace_cursor {
|
||||
border: 2px rgba(101, 189, 119, 0.8) solid !important;
|
||||
background-color: #65bd77;
|
||||
}
|
||||
.folderHeader .fa-left,
|
||||
.folderHeader span {
|
||||
color: #3c3c3c;
|
||||
|
||||
@@ -329,6 +329,108 @@ body.writting .info-toolbar {
|
||||
background-color: #000;
|
||||
color: #000;
|
||||
}
|
||||
textarea#wmd-input {
|
||||
color: #c2c2c2 !important;
|
||||
}
|
||||
#wmd-input.ace_editor {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_marker-layer .ace_active-line {
|
||||
background-color: rgba(89, 128, 166, 0.05);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_cursor {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.insert-mode .ace_cursor {
|
||||
border-color: #c2c2c2 !important;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_print-margin {
|
||||
background: none;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading {
|
||||
color: #c2c2c2;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_1,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_2,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_3,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_4,
|
||||
#wmd-input.ace-tm .ace_markup.ace_heading.ace_5 {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_markup.ace_list {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant.ace_language {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-weight: normal;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_meta.ace_tag {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_keyword.ace_operator {
|
||||
color: #384654;
|
||||
background-color: transparent;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_storage,
|
||||
#wmd-input.ace-tm .ace_keyword {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_entity.ace_name.ace_function {
|
||||
color: #1a2026;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_string {
|
||||
color: #384654;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_invalid {
|
||||
color: inherit;
|
||||
background: inherit;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_strong {
|
||||
color: #c2c2c2;
|
||||
font-weight: bold;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_emphasis {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_blockquote {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code {
|
||||
color: #c2c2c2;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_code_block {
|
||||
color: #c2c2c2;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_link {
|
||||
color: #576c82;
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
#wmd-input.ace-tm .ace_description {
|
||||
color: #576c82;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_constant {
|
||||
color: #384654;
|
||||
}
|
||||
#wmd-input.ace-tm .ace_comment {
|
||||
color: rgba(87, 108, 130, 0.6);
|
||||
font-style: italic;
|
||||
}
|
||||
#wmd-input.normal-mode .ace_cursor {
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
#wmd-input.emacs-mode .ace_cursor {
|
||||
border: 2px rgba(101, 189, 119, 0.8) solid !important;
|
||||
background-color: #65bd77;
|
||||
}
|
||||
#leftNotebook {
|
||||
background: url(images/water@2x.jpg) no-repeat !important;
|
||||
background-size: 100% auto !important;
|
||||
|
||||
Reference in New Issue
Block a user