├── 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 | ![VisualStudioDark](screenshots/VisualStudioDark.png) 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 | ![VisualStudioDarkv2](screenshots/VisualStudioDark_v2.png) 21 | 22 | ## Visual Studio Blue (Light): 23 | ![VisualStudioBlue](screenshots/VisualStudioBlue(Light).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 | ![VisualStudioBluev2](screenshots/VisualStudioBlue(Light)_v2.png) 29 | 30 | ## Summer: 31 | ![Summer](screenshots/Summer.png) 32 | 33 | ## One Dark (Atom) 34 | Works best with One Dark QtCreator Theme and an environment color like #313848 35 | ![One Dark](screenshots/OneDark.png) 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 | ![Solarized Dark](screenshots/SolarizedDark.png) 41 | -------------------------------------------------------------------------------- /styles/Summer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |