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

Allow changing tab (label) font-sizes #141

Open
wants to merge 2 commits 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
18 changes: 18 additions & 0 deletions Afterglow-blue.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,24 @@
"settings": ["tabs_label_not_italic"],
"font.italic": false
},
// Tab label font size 12
{
"class": "tab_label",
"settings": ["tab_label_size_12"],
"font.size": 12
},
// Tab label font size 13
{
"class": "tab_label",
"settings": ["tab_label_size_13"],
"font.size": 13
},
// Tab label font size 14
{
"class": "tab_label",
"settings": ["tab_label_size_14"],
"font.size": 14
},

// TAB BUTTONS
//
Expand Down
18 changes: 18 additions & 0 deletions Afterglow-green.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,24 @@
"settings": ["tabs_label_not_italic"],
"font.italic": false
},
// Tab label font size 12
{
"class": "tab_label",
"settings": ["tab_label_size_12"],
"font.size": 12
},
// Tab label font size 13
{
"class": "tab_label",
"settings": ["tab_label_size_13"],
"font.size": 13
},
// Tab label font size 14
{
"class": "tab_label",
"settings": ["tab_label_size_14"],
"font.size": 14
},

// TAB BUTTONS
//
Expand Down
18 changes: 18 additions & 0 deletions Afterglow-magenta.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,24 @@
"settings": ["tabs_label_not_italic"],
"font.italic": false
},
// Tab label font size 12
{
"class": "tab_label",
"settings": ["tab_label_size_12"],
"font.size": 12
},
// Tab label font size 13
{
"class": "tab_label",
"settings": ["tab_label_size_13"],
"font.size": 13
},
// Tab label font size 14
{
"class": "tab_label",
"settings": ["tab_label_size_14"],
"font.size": 14
},

// TAB BUTTONS
//
Expand Down
18 changes: 18 additions & 0 deletions Afterglow-orange.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,24 @@
"settings": ["tabs_label_not_italic"],
"font.italic": false
},
// Tab label font size 12
{
"class": "tab_label",
"settings": ["tab_label_size_12"],
"font.size": 12
},
// Tab label font size 13
{
"class": "tab_label",
"settings": ["tab_label_size_13"],
"font.size": 13
},
// Tab label font size 14
{
"class": "tab_label",
"settings": ["tab_label_size_14"],
"font.size": 14
},

// TAB BUTTONS
//
Expand Down
18 changes: 18 additions & 0 deletions Afterglow.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,24 @@
"settings": ["tabs_label_not_italic"],
"font.italic": false
},
// Tab label font size 12
{
"class": "tab_label",
"settings": ["tab_label_size_12"],
"font.size": 12
},
// Tab label font size 13
{
"class": "tab_label",
"settings": ["tab_label_size_13"],
"font.size": 13
},
// Tab label font size 14
{
"class": "tab_label",
"settings": ["tab_label_size_14"],
"font.size": 14
},

// TAB BUTTONS
//
Expand Down
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,33 @@ or
```


#### Tab font size

To **change the font size** (12, 13 or 14; default size is 11) of the tab label, you must add this to your preferences file `Sublime Text -> Preferences -> Settings - User`:

```json
{
"tab_label_size_12": true
}
```

or

```json
{
"tab_label_size_13": true
}
```

or

```json
{
"tab_label_size_14": true
}
```


### Sidebar Size Options

You can change the font size of the sidebar and the row padding.
Expand Down