mirror of
https://github.com/ivuorinen/everforest-resources.git
synced 2026-01-26 11:13:59 +00:00
- Add LICENSE file (MIT) - Add CONTRIBUTING.md with generator-first workflow guidelines - Add Makefile with comprehensive development commands - Add .editorconfig for consistent code formatting - Add CHANGELOG.md for version tracking - Remove inconsistent non-variant files that bypassed generator architecture - Fix installation script to use variant-specific paths (prevent config overwriting)
123 lines
2.5 KiB
Plaintext
123 lines
2.5 KiB
Plaintext
# Everforest theme for bat
|
|
# Place this in ~/.config/bat/themes/everforest.tmTheme
|
|
# Then run: bat cache --build
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Everforest</string>
|
|
<key>settings</key>
|
|
<array>
|
|
<dict>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>background</key>
|
|
<string>#f3ead3</string>
|
|
<key>foreground</key>
|
|
<string>#5c6a72</string>
|
|
<key>caret</key>
|
|
<string>#5c6a72</string>
|
|
<key>selection</key>
|
|
<string>#b3c0b0</string>
|
|
<key>selectionForeground</key>
|
|
<string>#5c6a72</string>
|
|
<key>lineHighlight</key>
|
|
<string>#a6b0a0</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Comment</string>
|
|
<key>scope</key>
|
|
<string>comment</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#c0cdb8</string>
|
|
<key>fontStyle</key>
|
|
<string>italic</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>String</string>
|
|
<key>scope</key>
|
|
<string>string</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#a7c080</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Number</string>
|
|
<key>scope</key>
|
|
<string>constant.numeric</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#d699b6</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Keyword</string>
|
|
<key>scope</key>
|
|
<string>keyword</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#e67e80</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Function</string>
|
|
<key>scope</key>
|
|
<string>entity.name.function</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#7fbbb3</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Type</string>
|
|
<key>scope</key>
|
|
<string>entity.name.type</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#dbbc7f</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Variable</string>
|
|
<key>scope</key>
|
|
<string>variable</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#83c092</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Operator</string>
|
|
<key>scope</key>
|
|
<string>keyword.operator</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>foreground</key>
|
|
<string>#e69875</string>
|
|
</dict>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|