forked from material-theme/vsc-material-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Preferences.sublime-settings
151 lines (105 loc) · 3.98 KB
/
Preferences.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// =============================================================================
// MATERIAL THEME PREFERENCES
// =============================================================================
// Source: https://github.com/equinusocio/material-theme#theme-options
// All options are disabled by default, that's why you should place your
// settings in the "Packages/User/Preferences.sublime-settings" file,
// which overrides the settings in here, and change `false` -> `true`.
// Settings may also be placed in syntax-specific setting files, for
// example, in Packages/User/Python.sublime-settings for python files.
// Table of Contents
// -----------------------------------------------------------------------------
// Use https://github.com/kizza/Table-of-comments for the quick navigation
// 1 Global
// 1.1 Accent
// 1.2 Panels
// 1.3 Sidebar
// 1.4 Tabs
{
// > 1 Global
// -----------------------------------
// Global options enable you to control some aspects of UI appearance at once.
// Generally, there are four kinds of global options which you can use:
//
// >> 1.1 Accent
// Choose one option from this section
// Set acid-lime accent color
"material_theme_accent_acid-lime": false,
// Set blue accent color
"material_theme_accent_blue": false,
// Set Breaking Bad green accent color
"material_theme_accent_brba": false,
// Set bright-teal accent color
"material_theme_accent_bright-teal": false,
// Set cyan accent color
"material_theme_accent_cyan": false,
// Set graphite accent color
"material_theme_accent_graphite": false,
// Set indigo accent color
"material_theme_accent_indigo": false,
// Set lime green accent color
"material_theme_accent_lime": false,
// Set orange accent color
"material_theme_accent_orange": false,
// Set pink accent color
"material_theme_accent_pink": false,
// Set purple accent color
"material_theme_accent_purple": false,
// Set pale red accent color
"material_theme_accent_red": false,
// Set bright-cyan accent color
"material_theme_accent_sky": false,
// Set tomato red accent color
"material_theme_accent_tomato": false,
// Set yellow accent color
"material_theme_accent_yellow": false,
//
// >> 1.2 Panels
// Choose one option from this section
// Enable accent color for scrollbars
"material_theme_accent_scrollbars": false,
// Enable accent color for titlebar
"material_theme_accent_titlebar": false,
// Enable bright scrollbars puck color
"material_theme_bright_scrollbars": false,
// Set minimal padding for the search panel
"material_theme_compact_panel": false,
// Enable sidebar and panels contrast mode
"material_theme_contrast_mode": false,
// Show bottom panel separator
"material_theme_panel_separator": false,
// Set small status bar
"material_theme_small_statusbar": false,
// Enable title bar (OS X 10.10+)
"material_theme_titlebar": false,
//
// >> 1.3 Sidebar
// Choose one option from this section
// Replace folder icons with arrows
"material_theme_arrow_folders": false,
// Show bigger file type icons
"material_theme_big_fileicons": false,
// Set a bullet as active tree indicator
"material_theme_bullet_tree_indicator": false,
// Set compact sidebar
"material_theme_compact_sidebar": false,
// Hide sidebar file type icons
"material_theme_disable_fileicons": false,
// Disable folder animation
"material_theme_disable_folder_animation": false,
// Disable sidebar file indicator
"material_theme_disable_tree_indicator": false,
// Show sidebar headings (only with Material Theme - Appbar)
"material_theme_tree_headings": false,
//
// >> 1.4 Tabs
// Choose one option from this section
// Make the tab labels bolder
"material_theme_bold_tab": false,
// Set small tabs
"material_theme_small_tab": false,
// Enable autowidth for tabs
"material_theme_tabs_autowidth": false,
// Show tabs separator, this disables tab hover animation
"material_theme_tabs_separator": false
}