Skip to content

Commit

Permalink
fix: Added two tmthemes gruvbox dark (hard) and light (hard)
Browse files Browse the repository at this point in the history
Added two tmthemes gruvbox dark (hard) and light (hard)

#3673 from stuples/theme_gruvbox
  • Loading branch information
andrewnester authored Jun 28, 2022
2 parents 451f915 + f03ae9d commit 6b1e67f
Show file tree
Hide file tree
Showing 7 changed files with 3,416 additions and 0 deletions.
159 changes: 159 additions & 0 deletions lib/ace/theme/gruvbox_dark_hard.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
.ace-gruvbox-dark-hard .ace_gutter {
background: #1d2021;
color: rgb(132,126,106)
}

.ace-gruvbox-dark-hard .ace_print-margin {
width: 1px;
background: #e8e8e8
}

.ace-gruvbox-dark-hard {
background-color: #1d2021;
color: rgba(235, 219, 178, 0.50)
}

.ace-gruvbox-dark-hard .ace_cursor {
color: #a89984
}

.ace-gruvbox-dark-hard .ace_marker-layer .ace_selection {
background: #3c3836
}

.ace-gruvbox-dark-hard.ace_multiselect .ace_selection.ace_start {
box-shadow: 0 0 3px 0px #1d2021;
border-radius: 2px
}

.ace-gruvbox-dark-hard .ace_marker-layer .ace_step {
background: rgb(198, 219, 174)
}

.ace-gruvbox-dark-hard .ace_marker-layer .ace_bracket {
margin: -1px 0 0 -1px;
border: 1px solid rgba(235, 219, 178, 0.15)
}

.ace-gruvbox-dark-hard .ace_marker-layer .ace_active-line {
background: #3c3836
}

.ace-gruvbox-dark-hard .ace_gutter-active-line {
background-color: #3c3836
}

.ace-gruvbox-dark-hard .ace_marker-layer .ace_selected-word {
border: 1px solid #3c3836
}

.ace-gruvbox-dark-hard .ace_fold {
background-color: #b8bb26;
border-color: rgba(235, 219, 178, 0.50)
}

.ace-gruvbox-dark-hard .ace_keyword {
color: #fb4934
}

.ace-gruvbox-dark-hard .ace_keyword.ace_operator {
color: #8ec07c
}

.ace-gruvbox-dark-hard .ace_keyword.ace_other.ace_unit {
color: #b16286
}

.ace-gruvbox-dark-hard .ace_constant {
color: #d3869b
}

.ace-gruvbox-dark-hard .ace_constant.ace_numeric {
color: #d3869b
}

.ace-gruvbox-dark-hard .ace_constant.ace_character.ace_escape {
color: #fb4934
}

.ace-gruvbox-dark-hard .ace_constant.ace_other {
color: #d3869b
}

.ace-gruvbox-dark-hard .ace_support.ace_function {
color: #8ec07c
}

.ace-gruvbox-dark-hard .ace_support.ace_constant {
color: #d3869b
}

.ace-gruvbox-dark-hard .ace_support.ace_constant.ace_property-value {
color: #f9f5d7
}

.ace-gruvbox-dark-hard .ace_support.ace_class {
color: #fabd2f
}

.ace-gruvbox-dark-hard .ace_support.ace_type {
color: #fabd2f
}

.ace-gruvbox-dark-hard .ace_storage {
color: #fb4934
}

.ace-gruvbox-dark-hard .ace_invalid {
color: #f9f5d7;
background-color: #fb4934
}

.ace-gruvbox-dark-hard .ace_string {
color: #b8bb26
}

.ace-gruvbox-dark-hard .ace_string.ace_regexp {
color: #b8bb26
}

.ace-gruvbox-dark-hard .ace_comment {
font-style: italic;
color: #928374
}

.ace-gruvbox-dark-hard .ace_variable {
color: #83a598
}

.ace-gruvbox-dark-hard .ace_variable.ace_language {
color: #d3869b
}

.ace-gruvbox-dark-hard .ace_variable.ace_parameter {
color: #f9f5d7
}

.ace-gruvbox-dark-hard .ace_meta.ace_tag {
color: #f9f5d7
}

.ace-gruvbox-dark-hard .ace_entity.ace_other.ace_attribute-name {
color: #fabd2f
}

.ace-gruvbox-dark-hard .ace_entity.ace_name.ace_function {
color: #b8bb26
}

.ace-gruvbox-dark-hard .ace_entity.ace_name.ace_tag {
color: #83a598
}

.ace-gruvbox-dark-hard .ace_markup.ace_heading {
color: #b8bb26
}

.ace-gruvbox-dark-hard .ace_markup.ace_list {
color: #83a598
}
39 changes: 39 additions & 0 deletions lib/ace/theme/gruvbox_dark_hard.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/* ***** BEGIN LICENSE BLOCK *****
* Distributed under the BSD license:
*
* Copyright (c) 2010, Ajax.org B.V.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Ajax.org B.V. nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* ***** END LICENSE BLOCK ***** */

define(function(require, exports, module) {

exports.isDark = true;
exports.cssClass = "ace-gruvbox-dark-hard";
exports.cssText = require("../requirejs/text!./gruvbox_dark_hard.css");

var dom = require("../lib/dom");
dom.importCssString(exports.cssText, exports.cssClass);
});
159 changes: 159 additions & 0 deletions lib/ace/theme/gruvbox_light_hard.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
.ace-gruvbox-light-hard .ace_gutter {
background: #f9f5d7;
color: rgb(155,151,135)
}

.ace-gruvbox-light-hard .ace_print-margin {
width: 1px;
background: #e8e8e8
}

.ace-gruvbox-light-hard {
background-color: #f9f5d7;
color: rgba(60, 56, 54, 0.50)
}

.ace-gruvbox-light-hard .ace_cursor {
color: #7c6f64
}

.ace-gruvbox-light-hard .ace_marker-layer .ace_selection {
background: #ebdbb2
}

.ace-gruvbox-light-hard.ace_multiselect .ace_selection.ace_start {
box-shadow: 0 0 3px 0px #f9f5d7;
border-radius: 2px
}

.ace-gruvbox-light-hard .ace_marker-layer .ace_step {
background: rgb(198, 219, 174)
}

.ace-gruvbox-light-hard .ace_marker-layer .ace_bracket {
margin: -1px 0 0 -1px;
border: 1px solid rgba(60, 56, 54, 0.15)
}

.ace-gruvbox-light-hard .ace_marker-layer .ace_active-line {
background: #ebdbb2
}

.ace-gruvbox-light-hard .ace_gutter-active-line {
background-color: #ebdbb2
}

.ace-gruvbox-light-hard .ace_marker-layer .ace_selected-word {
border: 1px solid #ebdbb2
}

.ace-gruvbox-light-hard .ace_fold {
background-color: #79740e;
border-color: rgba(60, 56, 54, 0.50)
}

.ace-gruvbox-light-hard .ace_keyword {
color: #9d0006
}

.ace-gruvbox-light-hard .ace_keyword.ace_operator {
color: #427b58
}

.ace-gruvbox-light-hard .ace_keyword.ace_other.ace_unit {
color: #b16286
}

.ace-gruvbox-light-hard .ace_constant {
color: #8f3f71
}

.ace-gruvbox-light-hard .ace_constant.ace_numeric {
color: #8f3f71
}

.ace-gruvbox-light-hard .ace_constant.ace_character.ace_escape {
color: #9d0006
}

.ace-gruvbox-light-hard .ace_constant.ace_other {
color: #8f3f71
}

.ace-gruvbox-light-hard .ace_support.ace_function {
color: #427b58
}

.ace-gruvbox-light-hard .ace_support.ace_constant {
color: #8f3f71
}

.ace-gruvbox-light-hard .ace_support.ace_constant.ace_property-value {
color: #1d2021
}

.ace-gruvbox-light-hard .ace_support.ace_class {
color: #b57614
}

.ace-gruvbox-light-hard .ace_support.ace_type {
color: #b57614
}

.ace-gruvbox-light-hard .ace_storage {
color: #9d0006
}

.ace-gruvbox-light-hard .ace_invalid {
color: #1d2021;
background-color: #9d0006
}

.ace-gruvbox-light-hard .ace_string {
color: #79740e
}

.ace-gruvbox-light-hard .ace_string.ace_regexp {
color: #79740e
}

.ace-gruvbox-light-hard .ace_comment {
font-style: italic;
color: #928374
}

.ace-gruvbox-light-hard .ace_variable {
color: #076678
}

.ace-gruvbox-light-hard .ace_variable.ace_language {
color: #8f3f71
}

.ace-gruvbox-light-hard .ace_variable.ace_parameter {
color: #1d2021
}

.ace-gruvbox-light-hard .ace_meta.ace_tag {
color: #1d2021
}

.ace-gruvbox-light-hard .ace_entity.ace_other.ace_attribute-name {
color: #b57614
}

.ace-gruvbox-light-hard .ace_entity.ace_name.ace_function {
color: #79740e
}

.ace-gruvbox-light-hard .ace_entity.ace_name.ace_tag {
color: #076678
}

.ace-gruvbox-light-hard .ace_markup.ace_heading {
color: #79740e
}

.ace-gruvbox-light-hard .ace_markup.ace_list {
color: #076678
}
Loading

0 comments on commit 6b1e67f

Please sign in to comment.