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

Added Blue variant as options #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions Flatland Dark.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,19 @@
"tab_height": 34,
"mouse_wheel_switch": false
},
// Tab set blue
{
"class": "tabset_control",
"settings": ["flatland_blue"],
"layer0.texture": "Theme - Flatland/Flatland Dark/tabset-background-blue.png"
},

{
"class": "tabset_control",
"settings": ["mouse_wheel_switches_tabs"],
"mouse_wheel_switch": true
},

// Tab element
{
"class": "tab_control",
Expand All @@ -39,6 +47,14 @@
"layer2.inner_margin": [20, 4],
"layer2.opacity": 0.0
},
// Tab element blue
{
"class": "tab_control",
"settings": ["flatland_blue"],
"layer0.texture": "Theme - Flatland/Flatland Dark/tab-inactive-blue.png",
"layer1.texture": "Theme - Flatland/Flatland Dark/tab-active-blue.png",
"layer2.texture": "Theme - Flatland/Flatland Dark/tab-hover-blue.png",
},
{
// Tab close state
"class": "tab_control",
Expand Down Expand Up @@ -165,6 +181,25 @@
"layer2.texture": "Theme - Flatland/Flatland Dark/square/tab-hover.png"
},

// SQUARE BLUE TABS
{
"class": "tabset_control",
"settings": ["flatland_blue_square_tabs"],
"layer0.texture": "Theme - Flatland/Flatland Dark/square-blue/tabset-background.png",
"content_margin": [0, 0, 0, 0]
// "tab_overlap": 5
},
{
"class": "tab_control",
"settings": ["flatland_blue_square_tabs"],
// Inactive tab settings
"layer0.texture": "Theme - Flatland/Flatland Dark/square-blue/tab-inactive.png",
// Active tab setting
"layer1.texture": "Theme - Flatland/Flatland Dark/square-blue/tab-active.png",
// Hover tab setting
"layer2.texture": "Theme - Flatland/Flatland Dark/square-blue/tab-hover.png"
},

//
// FOLD BUTTONS
//
Expand Down Expand Up @@ -442,6 +477,12 @@
"layer0.opacity": 0.0,
"layer0.inner_margin": [1,1]
},
// Sidebar rows blue
{
"class": "tree_row",
"settings": ["flatland_blue"],
"layer0.texture": "Theme - Flatland/Flatland Dark/sidebar-row-selected-blue.png",
},
// Sidebar row selected
{
"class": "tree_row",
Expand Down
Binary file added Flatland Dark/sidebar-row-selected-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Flatland Dark/square-blue/tab-active.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Flatland Dark/square-blue/tab-hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Flatland Dark/square-blue/tab-inactive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Flatland Dark/tab-active-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Flatland Dark/tab-hover-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Flatland Dark/tab-inactive-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Flatland Dark/tabset-background-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ The following options can be set in your user preferences:
// square file tabs instead of rounded corners
"flatland_square_tabs": true,

// blue version of flatland
"flatland_blue": true,

// blue square file tabs instead of rounded corners
"flatland_blue": true,
"flatland_blue_square_tabs": true,

// Monokai color scheme (SublimeText's default) with Flatland background color
"color_scheme": "Packages/Theme - Flatland/Flatland Monokai.tmTheme"
}
Expand Down