Hivacruz Theme
A dark blue theme and color scheme for Sublime Text 3 and 4.
Details
Installs
- Total 1K
- Win 580
- Mac 256
- Linux 174
May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
Hivacruz Theme for Sublime Text
A dark blue Theme and Color Scheme for Sublime Text 3 and 4 (build 3211 and newer).
The font used in the screenshot is Roboto Mono Nerd Font, Medium, 12px.
Installation
Via Package Control
Tools
→Command Palette...
→Package Control: Install Package
→Hivacruz Theme
.- Go to
Preferences → Theme ...
and pickHivacruz Theme
from the menu. - Go to
Preferences → Color Scheme ...
and pickHivacruz Theme
from the menu.
Manual Installation
- Download the repository to your computer and rename the folder to “Hivacruz Theme”.
- Go to
Preferences → Browse packages
from the main menu. - Copy the folder
Hivacruz Theme
toPackages
(not inside theUser
folder). - Go to
Preferences → Theme ...
and pickHivacruz Theme
from the menu. - Go to
Preferences → Color Scheme ...
and pickHivacruz Theme
from the menu.
File Icons
Hivacruz
supports customization via A File Icon package. Please install it and restart Sublime for a better experience.
Recommended settings
Font
I'm using the Roboto Mono Medium Nerd Font Complete font in my screenshots. On macOS, you can install it with Homebrew, like this:
brew tap homebrew/cask-fonts
brew cask install font-robotomono-nerd-font
For other OSes, you can also find the font file here.
Settings
Here is the my recommended settings for this theme – the ones used in the screenshots. To add them, go to Preferences → Settings
. Add/replace the following lines:
"font_face": "Roboto Mono Medium Nerd Font Complete",
"font_size": 12,
"line_padding_bottom": 1,
"line_padding_top": 1,
"bold_folder_labels": true,
"ensure_newline_at_eof_on_save": true,
"index_files": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true,
"ensure_newline_at_eof_on_save": true,
"caret_style": "blink",
"draw_shadows": false
Custom settings
If you would like to change a few things to make your experience better, you can easily customize the theme and the color scheme on ST4:
Customize the Theme
To change something related to the theme (sidebar, title bar etc):
- Pull up the command palette with cmd/ctrl + shift + p
- Type in
Customize Theme
and press Enter. It will open a new window with two tabs opened: on the left, the default theme values ; on the right, your own customised values.
For example, if you want to change the sidebar font size (which is quite small by default), you can do that:
// Documentation at https://www.sublimetext.com/docs/themes.html
{
"variables":
{
},
"rules":
[
{
"class": "sidebar_label",
"font.size": 13, // increase font size for sidebar folder/files
"font.face": "Fira Code" // changing the font face as well
},
]
}
More infos about Sublime Text theming rules can be found here: https://www.sublimetext.com/docs/themes.html.
Customize the color scheme
To change something related to the color scheme (syntax highlighting of your code):
- Pull up the command palette with cmd/ctrl + shift + p
- Type in
Customize Color scheme
and press Enter. It will open a new window with two tabs opened: on the left, the default color scheme values ; on the right, your own customised values.
For example, if you want to change the Markdown headings color from orange to yellow, you can do:
{
"variables":
{
},
"globals":
{
},
"rules":
[
{
"name": "Markup: Heading Symbols",
"scope": "markup.heading",
"foreground": "#afe61d",
"font_style": "bold"
},
{
"name": "Markdown headings Section",
"scope": "entity.name.section.markdown",
"foreground": "#afe61d"
},
]
}
More informations about color schemes rules can be found here: https://www.sublimetext.com/docs/color_schemes.html.
Contribution
Feel free to submit changes to the theme and color scheme. It's a work in progress and it might lack some features!
Screenshots
Here are some examples of how the color scheme treats popular languages.
Python
PHP
Bash
JS
CSS
HTML
YML
Markdown
## Same theme in other apps
I made similar themes with the same colours for different applications. Here there are:
- Typora Theme: https://github.com/kinoute/typora-hivacruz-theme
- Vim Theme: https://github.com/kinoute/vim-hivacruz-theme
- VSCode Theme: https://github.com/kinoute/vscode-hivacruz-theme
- iTerm2: https://github.com/kinoute/hivacruz-itermcolor
- Nova: https://github.com/kinoute/hivacruz-nova-theme
- Zed: https://github.com/kinoute/zed-hivacruz-theme
Credits
- Created by Yann Defretin.
- Inspired by Coda 2.5's Panic Palette written by Cabel Sasser.
- The File Icons come from the Mooon Light Theme by Samir Ansari.