Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

themes: add new felipec theme #3441

Merged
merged 3 commits into from Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Expand Up @@ -9,6 +9,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 @@ -66,6 +67,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/vim-felipec
joshgoebel marked this conversation as resolved.
Show resolved Hide resolved

## Version 11.3.1

Expand Down
103 changes: 103 additions & 0 deletions src/styles/felipec.css
@@ -0,0 +1,103 @@
/*!
* Theme: FelipeC
* Author: (c) 2021 Felipe Contreras <felipe.contreras@gmail.com>
* 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
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