Skip to content

blue-mood/blue-mood-micro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Blue Mood for micro

This is a port of emacs's Blue Mood theme for the micro text editor.

Screenshot

Notes

This theme requires a terminal emulator that supports true color1 and micro's true color mode to be enabled for it to look the intended way (the background color for example appears with a radically different color without true color). To enable true color for micro, write export MICRO_TRUECOLOR=1 in your shell config file (e.g. .bashrc,.zshrc e.t.c). Keep in mind that this port doesn't correspond 100% to the original emacs theme, due to the differences of micro's theming system in comparison to emacs's theming system.

Installation & Activation

Manual

  1. Copy the bluemood-tc.micro file to the colorschemes directory: ~/.config/micro/colorschemes (if the folder doesn't exist, create it) or ~/micro/colorschemes .
  2. Start up micro (or restart it if it was open when the file was copied over)
  3. Enter the command mode (with CtrlE) and write set colorscheme bluemood-tc.

1: To check whether your terminal supports true color, paste the following on it and press enter: printf "\x1b[38;2;255;100;0mTRUECOLOR\x1b[0m\n". If TRUECOLOR in orange letters shows up, true color is supported indeed (from this gist, which also includes other tips for true color support in the terminal).