Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Themes:
- `Default` is now much closer WCAG AA (contrast) (#3402) [Josh Goebel]
- `Dark` now meets WCAG AA (contrast) (#3402) [Josh Goebel]
- Added `intellij-light` theme [Pegasis]
- Added `felipec` theme [Felipe Contreras]

These changes should be for the better and should not be super noticeable but if you're super picky about your colors you may want to intervene here or copy over the older themes from 11.3 or prior.

Expand Down Expand Up @@ -71,6 +72,7 @@ Themes:
[Matthieu Lempereur]: https://github.com/MrYamous
[idleberg]: https://github.com/idleberg
[Fons van der Plas]: https://github.com/fonsp
[Felipe Contreras]: https://github.com/felipec

## Version 11.3.1

Expand Down
103 changes: 103 additions & 0 deletions src/styles/felipec.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
/*!
* Theme: FelipeC
* Author: (c) 2021 Felipe Contreras <[email protected]>
* Website: https://github.com/felipec/vim-felipec
*
* Autogenerated with vim-felipec's generator.
*/

.hljs {
color: #dddde1;
background: #1e1e22;
}

.hljs::selection,
.hljs ::selection {
color: #1e1e22;
background: #bf8fef;
}

.hljs-comment,
.hljs-code,
.hljs-quote {
color: #888896;
}

.hljs-number,
.hljs-literal,
.hljs-deletion {
color: #ef8f8f;
}

.hljs-punctuation,
.hljs-meta,
.hljs-operator,
.hljs-subst,
.hljs-doctag,
.hljs-template-variable,
.hljs-selector-attr {
color: #efbf8f;
}

.hljs-type {
color: #efef8f;
}

.hljs-tag,
.hljs-title,
.hljs-selector-class,
.hljs-selector-id {
color: #bfef8f;
}

.hljs-string,
.hljs-regexp,
.hljs-addition {
color: #8fef8f;
}

.hljs-class,
.hljs-property {
color: #8fefbf;
}

.hljs-name,
.hljs-selector-tag {
color: #8fefef;
}

.hljs-keyword,
.hljs-built_in {
color: #8fbfef;
}

.hljs-section,
.hljs-bullet {
color: #8f8fef;
}

.hljs-selector-pseudo {
color: #bf8fef;
}

.hljs-variable,
.hljs-params,
.hljs-attr,
.hljs-attribute {
color: #ef8fef;
}

.hljs-symbol,
.hljs-link {
color: #ef8fbf;
}

.hljs-strong,
.hljs-literal,
.hljs-title {
font-weight: bold;
}

.hljs-emphasis {
font-style: italic;
}
1 change: 1 addition & 0 deletions tools/developer.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ <h3>Code</h3>
<option>agate.css</option>
<option>vs.css</option>
<option>far.css</option>
<option>felipec.css</option>
<option>default.css</option>
<option>base16/pico.css</option>
<option>base16/porple.css</option>
Expand Down