Theme - itg.flat
A flat theme for Sublime Text that supports both retina and non-retina.
Details
Installs
- Total 116K
- Win 65K
- Mac 34K
- Linux 17K
Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 7 | 7 | 5 | 3 | 7 | 7 | 6 | 8 | 9 | 8 | 3 | 6 | 3 | 8 | 8 | 4 | 8 | 7 | 11 | 7 | 7 | 6 | 8 | 5 | 4 | 5 | 5 | 2 | 3 | 4 | 6 | 3 | 2 | 8 | 4 | 5 | 7 | 3 | 4 | 5 | 3 | 5 | 4 | 7 | 7 | 8 |
Mac | 1 | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 2 | 1 | 2 | 0 | 2 | 1 | 2 | 0 | 1 | 0 | 1 | 2 | 1 | 2 | 2 | 2 | 2 | 1 | 3 | 2 | 0 | 1 | 4 | 2 | 1 | 2 | 0 | 0 | 1 | 2 | 2 | 0 | 2 | 1 | 5 | 1 | 6 | 1 |
Linux | 0 | 0 | 0 | 1 | 2 | 2 | 2 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 2 | 0 | 1 | 1 | 2 | 3 | 0 | 0 | 1 | 1 | 2 | 1 | 5 | 2 | 1 | 0 | 1 | 2 | 0 | 1 | 0 | 1 | 2 |
Readme
- Source
- raw.githubusercontent.com
Theme - itg.flat

NOTE: Currently looking for a new maintainer for this package. Not currently maintained.
Update: Sublime text 2 and 3 now supported.
Here it is
My flat, retina friendly, sublime-theme. It comes in two flavors, Dark and Light. I'll be adding more color variations over the coming weeks, so stay tuned. Read more about it
Installation is a snap. Once you have Package Control installed, you just need to follow the instructions below.
I hope you enjoy it. I'd love to hear your thoughts.
Dark
Light
Installation
Using Sublime Package Control
If you are using sublime package control, you can install directly from the Package Control: Install Package
menu item.
The theme is listed as Theme - itg.flat
in the packages list.
Enabling the theme
To enable the theme and adjust theme settings edit your Preferences.sublime-settings
file:
// for a dark theme use:
"theme": "itg.flat.dark.sublime-theme"
// for a light theme use:
"theme": "itg.flat.light.sublime-theme"
// additional (dark) color options
"theme": "itg.flat.dark.aqua.sublime-theme"
"theme": "itg.flat.dark.blue.sublime-theme"
"theme": "itg.flat.dark.green.sublime-theme"
"theme": "itg.flat.dark.orange.sublime-theme"
"theme": "itg.flat.dark.yellow.sublime-theme"
// additional (light) color options
"theme": "itg.flat.light.aqua.sublime-theme"
"theme": "itg.flat.light.blue.sublime-theme"
"theme": "itg.flat.light.green.sublime-theme"
"theme": "itg.flat.light.orange.sublime-theme"
"theme": "itg.flat.light.yellow.sublime-theme"
Enabling the custom Syntax Highlighting
Select a theme from Preferences > Color Scheme > Theme - itg.flat
:
or add this to your Preferences.sublime-settings
file:
// for a dark theme use:
"color_scheme": "Packages/Theme - itg.flat/itg.dark.tmTheme",
// for a light theme use:
"color_scheme": "Packages/Theme - itg.flat/itg.light.tmTheme",
Additional Settings:
// small tabs
"itg_small_tabs": true
// Sidebar padding options
"itg_sidebar_tree_xsmall": true
"itg_sidebar_tree_small": true
"itg_sidebar_tree_medium": true
"itg_sidebar_tree_large": true
"itg_sidebar_tree_xlarge": true
// Scrollbar size options
"itg_scrollbar_small": true
"itg_scrollbar_medium": true
// if the scrollbar options aren't working, try setting the following
"overlay_scroll_bars": "disabled"
Contributing
- fork this repo
- run
npm install
- edit the existing
src/colors/**/*.js
files or create a new one - run
gulp compile
- run
npm test
and verify all the tests are passing - submit a pull request to the development branch
Note: If adding anything to
itg.flat.mustache
make sure to also add those updates to the files in thetest/templates/
folder.
Tests
- fork this repo
- run
npm install
- run
npm test