├── screenshots
├── Summer.png
├── OneDark.png
├── SolarizedDark.png
├── VisualStudioDark.png
├── VisualStudioDark_v2.png
├── VisualStudioBlue(Light).png
└── VisualStudioBlue(Light)_v2.png
├── install_windows.bat
├── install_linux.bash
├── README.md
├── styles
├── Summer.xml
├── VisualStudioDark.xml
├── OneDark.xml
├── VisualStudioDark_v2.xml
├── VisualStudioLight.xml
└── VisualStudioLight_v2.xml
└── themes
├── one-dark.creatortheme
└── solarized-dark.creatortheme
/screenshots/Summer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Raincode/QtCreator-Color-Schemes/HEAD/screenshots/Summer.png
--------------------------------------------------------------------------------
/screenshots/OneDark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Raincode/QtCreator-Color-Schemes/HEAD/screenshots/OneDark.png
--------------------------------------------------------------------------------
/screenshots/SolarizedDark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Raincode/QtCreator-Color-Schemes/HEAD/screenshots/SolarizedDark.png
--------------------------------------------------------------------------------
/screenshots/VisualStudioDark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Raincode/QtCreator-Color-Schemes/HEAD/screenshots/VisualStudioDark.png
--------------------------------------------------------------------------------
/screenshots/VisualStudioDark_v2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Raincode/QtCreator-Color-Schemes/HEAD/screenshots/VisualStudioDark_v2.png
--------------------------------------------------------------------------------
/screenshots/VisualStudioBlue(Light).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Raincode/QtCreator-Color-Schemes/HEAD/screenshots/VisualStudioBlue(Light).png
--------------------------------------------------------------------------------
/screenshots/VisualStudioBlue(Light)_v2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Raincode/QtCreator-Color-Schemes/HEAD/screenshots/VisualStudioBlue(Light)_v2.png
--------------------------------------------------------------------------------
/install_windows.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 |
3 | set "QT_DIR=%USERPROFILE%\AppData\Roaming\QtProject\qtcreator"
4 |
5 | REM Copy styles
6 | xcopy .\styles %QT_DIR%\styles\
7 |
8 | REM Copy themes
9 | xcopy .\themes %QT_DIR%\themes\
10 |
11 | Pause
12 |
--------------------------------------------------------------------------------
/install_linux.bash:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | QT_DIR=~/.config/QtProject/qtcreator
4 |
5 | # Copy styles
6 | mkdir -p $QT_DIR/styles
7 | cp -r ./styles/* $QT_DIR/styles
8 |
9 | # Copy themes
10 | mkdir -p $QT_DIR/themes
11 | cp -r ./themes/* $QT_DIR/themes
12 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Windows
2 | * Paste your color *schemes* into `AppData/Roaming/QtProject/qtcreator/styles`
3 | * Paste your color *themes* into `AppData/Roaming/QtProject/qtcreator/themes`
4 |
5 | Alternatively, you can run the included `install_windows.bat` which does the same thing.
6 |
7 | # Linux
8 | * Paste your color *schemes* into `~/.config/QtProject/qtcreator/styles`
9 | * Paste your color *themes* into `~/.config/QtProject/qtcreator/themes`
10 |
11 | ## Vistual Studio Dark:
12 | 
13 |
14 | ## Visual Studio Dark v2:
15 | The newer version of Visual Studio changed things up a bit. This theme tries to adapt to those changes.
16 | It definitely seems more colorful.
17 |
18 | For a slight variation (if you prefer), color #d8a0df rgb(216,160,223) can be used, e.g., for keywords.
19 | Visual Studio only highlights certain control flow keywords with this color, but not all (e.g., struct, class, ...).
20 | 
21 |
22 | ## Visual Studio Blue (Light):
23 | .png)
24 |
25 | ## Visual Studio Blue (Light) v2:
26 | Similarly to the Visual Studio Dark Theme, there are minor adjustments made in newer versions.
27 | Variation color: #8f08c4 rgb(143, 8,196) (see Visual Studio Dark v2)
28 | _v2.png)
29 |
30 | ## Summer:
31 | 
32 |
33 | ## One Dark (Atom)
34 | Works best with One Dark QtCreator Theme and an environment color like #313848
35 | 
36 |
37 | ## Solarized Dark
38 | Comes included in QtCreator, but without a matching QtCreator theme (themes/solarized-dark.creatortheme).
39 | Recommended environment color for this theme: #0096c8 (or similar)
40 | 
41 |
--------------------------------------------------------------------------------
/styles/Summer.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/styles/VisualStudioDark.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/styles/OneDark.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/styles/VisualStudioDark_v2.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/styles/VisualStudioLight.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/styles/VisualStudioLight_v2.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/themes/one-dark.creatortheme:
--------------------------------------------------------------------------------
1 | [General]
2 | ThemeName=One Dark
3 | PreferredStyles=Fusion
4 | DefaultTextEditorColorScheme=creator-dark.xml
5 |
6 | [Palette]
7 | shadowBackground=ff21252B
8 | text=ffd0d0d0
9 | textDisabled=60a4a6a8
10 | toolBarItem=b6fbfdff
11 | toolBarItemDisabled=60a4a6a8
12 | fancyBarsNormalTextColor=ffd0d0d0
13 | fancyBarsBoldTextColor=b6fbfdff
14 | hoverBackground=22ffffff
15 | selectedBackground=66000000
16 | normalBackground=ff21252B
17 | alternateBackground=ff353637
18 | error=ffdf4f4f
19 | warning=ffecbc1c
20 | splitter=ff06080A
21 | textColorLink=ff007af4
22 | textColorLinkVisited=ffa57aff
23 | backgroundColorDisabled=ff444444
24 | qmlDesignerButtonColor=ff4c4e50
25 |
26 | [Colors]
27 | BackgroundColorAlternate=alternateBackground
28 | BackgroundColorDark=normalBackground
29 | BackgroundColorHover=hoverBackground
30 | BackgroundColorNormal=normalBackground
31 | BackgroundColorDisabled=backgroundColorDisabled
32 | BackgroundColorSelected=selectedBackground
33 | BadgeLabelBackgroundColorChecked=ffe0e0e0
34 | BadgeLabelBackgroundColorUnchecked=ff808080
35 | BadgeLabelTextColorChecked=ff606060
36 | BadgeLabelTextColorUnchecked=ffffffff
37 | CanceledSearchTextColor=ff0000
38 | ComboBoxArrowColor=toolBarItem
39 | ComboBoxArrowColorDisabled=toolBarItemDisabled
40 | ComboBoxTextColor=fancyBarsNormalTextColor
41 | DetailsButtonBackgroundColorHover=22ffffff
42 | DetailsWidgetBackgroundColor=18ffffff
43 | DockWidgetResizeHandleColor=splitter
44 | DoubleTabWidget1stSeparatorColor=splitter
45 | DoubleTabWidget1stTabActiveTextColor=text
46 | DoubleTabWidget1stTabBackgroundColor=ff505050
47 | DoubleTabWidget1stTabInactiveTextColor=text
48 | DoubleTabWidget2ndSeparatorColor=toolBarItemDisabled
49 | DoubleTabWidget2ndTabActiveTextColor=text
50 | DoubleTabWidget2ndTabBackgroundColor=selectedBackground
51 | DoubleTabWidget2ndTabInactiveTextColor=text
52 | EditorPlaceholderColor=normalBackground
53 | FancyToolBarSeparatorColor=toolBarItemDisabled
54 | FancyTabBarBackgroundColor=shadowBackground
55 | FancyTabWidgetDisabledSelectedTextColor=toolBarItemDisabled
56 | FancyTabWidgetDisabledUnselectedTextColor=toolBarItemDisabled
57 | FancyTabWidgetEnabledSelectedTextColor=fancyBarsBoldTextColor
58 | FancyTabWidgetEnabledUnselectedTextColor=fancyBarsBoldTextColor
59 | FancyToolButtonHoverColor=hoverBackground
60 | FancyToolButtonSelectedColor=selectedBackground
61 | FutureProgressBackgroundColor=shadowBackground
62 | IconsBaseColor=toolBarItem
63 | IconsDisabledColor=toolBarItemDisabled
64 | IconsInfoColor=ff3099dc
65 | IconsInfoToolBarColor=ff71b2db
66 | IconsWarningColor=warning
67 | IconsWarningToolBarColor=fff2d76e
68 | IconsErrorColor=error
69 | IconsErrorToolBarColor=ffdb6f71
70 | IconsRunColor=ff6da838
71 | IconsRunToolBarColor=ff93be6c
72 | IconsStopColor=ffee6969
73 | IconsStopToolBarColor=ffe27f7f
74 | IconsInterruptColor=ff587ff7
75 | IconsInterruptToolBarColor=ff6a7bc3
76 | IconsDebugColor=toolBarItem
77 | IconsNavigationArrowsColor=ffebc322
78 | IconsBuildHammerHandleColor=ffb06112
79 | IconsBuildHammerHeadColor=ff828384
80 | IconsModeWelcomeActiveColor=ff80c342
81 | IconsModeEditActiveColor=ff99aaef
82 | IconsModeDesignActiveColor=ffbb6000
83 | IconsModeDebugActiveColor=ff99aaef
84 | IconsModeProjectActiveColor=ff80c342
85 | IconsModeAnalyzeActiveColor=ff43adee
86 | IconsModeHelpActiveColor=fff4be04
87 | IconsCodeModelKeywordColor=ff777777
88 | IconsCodeModelClassColor=ffc0b550
89 | IconsCodeModelStructColor=ff53b053
90 | IconsCodeModelFunctionColor=ffd34373
91 | IconsCodeModelVariableColor=ff2bbbcc
92 | IconsCodeModelEnumColor=ffc0b550
93 | IconsCodeModelMacroColor=ff476ba0
94 | IconsCodeModelAttributeColor=ff316511
95 | IconsCodeModelUniformColor=ff994899
96 | IconsCodeModelVaryingColor=ffa08833
97 | IconsCodeModelOverlayBackgroundColor=70000000
98 | IconsCodeModelOverlayForegroundColor=ffd0d0d0
99 | InfoBarBackground=ff505000
100 | InfoBarText=text
101 | MenuBarEmptyAreaBackgroundColor=shadowBackground
102 | MenuBarItemBackgroundColor=shadowBackground
103 | MenuBarItemTextColorDisabled=textDisabled
104 | MenuBarItemTextColorNormal=text
105 | MenuItemTextColorDisabled=textDisabled
106 | MenuItemTextColorNormal=text
107 | MiniProjectTargetSelectorBackgroundColor=shadowBackground
108 | MiniProjectTargetSelectorBorderColor=shadowBackground
109 | MiniProjectTargetSelectorSummaryBackgroundColor=shadowBackground
110 | MiniProjectTargetSelectorTextColor=fancyBarsNormalTextColor
111 | PanelStatusBarBackgroundColor=shadowBackground
112 | PanelsWidgetSeparatorLineColor=000000
113 | PanelTextColorDark=text
114 | PanelTextColorMid=ffa0a0a0
115 | PanelTextColorLight=text
116 | ProgressBarColorError=error
117 | ProgressBarColorFinished=dda4d576
118 | ProgressBarColorNormal=ff999999
119 | ProgressBarTitleColor=fancyBarsBoldTextColor
120 | ProgressBarBackgroundColor=a0606060
121 | SplitterColor=splitter
122 | TextColorDisabled=textDisabled
123 | TextColorError=ffff4040
124 | TextColorHighlight=ffff0000
125 | TextColorHighlightBackground=8a7f2c
126 | TextColorLink=textColorLink
127 | TextColorLinkVisited=textColorLinkVisited
128 | TextColorNormal=text
129 | ToggleButtonBackgroundColor=shadowBackground
130 | ToolBarBackgroundColor=shadowBackground
131 | TreeViewArrowColorNormal=hoverBackground
132 | TreeViewArrowColorSelected=text
133 |
134 | OutputPanes_DebugTextColor=text
135 | OutputPanes_ErrorMessageTextColor=ffff6c6c
136 | OutputPanes_MessageOutput=ff008787
137 | OutputPanes_NormalMessageTextColor=ff008787
138 | OutputPanes_StdErrTextColor=ffff6666
139 | OutputPanes_StdOutTextColor=text
140 | OutputPanes_WarningMessageTextColor=fff3c300
141 | OutputPanes_TestPassTextColor=ff00b400
142 | OutputPanes_TestFailTextColor=ffcf4848
143 | OutputPanes_TestXFailTextColor=ff28dc28
144 | OutputPanes_TestXPassTextColor=ffdc2828
145 | OutputPanes_TestSkipTextColor=ff828282
146 | OutputPanes_TestWarnTextColor=ffc8c800
147 | OutputPanes_TestFatalTextColor=ffc82828
148 | OutputPanes_TestDebugTextColor=ff329696
149 | OutputPaneButtonFlashColor=error
150 | OutputPaneToggleButtonTextColorChecked=fancyBarsNormalTextColor
151 | OutputPaneToggleButtonTextColorUnchecked=fancyBarsNormalTextColor
152 |
153 | Debugger_LogWindow_LogInput=ff00acac
154 | Debugger_LogWindow_LogStatus=ff00875a
155 | Debugger_LogWindow_LogTime=ffbf0303
156 |
157 | Debugger_WatchItem_ValueNormal=text
158 | Debugger_WatchItem_ValueInvalid=textDisabled
159 | Debugger_WatchItem_ValueChanged=ffff6666
160 |
161 | Debugger_Breakpoint_TextMarkColor=ffff4040
162 |
163 | Welcome_TextColor=text
164 | Welcome_ForegroundPrimaryColor=ff999999
165 | Welcome_ForegroundSecondaryColor=ff808080
166 | Welcome_BackgroundColor=normalBackground
167 | Welcome_ButtonBackgroundColor=normalBackground
168 | Welcome_DividerColor=ff555555
169 | Welcome_HoverColor=ff444444
170 | Welcome_LinkColor=ff7fc63c
171 | Welcome_DisabledLinkColor=textDisabled
172 |
173 | Timeline_TextColor=text
174 | Timeline_BackgroundColor1=normalBackground
175 | Timeline_BackgroundColor2=ff444444
176 | Timeline_DividerColor=ff555555
177 | Timeline_HighlightColor=ff3099dc
178 | Timeline_PanelBackgroundColor=ff808080
179 | Timeline_PanelHeaderColor=alternateBackground
180 | Timeline_HandleColor=alternateBackground
181 | Timeline_RangeColor=selectedBackground
182 |
183 | VcsBase_FileStatusUnknown_TextColor=text
184 | VcsBase_FileAdded_TextColor=ff00ff00
185 | VcsBase_FileModified_TextColor=ff8ee0ff
186 | VcsBase_FileDeleted_TextColor=fffff6c6c
187 | VcsBase_FileRenamed_TextColor=ffffa500
188 | VcsBase_FileUnmerged_TextColor=ffff4040
189 |
190 | Bookmarks_TextMarkColor=ff8080ff
191 |
192 | TextEditor_SearchResult_ScrollBarColor=ff00c000
193 | TextEditor_CurrentLine_ScrollBarColor=ffffffff
194 |
195 | ProjectExplorer_TaskError_TextMarkColor=error
196 | ProjectExplorer_TaskWarn_TextMarkColor=warning
197 |
198 | CodeModel_Error_TextMarkColor=error
199 | CodeModel_Warning_TextMarkColor=warning
200 |
201 | QmlDesigner_BackgroundColor=qmlDesignerButtonColor
202 | QmlDesigner_HighlightColor=ff3f91c4
203 | QmlDesigner_FormEditorSelectionColor=ff4ba2ff
204 | QmlDesigner_FormEditorForegroundColor=ffffffff
205 | QmlDesigner_BackgroundColorDarkAlternate=qmlDesignerButtonColor
206 | QmlDesigner_BackgroundColorDarker=ff262728
207 | QmlDesigner_BorderColor=splitter
208 | QmlDesigner_ButtonColor=ff595b5c
209 | QmlDesigner_TabDark=shadowBackground
210 | QmlDesigner_TabLight=text
211 | QmlDesigner_FormeditorBackgroundColor=qmlDesignerButtonColor
212 | QmlDesigner_AlternateBackgroundColor=qmlDesignerButtonColor
213 | QmlDesigner_ScrollBarHandleColor=ff595b5c
214 |
215 | PaletteWindow=normalBackground
216 | PaletteWindowText=text
217 | PaletteBase=normalBackground
218 | PaletteAlternateBase=alternateBackground
219 | PaletteButton=shadowBackground
220 | PaletteBrightText=ffff3333
221 | PaletteText=text
222 | PaletteButtonText=text
223 | PaletteButtonTextDisabled=textDisabled
224 | PaletteToolTipBase=selectedBackground
225 | PaletteHighlight=selectedBackground
226 | PaletteDark=shadowBackground
227 | PaletteHighlightedText=ffffffff
228 | PaletteToolTipText=text
229 | PaletteLink=textColorLink
230 | PaletteLinkVisited=textColorLinkVisited
231 | PaletteWindowDisabled=backgroundColorDisabled
232 | PaletteWindowTextDisabled=textDisabled
233 | PaletteBaseDisabled=backgroundColorDisabled
234 | PaletteTextDisabled=textDisabled
235 |
236 | [Flags]
237 | ComboBoxDrawTextShadow=false
238 | DerivePaletteFromTheme=true
239 | DrawIndicatorBranch=true
240 | DrawSearchResultWidgetFrame=false
241 | DrawTargetSelectorBottom=false
242 | DrawToolBarHighlights=false
243 | DrawToolBarBorders=false
244 | ApplyThemePaletteGlobally=true
245 | FlatToolBars=true
246 | FlatSideBarIcons=true
247 | FlatProjectsMode=true
248 | FlatMenuBar=true
249 | ToolBarIconShadow=true
250 | WindowColorAsBase=false
251 | DarkUserInterface=true
252 |
253 | [Gradients]
254 | DetailsWidgetHeaderGradient\1\color=00000000
255 | DetailsWidgetHeaderGradient\1\pos=1
256 | DetailsWidgetHeaderGradient\size=1
257 |
--------------------------------------------------------------------------------
/themes/solarized-dark.creatortheme:
--------------------------------------------------------------------------------
1 | [General]
2 | ThemeName=Solarized Dark
3 | PreferredStyles=Fusion
4 | DefaultTextEditorColorScheme=creator-dark.xml
5 |
6 | [Palette]
7 | shadowBackground=ff00212B
8 | text=ffd0d0d0
9 | textDisabled=60a4a6a8
10 | toolBarItem=b6fbfdff
11 | toolBarItemDisabled=60a4a6a8
12 | fancyBarsNormalTextColor=ffd0d0d0
13 | fancyBarsBoldTextColor=b6fbfdff
14 | hoverBackground=22ffffff
15 | selectedBackground=66000000
16 | normalBackground=ff00212B
17 | alternateBackground=ff353637
18 | error=ffdf4f4f
19 | warning=ffecbc1c
20 | splitter=ff06080A
21 | textColorLink=ff007af4
22 | textColorLinkVisited=ffa57aff
23 | backgroundColorDisabled=ff444444
24 | qmlDesignerButtonColor=ff4c4e50
25 |
26 | [Colors]
27 | BackgroundColorAlternate=alternateBackground
28 | BackgroundColorDark=shadowBackground
29 | BackgroundColorHover=hoverBackground
30 | BackgroundColorNormal=normalBackground
31 | BackgroundColorDisabled=backgroundColorDisabled
32 | BackgroundColorSelected=selectedBackground
33 | BadgeLabelBackgroundColorChecked=ffe0e0e0
34 | BadgeLabelBackgroundColorUnchecked=ff808080
35 | BadgeLabelTextColorChecked=ff606060
36 | BadgeLabelTextColorUnchecked=ffffffff
37 | CanceledSearchTextColor=ff0000
38 | ComboBoxArrowColor=toolBarItem
39 | ComboBoxArrowColorDisabled=toolBarItemDisabled
40 | ComboBoxTextColor=fancyBarsNormalTextColor
41 | DetailsButtonBackgroundColorHover=22ffffff
42 | DetailsWidgetBackgroundColor=18ffffff
43 | DockWidgetResizeHandleColor=splitter
44 | DoubleTabWidget1stSeparatorColor=splitter
45 | DoubleTabWidget1stTabActiveTextColor=text
46 | DoubleTabWidget1stTabBackgroundColor=ff505050
47 | DoubleTabWidget1stTabInactiveTextColor=text
48 | DoubleTabWidget2ndSeparatorColor=toolBarItemDisabled
49 | DoubleTabWidget2ndTabActiveTextColor=text
50 | DoubleTabWidget2ndTabBackgroundColor=selectedBackground
51 | DoubleTabWidget2ndTabInactiveTextColor=text
52 | EditorPlaceholderColor=normalBackground
53 | FancyToolBarSeparatorColor=toolBarItemDisabled
54 | FancyTabBarBackgroundColor=shadowBackground
55 | FancyTabWidgetDisabledSelectedTextColor=toolBarItemDisabled
56 | FancyTabWidgetDisabledUnselectedTextColor=toolBarItemDisabled
57 | FancyTabWidgetEnabledSelectedTextColor=fancyBarsBoldTextColor
58 | FancyTabWidgetEnabledUnselectedTextColor=fancyBarsBoldTextColor
59 | FancyToolButtonHoverColor=hoverBackground
60 | FancyToolButtonSelectedColor=selectedBackground
61 | FutureProgressBackgroundColor=shadowBackground
62 | IconsBaseColor=toolBarItem
63 | IconsDisabledColor=toolBarItemDisabled
64 | IconsInfoColor=ff3099dc
65 | IconsInfoToolBarColor=ff71b2db
66 | IconsWarningColor=warning
67 | IconsWarningToolBarColor=fff2d76e
68 | IconsErrorColor=error
69 | IconsErrorToolBarColor=ffdb6f71
70 | IconsRunColor=ff6da838
71 | IconsRunToolBarColor=ff93be6c
72 | IconsStopColor=ffee6969
73 | IconsStopToolBarColor=ffe27f7f
74 | IconsInterruptColor=ff587ff7
75 | IconsInterruptToolBarColor=ff6a7bc3
76 | IconsDebugColor=toolBarItem
77 | IconsNavigationArrowsColor=ffebc322
78 | IconsBuildHammerHandleColor=ffb06112
79 | IconsBuildHammerHeadColor=ff828384
80 | IconsModeWelcomeActiveColor=ff80c342
81 | IconsModeEditActiveColor=ff99aaef
82 | IconsModeDesignActiveColor=ffbb6000
83 | IconsModeDebugActiveColor=ff99aaef
84 | IconsModeProjectActiveColor=ff80c342
85 | IconsModeAnalyzeActiveColor=ff43adee
86 | IconsModeHelpActiveColor=fff4be04
87 | IconsCodeModelKeywordColor=ff777777
88 | IconsCodeModelClassColor=ffc0b550
89 | IconsCodeModelStructColor=ff53b053
90 | IconsCodeModelFunctionColor=ffd34373
91 | IconsCodeModelVariableColor=ff2bbbcc
92 | IconsCodeModelEnumColor=ffc0b550
93 | IconsCodeModelMacroColor=ff476ba0
94 | IconsCodeModelAttributeColor=ff316511
95 | IconsCodeModelUniformColor=ff994899
96 | IconsCodeModelVaryingColor=ffa08833
97 | IconsCodeModelOverlayBackgroundColor=70000000
98 | IconsCodeModelOverlayForegroundColor=ffd0d0d0
99 | InfoBarBackground=ff505000
100 | InfoBarText=text
101 | MenuBarEmptyAreaBackgroundColor=shadowBackground
102 | MenuBarItemBackgroundColor=shadowBackground
103 | MenuBarItemTextColorDisabled=textDisabled
104 | MenuBarItemTextColorNormal=text
105 | MenuItemTextColorDisabled=textDisabled
106 | MenuItemTextColorNormal=text
107 | MiniProjectTargetSelectorBackgroundColor=shadowBackground
108 | MiniProjectTargetSelectorBorderColor=shadowBackground
109 | MiniProjectTargetSelectorSummaryBackgroundColor=shadowBackground
110 | MiniProjectTargetSelectorTextColor=fancyBarsNormalTextColor
111 | PanelStatusBarBackgroundColor=shadowBackground
112 | PanelsWidgetSeparatorLineColor=000000
113 | PanelTextColorDark=text
114 | PanelTextColorMid=ffa0a0a0
115 | PanelTextColorLight=text
116 | ProgressBarColorError=error
117 | ProgressBarColorFinished=dda4d576
118 | ProgressBarColorNormal=ff999999
119 | ProgressBarTitleColor=fancyBarsBoldTextColor
120 | ProgressBarBackgroundColor=a0606060
121 | SplitterColor=splitter
122 | TextColorDisabled=textDisabled
123 | TextColorError=ffff4040
124 | TextColorHighlight=ffff0000
125 | TextColorHighlightBackground=8a7f2c
126 | TextColorLink=textColorLink
127 | TextColorLinkVisited=textColorLinkVisited
128 | TextColorNormal=text
129 | ToggleButtonBackgroundColor=shadowBackground
130 | ToolBarBackgroundColor=shadowBackground
131 | TreeViewArrowColorNormal=hoverBackground
132 | TreeViewArrowColorSelected=text
133 |
134 | OutputPanes_DebugTextColor=text
135 | OutputPanes_ErrorMessageTextColor=ffff6c6c
136 | OutputPanes_MessageOutput=ff008787
137 | OutputPanes_NormalMessageTextColor=ff008787
138 | OutputPanes_StdErrTextColor=ffff6666
139 | OutputPanes_StdOutTextColor=text
140 | OutputPanes_WarningMessageTextColor=fff3c300
141 | OutputPanes_TestPassTextColor=ff00b400
142 | OutputPanes_TestFailTextColor=ffcf4848
143 | OutputPanes_TestXFailTextColor=ff28dc28
144 | OutputPanes_TestXPassTextColor=ffdc2828
145 | OutputPanes_TestSkipTextColor=ff828282
146 | OutputPanes_TestWarnTextColor=ffc8c800
147 | OutputPanes_TestFatalTextColor=ffc82828
148 | OutputPanes_TestDebugTextColor=ff329696
149 | OutputPaneButtonFlashColor=error
150 | OutputPaneToggleButtonTextColorChecked=fancyBarsNormalTextColor
151 | OutputPaneToggleButtonTextColorUnchecked=fancyBarsNormalTextColor
152 |
153 | Debugger_LogWindow_LogInput=ff00acac
154 | Debugger_LogWindow_LogStatus=ff00875a
155 | Debugger_LogWindow_LogTime=ffbf0303
156 |
157 | Debugger_WatchItem_ValueNormal=text
158 | Debugger_WatchItem_ValueInvalid=textDisabled
159 | Debugger_WatchItem_ValueChanged=ffff6666
160 |
161 | Debugger_Breakpoint_TextMarkColor=ffff4040
162 |
163 | Welcome_TextColor=text
164 | Welcome_ForegroundPrimaryColor=ff999999
165 | Welcome_ForegroundSecondaryColor=ff808080
166 | Welcome_BackgroundColor=normalBackground
167 | Welcome_ButtonBackgroundColor=normalBackground
168 | Welcome_DividerColor=ff555555
169 | Welcome_HoverColor=ff444444
170 | Welcome_LinkColor=ff7fc63c
171 | Welcome_DisabledLinkColor=textDisabled
172 |
173 | Timeline_TextColor=text
174 | Timeline_BackgroundColor1=normalBackground
175 | Timeline_BackgroundColor2=ff444444
176 | Timeline_DividerColor=ff555555
177 | Timeline_HighlightColor=ff3099dc
178 | Timeline_PanelBackgroundColor=ff808080
179 | Timeline_PanelHeaderColor=alternateBackground
180 | Timeline_HandleColor=alternateBackground
181 | Timeline_RangeColor=selectedBackground
182 |
183 | VcsBase_FileStatusUnknown_TextColor=text
184 | VcsBase_FileAdded_TextColor=ff00ff00
185 | VcsBase_FileModified_TextColor=ff8ee0ff
186 | VcsBase_FileDeleted_TextColor=fffff6c6c
187 | VcsBase_FileRenamed_TextColor=ffffa500
188 | VcsBase_FileUnmerged_TextColor=ffff4040
189 |
190 | Bookmarks_TextMarkColor=ff8080ff
191 |
192 | TextEditor_SearchResult_ScrollBarColor=ff00c000
193 | TextEditor_CurrentLine_ScrollBarColor=ffffffff
194 |
195 | ProjectExplorer_TaskError_TextMarkColor=error
196 | ProjectExplorer_TaskWarn_TextMarkColor=warning
197 |
198 | CodeModel_Error_TextMarkColor=error
199 | CodeModel_Warning_TextMarkColor=warning
200 |
201 | QmlDesigner_BackgroundColor=qmlDesignerButtonColor
202 | QmlDesigner_HighlightColor=ff3f91c4
203 | QmlDesigner_FormEditorSelectionColor=ff4ba2ff
204 | QmlDesigner_FormEditorForegroundColor=ffffffff
205 | QmlDesigner_BackgroundColorDarkAlternate=qmlDesignerButtonColor
206 | QmlDesigner_BackgroundColorDarker=ff262728
207 | QmlDesigner_BorderColor=splitter
208 | QmlDesigner_ButtonColor=ff595b5c
209 | QmlDesigner_TabDark=shadowBackground
210 | QmlDesigner_TabLight=text
211 | QmlDesigner_FormeditorBackgroundColor=qmlDesignerButtonColor
212 | QmlDesigner_AlternateBackgroundColor=qmlDesignerButtonColor
213 | QmlDesigner_ScrollBarHandleColor=ff595b5c
214 |
215 | PaletteWindow=normalBackground
216 | PaletteWindowText=text
217 | PaletteBase=normalBackground
218 | PaletteAlternateBase=alternateBackground
219 | PaletteButton=shadowBackground
220 | PaletteBrightText=ffff3333
221 | PaletteText=text
222 | PaletteButtonText=text
223 | PaletteButtonTextDisabled=textDisabled
224 | PaletteToolTipBase=selectedBackground
225 | PaletteHighlight=selectedBackground
226 | PaletteDark=shadowBackground
227 | PaletteHighlightedText=ffffffff
228 | PaletteToolTipText=text
229 | PaletteLink=textColorLink
230 | PaletteLinkVisited=textColorLinkVisited
231 | PaletteWindowDisabled=backgroundColorDisabled
232 | PaletteWindowTextDisabled=textDisabled
233 | PaletteBaseDisabled=backgroundColorDisabled
234 | PaletteTextDisabled=textDisabled
235 |
236 | [Flags]
237 | ComboBoxDrawTextShadow=false
238 | DerivePaletteFromTheme=true
239 | DrawIndicatorBranch=true
240 | DrawSearchResultWidgetFrame=false
241 | DrawTargetSelectorBottom=false
242 | DrawToolBarHighlights=false
243 | DrawToolBarBorders=false
244 | ApplyThemePaletteGlobally=true
245 | FlatToolBars=true
246 | FlatSideBarIcons=true
247 | FlatProjectsMode=true
248 | FlatMenuBar=true
249 | ToolBarIconShadow=true
250 | WindowColorAsBase=false
251 | DarkUserInterface=true
252 |
253 | [Gradients]
254 | DetailsWidgetHeaderGradient\1\color=00000000
255 | DetailsWidgetHeaderGradient\1\pos=1
256 | DetailsWidgetHeaderGradient\size=1
257 |
--------------------------------------------------------------------------------