├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── FUNDING.yml ├── LICENSE ├── README.md ├── build.py ├── colors ├── dark.yaml └── light.yaml ├── requirements.txt └── theme └── jetbrains ├── .idea ├── .gitignore ├── .name ├── misc.xml └── modules.xml ├── LICENSE ├── README.md ├── atom-one-jetbrains.iml ├── build.py ├── resources ├── META-INF │ ├── plugin.xml │ ├── pluginIcon.svg │ └── pluginIcon_dark.svg └── schemes │ ├── dark.xml │ └── light.xml ├── screenshots ├── atom-one-dark-small.png ├── atom-one-dark.png ├── atom-one-light-small.png └── atom-one-light.png ├── src ├── dark.theme.json └── light.theme.json └── sublate.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report 4 | title: '' 5 | labels: '' 6 | assignees: jontaydev 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Clone this repository 16 | 2. Open this file 17 | 3. Select this text.. 18 | 19 | **Screenshots** 20 | If applicable, add screenshots to help explain your problem. 21 | 22 | **Application:** 23 | PyCharm, IntelliJ, etc 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | /.idea 3 | /output 4 | .DS_Store -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: espositocode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Atom One 2 | 3 | The Atom One theme, adapted by Subtheme. 4 | 5 | Supported apps: 6 | - [JetBrains](theme/jetbrains) 7 | 8 | To build, first install [sublate](https://github.com/espositocode/sublate): 9 | 10 | $ pip install sublate 11 | 12 | Then, run the build script: 13 | 14 | $ ./build.py 15 | -------------------------------------------------------------------------------- /build.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import sublate as sub 3 | 4 | sub.data.update({ 5 | "date": sub.date_iso(), 6 | "colors": sub.read("colors/*.yaml").values(), 7 | }) 8 | 9 | sub.rm("output") 10 | sub.cp("theme", "output") 11 | sub.run("output/*/build.py") 12 | -------------------------------------------------------------------------------- /colors/dark.yaml: -------------------------------------------------------------------------------- 1 | id: dark 2 | name: Atom One Dark 3 | colors: 4 | red_1: "#e06c75" 5 | orange_1: "#d19a66" 6 | orange_2: "#e6c07b" 7 | green: "#98c379" 8 | cyan: "#56b6c2" 9 | purple: "#c678dd" 10 | base0: "#1d1f23" 11 | base1: "#21252b" 12 | base2: "#282c34" 13 | base3: "#2c313c" 14 | base4: "#333a42" 15 | base5: "#404859" 16 | base6: "#495162" 17 | base7: "#7f848e" 18 | base8: "#9da5b4" 19 | base9: "#abb2bf" 20 | base10: "#e6e6e6" -------------------------------------------------------------------------------- /colors/light.yaml: -------------------------------------------------------------------------------- 1 | id: light 2 | name: Atom One Light 3 | colors: 4 | red_1: "#e06c75" 5 | orange_1: "#d19a66" 6 | orange_2: "#e6c07b" 7 | green: "#98c379" 8 | cyan: "#56b6c2" 9 | purple: "#c678dd" 10 | blue: "#5770e0" 11 | base03: "#fafafa" 12 | base02: "#eaeaeb" 13 | base01: "#dbdbdc" 14 | none: "#00000000" -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sublate>=0.3 -------------------------------------------------------------------------------- /theme/jetbrains/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /theme/jetbrains/.idea/.name: -------------------------------------------------------------------------------- 1 | atom-one-jetbrains -------------------------------------------------------------------------------- /theme/jetbrains/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /theme/jetbrains/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /theme/jetbrains/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. -------------------------------------------------------------------------------- /theme/jetbrains/README.md: -------------------------------------------------------------------------------- 1 | # Atom One for JetBrains 2 | 3 | ## Build 4 | 5 | To build the plugin for IntelliJ, follow these steps: 6 | 7 | 1. Build this project with sublate From the project root: `sublate`. 8 | 2. Open the `build` directory with IntelliJ. 9 | 3. From the menubar, select Build -> Prepare Plugin Module For Deployment. 10 | 4. The plugin jar file will be exported to the `build` directory. 11 | 12 | ## Screenshots 13 | 14 | ### Atom One Dark: 15 | 16 | ![Atom One Dark](screenshots/atom-one-dark.png) 17 | 18 | ### Atom One Light: 19 | 20 | ![Atom One Dark](screenshots/atom-one-light.png) 21 | 22 | -------------------------------------------------------------------------------- /theme/jetbrains/atom-one-jetbrains.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /theme/jetbrains/build.py: -------------------------------------------------------------------------------- 1 | import sublate as sub 2 | 3 | print("[+] JetBrains") 4 | 5 | for theme in sub.data["colors"]: 6 | sub.render(f"resources/schemes/{theme['id']}.xml", data={ 7 | "theme": theme, 8 | }) 9 | sub.render(f"src/{theme['id']}.theme.json", data={ 10 | "theme": theme 11 | }) 12 | 13 | sub.rm("build.py") 14 | -------------------------------------------------------------------------------- /theme/jetbrains/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | atom-one 3 | Atom One Theme 4 | Subtheme 5 | 1.5.1 6 | 7 | com.intellij.modules.lang 8 | 9 | 10 | 1.5.1 12 |
    13 |
  • Minor color fixes
  • 14 |
15 |

1.5

16 |
    17 |
  • Compatibility with 2022.x
  • 18 |
19 |

1.4

20 |
    21 |
  • Fixed checkbox background color
  • 22 |
23 |

1.3.1

24 |
    25 |
  • Minor update to plugin metadata
  • 26 |
27 |

1.3

28 |
    29 |
  • Updated text foreground to softer white from official theme
  • 30 |
31 |

1.2

32 |
    33 |
  • Fixed selection foreground color
  • 34 |
35 |

1.1

36 |
    37 |
  • Fixed counter foreground color
  • 38 |
39 |

1.0

40 |
    41 |
  • Fixed application border color in Linux
  • 42 |
  • Fixed suggestion hint selected line color
  • 43 |
44 | ]]> 45 |
46 | 47 | Subtheme. Both dark and light themes are included. 49 |

50 | Search for Subtheme to find more themes, including Monokai Pro, Solarized, and Foundation. 51 |

52 | Contributions are welcome with GitHub. Screenshots were taken with Atom Material Icons and Operator Mono. 53 |

54 | 55 |
56 | 57 | ]]> 58 |
59 | 60 | 61 | 62 | 63 | 64 |
-------------------------------------------------------------------------------- /theme/jetbrains/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /theme/jetbrains/resources/META-INF/pluginIcon_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /theme/jetbrains/resources/schemes/dark.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /theme/jetbrains/resources/schemes/light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2019-06-07T17:20:09 4 | idea 5 | 2019.2.0.0 6 | {{date}} 7 | Default 8 | 9 | 10 | 20 | 21 | 29 | 35 | 40 | 45 | 52 | 58 | 64 | 70 | 76 | 82 | 87 | 90 | 95 | 100 | 106 | 111 | 117 | 123 | 128 | 133 | 139 | 145 | 150 | 155 | 160 | 166 | 173 | 180 | 185 | 190 | 195 | 200 | 205 | 210 | 215 | 220 | 225 | 230 | 235 | 240 | 245 | 250 | 255 | 260 | 268 | 274 | 279 | 285 | 290 | 295 | 300 | 305 | 310 | 315 | 320 | 325 | 332 | 338 | 344 | 351 | 358 | 363 | 370 | 376 | 383 | 388 | 393 | 398 | 403 | 404 | -------------------------------------------------------------------------------- /theme/jetbrains/screenshots/atom-one-dark-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtheme-dev/atom-one/2c77ece6fa937a38abda6bb3da1f3590b67af577/theme/jetbrains/screenshots/atom-one-dark-small.png -------------------------------------------------------------------------------- /theme/jetbrains/screenshots/atom-one-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtheme-dev/atom-one/2c77ece6fa937a38abda6bb3da1f3590b67af577/theme/jetbrains/screenshots/atom-one-dark.png -------------------------------------------------------------------------------- /theme/jetbrains/screenshots/atom-one-light-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtheme-dev/atom-one/2c77ece6fa937a38abda6bb3da1f3590b67af577/theme/jetbrains/screenshots/atom-one-light-small.png -------------------------------------------------------------------------------- /theme/jetbrains/screenshots/atom-one-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtheme-dev/atom-one/2c77ece6fa937a38abda6bb3da1f3590b67af577/theme/jetbrains/screenshots/atom-one-light.png -------------------------------------------------------------------------------- /theme/jetbrains/src/dark.theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "{{theme.name}}", 3 | "dark": true, 4 | "author": "Subtheme", 5 | "editorScheme": "/schemes/dark.xml", 6 | "ui": { 7 | "*": { 8 | "acceleratorSelectionForeground": "{{theme.colors.base9}}", 9 | "background": "{{theme.colors.base2}}", 10 | "borderColor": "{{theme.colors.base3}}", 11 | "disabledBackground": "{{theme.colors.base1}}", 12 | "disabledForeground": "{{theme.colors.base6}}", 13 | "disabledText": "{{theme.colors.base6}}", 14 | "focusColor": "{{theme.colors.base6}}", 15 | "focusedBorderColor": "{{theme.colors.base9}}", 16 | "foreground": "{{theme.colors.base9}}", 17 | "inactiveBackground": "{{theme.colors.base1}}", 18 | "inactiveForeground": "{{theme.colors.base8}}", 19 | "infoForeground": "{{theme.colors.base8}}", 20 | "selectionBackground": "{{theme.colors.base4}}", 21 | "selectionBackgroundInactive": "{{theme.colors.base4}}", 22 | "selectionForeground": "{{theme.colors.base9}}", 23 | "selectionInactiveBackground": "{{theme.colors.base8}}", 24 | "selectionInactiveForeground": "{{theme.colors.base9}}", 25 | "separatorColor": "{{theme.colors.base2}}" 26 | }, 27 | "ActionButton": { 28 | "hoverBackground": "{{theme.colors.base3}}", 29 | "hoverBorderColor": "{{theme.colors.base3}}", 30 | "pressedBackground": "{{theme.colors.base3}}", 31 | "pressedBorderColor": "{{theme.colors.base3}}" 32 | }, 33 | "Borders": { 34 | "ContrastBorderColor": "{{theme.colors.base3}}", 35 | "color": "{{theme.colors.base3}}" 36 | }, 37 | "Button": { 38 | "arc": 0, 39 | "background": "{{theme.colors.base4}}", 40 | "default": { 41 | "endBackground": "{{theme.colors.base3}}", 42 | "endBorderColor": "{{theme.colors.base3}}", 43 | "foreground": "{{theme.colors.base9}}", 44 | "focusColor": "{{theme.colors.base9}}", 45 | "focusedBorderColor": "{{theme.colors.base3}}", 46 | "shadowColor": "{{theme.colors.base3}}", 47 | "startBackground": "{{theme.colors.base3}}", 48 | "startBorderColor": "{{theme.colors.base3}}" 49 | }, 50 | "disabledBorderColor": "{{theme.colors.base3}}", 51 | "disabledText": "{{theme.colors.base6}}", 52 | "endBackground": "{{theme.colors.base3}}", 53 | "endBorderColor": "{{theme.colors.base3}}", 54 | "focusedBorderColor": "{{theme.colors.base3}}", 55 | "foreground": "{{theme.colors.base8}}", 56 | "shadowColor": "{{theme.colors.base3}}", 57 | "shadowWidth": 0, 58 | "startBackground": "{{theme.colors.base3}}", 59 | "startBorderColor": "{{theme.colors.base3}}" 60 | }, 61 | "CheckBox": { 62 | "background": "{{theme.colors.base2}}", 63 | "disabledText": "{{theme.colors.base6}}", 64 | "foreground": "{{theme.colors.base9}}", 65 | "select": "{{theme.colors.base9}}" 66 | }, 67 | "CheckBoxMenuItem": { 68 | "acceleratorForeground": "{{theme.colors.base8}}", 69 | "acceleratorSelectionForeground": "{{theme.colors.base8}}", 70 | "background": "{{theme.colors.base2}}", 71 | "disabledBackground": "{{theme.colors.base2}}", 72 | "disabledForeground": "{{theme.colors.base6}}", 73 | "foreground": "{{theme.colors.base9}}", 74 | "selectionBackground": "{{theme.colors.base4}}", 75 | "selectionForeground": "{{theme.colors.base9}}" 76 | }, 77 | "ColorChooser": { 78 | "background": "{{theme.colors.base2}}", 79 | "foreground": "{{theme.colors.base9}}", 80 | "swatchesDefaultRecentColor": "{{theme.colors.base9}}" 81 | }, 82 | "ComboBoxButton": { 83 | "background": "{{theme.colors.base3}}" 84 | }, 85 | "ComboBox": { 86 | "ArrowButton": { 87 | "background": "{{theme.colors.base4}}", 88 | "disabledIconColor": "{{theme.colors.base6}}", 89 | "iconColor": "{{theme.colors.base9}}", 90 | "nonEditableBackground": "{{theme.colors.base2}}" 91 | }, 92 | "background": "{{theme.colors.base3}}", 93 | "disabledForeground": "{{theme.colors.base6}}", 94 | "foreground": "{{theme.colors.base9}}", 95 | "modifiedItemForeground": "{{theme.colors.base9}}", 96 | "nonEditableBackground": "{{theme.colors.base3}}", 97 | "selectionBackground": "{{theme.colors.base2}}", 98 | "selectionForeground": "{{theme.colors.base9}}" 99 | }, 100 | "ComboPopup": { 101 | "border": "{{theme.colors.base2}}" 102 | }, 103 | "CompletionPopup": { 104 | "foreground": "{{theme.colors.base9}}", 105 | "matchForeground": "{{theme.colors.base9}}", 106 | "selectionInactiveBackground": "{{theme.colors.base5}}", 107 | "selectionBackground": "{{theme.colors.base5}}" 108 | }, 109 | "Component": { 110 | "arc": 4, 111 | "borderColor": "{{theme.colors.base3}}00", 112 | "disabledBorderColor": "{{theme.colors.base3}}", 113 | "focusColor": "{{theme.colors.base9}}", 114 | "focusedBorderColor": "{{theme.colors.base9}}", 115 | "hoverIconColor": "{{theme.colors.base9}}", 116 | "infoForeground": "{{theme.colors.base8}}", 117 | "iconColor": "{{theme.colors.base9}}" 118 | }, 119 | "Counter": { 120 | "background": "{{theme.colors.base9}}", 121 | "foreground": "{{theme.colors.base0}}" 122 | }, 123 | "Debugger": { 124 | "Variables": { 125 | "collectingDataForeground": "{{theme.colors.base8}}", 126 | "changedValueForeground": "{{theme.colors.base9}}", 127 | "errorMessageForeground": "{{theme.colors.red_1}}", 128 | "evaluatingExpressionForeground": "{{theme.colors.base8}}", 129 | "exceptionForeground": "{{theme.colors.cyan}}", 130 | "modifyingValueForeground": "{{theme.colors.base9}}", 131 | "valueForeground": "{{theme.colors.base9}}" 132 | } 133 | }, 134 | "DebuggerTabs": { 135 | "underlinedTabBackground": "{{theme.colors.base6}}" 136 | }, 137 | "DebuggerPopup": { 138 | "borderColor": "{{theme.colors.base6}}" 139 | }, 140 | "DefaultTabs": { 141 | "background": "{{theme.colors.base2}}", 142 | "borderColor": "{{theme.colors.base2}}", 143 | "hoverBackground": "{{theme.colors.base3}}", 144 | "inactiveUnderlineColor": "{{theme.colors.base9}}", 145 | "underlineColor": "{{theme.colors.base9}}", 146 | "underlinedTabBackground": "{{theme.colors.base2}}", 147 | "underlineHeight": 2 148 | }, 149 | "DragAndDrop": { 150 | "areaBackground": "{{theme.colors.base2}}", 151 | "areaBorderColor": "{{theme.colors.base2}}", 152 | "areaForeground": "{{theme.colors.base9}}" 153 | }, 154 | "Editor": { 155 | "background": "{{theme.colors.base1}}", 156 | "foreground": "{{theme.colors.base9}}", 157 | "shortcutForeground": "{{theme.colors.base8}}" 158 | }, 159 | "EditorPane": { 160 | "background": "{{theme.colors.base1}}", 161 | "caretForeground": "{{theme.colors.base9}}", 162 | "foreground": "{{theme.colors.base9}}", 163 | "inactiveBackground": "{{theme.colors.base2}}", 164 | "inactiveForeground": "{{theme.colors.base6}}", 165 | "selectionBackground": "{{theme.colors.base4}}", 166 | "selectionForeground": "{{theme.colors.base9}}" 167 | }, 168 | "EditorTabs": { 169 | "borderColor": "{{theme.colors.base3}}", 170 | "inactiveUnderlineColor": "{{theme.colors.base9}}", 171 | "underlineColor": "{{theme.colors.base9}}", 172 | "underlinedTabBackground": "{{theme.colors.base3}}", 173 | "underlinedTabForeground": "{{theme.colors.base9}}" 174 | }, 175 | "FileColor": { 176 | "Yellow": "00000000" 177 | }, 178 | "FormattedTextField": { 179 | "background": "{{theme.colors.base3}}", 180 | "caretForeground": "{{theme.colors.base9}}", 181 | "foreground": "{{theme.colors.base9}}", 182 | "inactiveBackground": "{{theme.colors.base4}}", 183 | "inactiveForeground": "{{theme.colors.base6}}", 184 | "selectionForeground": "{{theme.colors.base9}}", 185 | "selectionBackground": "{{theme.colors.base4}}" 186 | }, 187 | "Group": { 188 | "disabledSeparatorColor": "{{theme.colors.base2}}", 189 | "separatorColor": "{{theme.colors.base2}}" 190 | }, 191 | "GutterTooltip": { 192 | "infoForeground": "{{theme.colors.base9}}", 193 | "lineSeparatorColor": "{{theme.colors.base2}}" 194 | }, 195 | "HelpTooltip": { 196 | "borderColor": "{{theme.colors.base2}}", 197 | "infoForeground": "{{theme.colors.base8}}" 198 | }, 199 | "InformationHint": { 200 | "borderColor": "{{theme.colors.base2}}" 201 | }, 202 | "InplaceRefactoringPopup": { 203 | "borderColor": "{{theme.colors.base2}}" 204 | }, 205 | "Label": { 206 | "background": "{{theme.colors.base2}}", 207 | "disabledForeground": "{{theme.colors.base6}}", 208 | "disabledText": "{{theme.colors.base6}}", 209 | "foreground": "{{theme.colors.base8}}", 210 | "infoForeground": "{{theme.colors.base8}}", 211 | "selectedForeground": "{{theme.colors.base9}}" 212 | }, 213 | "Link": { 214 | "activeForeground": "{{theme.colors.orange_2}}", 215 | "hoverForeground": "{{theme.colors.orange_2}}", 216 | "pressedForeground": "{{theme.colors.orange_2}}", 217 | "secondaryForeground": "{{theme.colors.orange_2}}", 218 | "visitedForeground": "{{theme.colors.orange_2}}" 219 | }, 220 | "List": { 221 | "background": "{{theme.colors.base1}}", 222 | "foreground": "{{theme.colors.base9}}", 223 | "selectionBackground": "{{theme.colors.base3}}", 224 | "selectionForeground": "{{theme.colors.base9}}", 225 | "selectionInactiveBackground": "{{theme.colors.base3}}", 226 | "selectionInactiveForeground": "{{theme.colors.base9}}" 227 | }, 228 | "MemoryIndicator": { 229 | "allocatedBackground": "{{theme.colors.base4}}", 230 | "usedBackground": "{{theme.colors.base6}}" 231 | }, 232 | "Menu": { 233 | "acceleratorForeground": "{{theme.colors.base8}}", 234 | "acceleratorSelectionForeground": "{{theme.colors.base9}}", 235 | "background": "{{theme.colors.base2}}", 236 | "borderColor": "{{theme.colors.base3}}", 237 | "disabledBackground": "{{theme.colors.base4}}", 238 | "disabledForeground": "{{theme.colors.base6}}", 239 | "foreground": "{{theme.colors.base9}}", 240 | "separatorColor": "{{theme.colors.base2}}", 241 | "selectionForeground": "{{theme.colors.base9}}" 242 | }, 243 | "MenuBar": { 244 | "borderColor": "{{theme.colors.base3}}", 245 | "disabledBackground": "{{theme.colors.base2}}", 246 | "disabledForeground": "{{theme.colors.base6}}", 247 | "foreground": "{{theme.colors.base9}}", 248 | "highlight": "{{theme.colors.base2}}", 249 | "selectionBackground": "{{theme.colors.base4}}", 250 | "selectionForeground": "{{theme.colors.base9}}", 251 | "shadow": "{{theme.colors.base1}}" 252 | }, 253 | "MenuItem": { 254 | "acceleratorForeground": "{{theme.colors.base8}}", 255 | "background": "{{theme.colors.base2}}", 256 | "disabledBackground": "{{theme.colors.base2}}", 257 | "disabledForeground": "{{theme.colors.base6}}", 258 | "foreground": "{{theme.colors.base9}}", 259 | "selectionBackground": "{{theme.colors.base4}}", 260 | "selectionForeground": "{{theme.colors.base9}}" 261 | }, 262 | "NavBar": { 263 | "borderColor": "{{theme.colors.base3}}" 264 | }, 265 | "Notification": { 266 | "background": "{{theme.colors.base3}}", 267 | "borderColor": "{{theme.colors.base1}}", 268 | "errorBackground": "{{theme.colors.base1}}", 269 | "errorBorderColor": "{{theme.colors.base1}}", 270 | "foreground": "{{theme.colors.base9}}", 271 | "MoreButton": { 272 | "background": "{{theme.colors.base4}}", 273 | "foreground": "{{theme.colors.base9}}", 274 | "innerBorderColor": "{{theme.colors.base3}}" 275 | }, 276 | "ToolWindow": { 277 | "errorBackground": "{{theme.colors.base3}}", 278 | "errorBorderColor": "{{theme.colors.base3}}", 279 | "informativeBackground": "{{theme.colors.base3}}", 280 | "informativeBorderColor": "{{theme.colors.base3}}", 281 | "warningBackground": "{{theme.colors.base3}}", 282 | "warningBorderColor": "{{theme.colors.base3}}" 283 | } 284 | }, 285 | "OptionPane": { 286 | "background": "{{theme.colors.base2}}", 287 | "foreground": "{{theme.colors.base9}}", 288 | "messageForeground": "{{theme.colors.base9}}" 289 | }, 290 | "Panel": { 291 | "background": "{{theme.colors.base2}}", 292 | "foreground": "{{theme.colors.base8}}" 293 | }, 294 | "ParameterInfo": { 295 | "background": "{{theme.colors.base4}}", 296 | "borderColor": "{{theme.colors.base3}}", 297 | "currentOverloadBackground": "{{theme.colors.base4}}", 298 | "currentParameterForeground": "{{theme.colors.base9}}", 299 | "disabledForeground": "{{theme.colors.base6}}", 300 | "foreground": "{{theme.colors.base9}}", 301 | "infoForeground": "{{theme.colors.base8}}", 302 | "lineSeparatorColor": "{{theme.colors.base3}}" 303 | }, 304 | "PasswordField": { 305 | "background": "{{theme.colors.base4}}", 306 | "capsLockIconColor": "{{theme.colors.base9}}", 307 | "caretForeground": "{{theme.colors.base9}}", 308 | "foreground": "{{theme.colors.base9}}", 309 | "inactiveForeground": "{{theme.colors.base6}}", 310 | "selectionBackground": "{{theme.colors.base6}}", 311 | "selectionForeground": "{{theme.colors.base9}}" 312 | }, 313 | "Plugins": { 314 | "background": "{{theme.colors.base2}}", 315 | "disabledForeground": "{{theme.colors.base8}}", 316 | "eapTagBackground": "{{theme.colors.base6}}", 317 | "hoverBackground": "{{theme.colors.base3}}", 318 | "lightSelectionBackground": "{{theme.colors.base3}}", 319 | "tagForeground": "{{theme.colors.base9}}", 320 | "tagBackground": "{{theme.colors.base6}}", 321 | "Button": { 322 | "installBackground": "{{theme.colors.base1}}", 323 | "installBorderColor": "{{theme.colors.base1}}", 324 | "installForeground": "{{theme.colors.base9}}", 325 | "installFocusedBackground": "{{theme.colors.base1}}", 326 | "installFillForeground": "{{theme.colors.base8}}", 327 | "installFillBackground": "{{theme.colors.base1}}", 328 | "updateBackground": "{{theme.colors.base1}}", 329 | "updateBorderColor": "{{theme.colors.base1}}", 330 | "updateForeground": "{{theme.colors.base9}}" 331 | }, 332 | "SearchField": { 333 | "background": "{{theme.colors.base3}}", 334 | "borderColor": "{{theme.colors.base3}}" 335 | }, 336 | "SectionHeader": { 337 | "background": "{{theme.colors.base2}}", 338 | "foreground": "{{theme.colors.base8}}" 339 | }, 340 | "Tab": { 341 | "hoverBackground": "{{theme.colors.base3}}", 342 | "selectedForeground": "{{theme.colors.base9}}", 343 | "selectedBackground": "{{theme.colors.base3}}" 344 | } 345 | }, 346 | "Popup": { 347 | "Advertiser": { 348 | "background": "{{theme.colors.base2}}", 349 | "borderColor": "{{theme.colors.base2}}", 350 | "foreground": "{{theme.colors.base9}}" 351 | }, 352 | "borderColor": "{{theme.colors.base1}}", 353 | "inactiveBorderColor": "{{theme.colors.base2}}", 354 | "innerBorderColor": "{{theme.colors.base2}}", 355 | "Header": { 356 | "activeBackground": "{{theme.colors.base2}}", 357 | "inactiveBackground": "{{theme.colors.base1}}" 358 | }, 359 | "paintBorder": true, 360 | "separatorForeground": "{{theme.colors.base9}}", 361 | "separatorColor": "{{theme.colors.base2}}", 362 | "Toolbar": { 363 | "background": "{{theme.colors.base1}}", 364 | "borderColor": "{{theme.colors.base3}}" 365 | } 366 | }, 367 | "PopupMenu": { 368 | "background": "{{theme.colors.base2}}", 369 | "foreground": "{{theme.colors.base9}}", 370 | "translucentBackground": "{{theme.colors.base2}}", 371 | "selectionBackground": "{{theme.colors.base4}}" 372 | }, 373 | "PopupMenuSeparator": { 374 | "height": 10, 375 | "stripeIndent": 5 376 | }, 377 | "ProgressBar": { 378 | "background": "{{theme.colors.base2}}", 379 | "foreground": "{{theme.colors.base9}}", 380 | "indeterminateEndColor": "{{theme.colors.base9}}", 381 | "indeterminateStartColor": "{{theme.colors.base9}}", 382 | "progressColor": "{{theme.colors.base9}}", 383 | "selectionBackground": "{{theme.colors.base6}}", 384 | "trackColor": "{{theme.colors.base6}}" 385 | }, 386 | "RadioButton": { 387 | "background": "{{theme.colors.base2}}", 388 | "disabledText": "{{theme.colors.base6}}", 389 | "foreground": "{{theme.colors.base9}}" 390 | }, 391 | "RadioButtonMenuItem": { 392 | "acceleratorForeground": "{{theme.colors.base8}}", 393 | "acceleratorSelectionForeground": "{{theme.colors.base8}}", 394 | "background": "{{theme.colors.base2}}", 395 | "disabledBackground": "{{theme.colors.base2}}", 396 | "disabledForeground": "{{theme.colors.base6}}", 397 | "foreground": "{{theme.colors.base9}}", 398 | "selectionBackground": "{{theme.colors.base4}}", 399 | "selectionForeground": "{{theme.colors.base9}}" 400 | }, 401 | "SearchEverywhere": { 402 | "Advertiser": { 403 | "background": "{{theme.colors.base1}}", 404 | "foreground": "{{theme.colors.base8}}" 405 | }, 406 | "Header": { 407 | "background": "{{theme.colors.base2}}" 408 | }, 409 | "List": { 410 | "separatorColor": "{{theme.colors.base2}}", 411 | "separatorForeground": "{{theme.colors.base8}}" 412 | }, 413 | "SearchField": { 414 | "background": "{{theme.colors.base2}}", 415 | "borderColor": "{{theme.colors.base1}}", 416 | "infoForeground": "{{theme.colors.base8}}" 417 | }, 418 | "Tab": { 419 | "selectedForeground": "{{theme.colors.base9}}", 420 | "selectedBackground": "{{theme.colors.base6}}" 421 | } 422 | }, 423 | "SearchMatch": { 424 | "endBackground": "{{theme.colors.base9}}", 425 | "startBackground": "{{theme.colors.base9}}" 426 | }, 427 | "Separator": { 428 | "separatorColor": "{{theme.colors.base3}}" 429 | }, 430 | "SidePanel": { 431 | "background": "{{theme.colors.base1}}" 432 | }, 433 | "Slider": { 434 | "background": "{{theme.colors.base2}}", 435 | "buttonBorderColor": "{{theme.colors.base9}}", 436 | "buttonColor": "{{theme.colors.base9}}", 437 | "foreground": "{{theme.colors.base9}}", 438 | "tickColor": "{{theme.colors.base4}}", 439 | "trackColor": "{{theme.colors.base4}}" 440 | }, 441 | "SpeedSearch": { 442 | "background": "{{theme.colors.base6}}", 443 | "borderColor": "{{theme.colors.base2}}", 444 | "errorForeground": "{{theme.colors.base9}}", 445 | "foreground": "{{theme.colors.base9}}" 446 | }, 447 | "Spinner": { 448 | "background": "{{theme.colors.base2}}" 449 | }, 450 | "SplitPane": { 451 | "background": "{{theme.colors.base2}}", 452 | "highlight": "{{theme.colors.base1}}" 453 | }, 454 | "SplitPaneDivider": { 455 | "draggingColor": "{{theme.colors.base4}}" 456 | }, 457 | "StatusBar": { 458 | "borderColor": "{{theme.colors.base3}}", 459 | "hoverBackground": "{{theme.colors.base3}}" 460 | }, 461 | "TabbedPane": { 462 | "background": "{{theme.colors.base2}}", 463 | "contentAreaColor": "{{theme.colors.base6}}", 464 | "disabledForeground": "{{theme.colors.base6}}", 465 | "disabledUnderlineColor": "{{theme.colors.base6}}", 466 | "focus": "{{theme.colors.base4}}", 467 | "focusColor": "{{theme.colors.base4}}", 468 | "foreground": "{{theme.colors.base9}}", 469 | "hoverColor": "{{theme.colors.base3}}", 470 | "tabSelectionHeight": 2, 471 | "underlineColor": "{{theme.colors.base9}}" 472 | }, 473 | "Table": { 474 | "background": "{{theme.colors.base1}}", 475 | "dropLineColor": "{{theme.colors.base9}}", 476 | "dropLineShortColor": "{{theme.colors.base9}}", 477 | "focusCellBackground": "{{theme.colors.base1}}", 478 | "focusCellForeground": "{{theme.colors.base9}}", 479 | "foreground": "{{theme.colors.base9}}", 480 | "gridColor": "{{theme.colors.base1}}", 481 | "lightSelectionForeground": "{{theme.colors.base9}}", 482 | "lightSelectionInactiveForeground": "{{theme.colors.base9}}", 483 | "lightSelectionInactiveBackground": "{{theme.colors.base3}}", 484 | "selectionBackground": "{{theme.colors.base3}}", 485 | "selectionForeground": "{{theme.colors.base9}}", 486 | "selectionInactiveBackground": "{{theme.colors.base3}}", 487 | "selectionInactiveForeground": "{{theme.colors.base9}}", 488 | "sortIconColor": "{{theme.colors.base9}}", 489 | "stripeColor": "{{theme.colors.base1}}" 490 | }, 491 | "TableHeader": { 492 | "background": "{{theme.colors.base2}}", 493 | "bottomSeparatorColor": "{{theme.colors.base3}}", 494 | "cellBorder": "4,0,4,0", 495 | "foreground": "{{theme.colors.base9}}", 496 | "focusCellBackground": "{{theme.colors.base4}}", 497 | "separatorColor": "{{theme.colors.base3}}" 498 | }, 499 | "textText": "{{theme.colors.base8}}", 500 | "TextArea": { 501 | "background": "{{theme.colors.base3}}", 502 | "caretForeground": "{{theme.colors.base9}}", 503 | "foreground": "{{theme.colors.base9}}", 504 | "inactiveForeground": "{{theme.colors.base6}}", 505 | "selectionBackground": "{{theme.colors.base6}}", 506 | "selectionForeground": "{{theme.colors.base9}}" 507 | }, 508 | "TextField": { 509 | "background": "{{theme.colors.base3}}", 510 | "caretForeground": "{{theme.colors.base9}}", 511 | "foreground": "{{theme.colors.base9}}", 512 | "inactiveForeground": "{{theme.colors.base6}}", 513 | "selectionBackground": "{{theme.colors.base6}}", 514 | "selectionForeground": "{{theme.colors.base9}}" 515 | }, 516 | "TextPane": { 517 | "background": "{{theme.colors.base3}}", 518 | "caretForeground": "{{theme.colors.base9}}", 519 | "foreground": "{{theme.colors.base9}}", 520 | "inactiveForeground": "{{theme.colors.base6}}", 521 | "selectionBackground": "{{theme.colors.base6}}", 522 | "selectionForeground": "{{theme.colors.base9}}" 523 | }, 524 | "TitlePane": { 525 | "background": "{{theme.colors.base1}}", 526 | "Button.hoverBackground": "{{theme.colors.base6}}", 527 | "inactiveBackground": "{{theme.colors.base2}}", 528 | "infoForeground": "{{theme.colors.base8}}", 529 | "inactiveInfoForeground": "{{theme.colors.base8}}" 530 | }, 531 | "TitledBorder": { 532 | "titleColor": "{{theme.colors.base2}}" 533 | }, 534 | "ToggleButton": { 535 | "borderColor": "{{theme.colors.base4}}", 536 | "buttonColor": "{{theme.colors.base9}}", 537 | "disabledText": "{{theme.colors.base6}}", 538 | "foreground": "{{theme.colors.base8}}", 539 | "offForeground": "{{theme.colors.base2}}", 540 | "offBackground": "{{theme.colors.base2}}", 541 | "onBackground": "{{theme.colors.base9}}", 542 | "onForeground": "{{theme.colors.base9}}" 543 | }, 544 | "ToolBar": { 545 | "background": "{{theme.colors.base1}}", 546 | "borderHandleColor": "{{theme.colors.base8}}", 547 | "floatingForeground": "{{theme.colors.base8}}", 548 | "foreground": "{{theme.colors.base9}}" 549 | }, 550 | "ToolTip": { 551 | "Actions": { 552 | "background": "{{theme.colors.base2}}", 553 | "infoForeground": "{{theme.colors.base8}}" 554 | }, 555 | "background": "{{theme.colors.base2}}", 556 | "borderColor": "{{theme.colors.base6}}", 557 | "foreground": "{{theme.colors.base9}}", 558 | "infoForeground": "{{theme.colors.base8}}", 559 | "shortcutForeground": "{{theme.colors.base8}}" 560 | }, 561 | "ToolWindow": { 562 | "Button": { 563 | "hoverBackground": "{{theme.colors.base3}}", 564 | "selectedForeground": "{{theme.colors.base9}}", 565 | "selectedBackground": "{{theme.colors.base3}}" 566 | }, 567 | "Header": { 568 | "background": "{{theme.colors.base2}}", 569 | "borderColor": "{{theme.colors.base3}}", 570 | "inactiveBackground": "{{theme.colors.base2}}" 571 | }, 572 | "HeaderCloseButton": { 573 | "background": "{{theme.colors.base2}}" 574 | }, 575 | "HeaderTab": { 576 | "hoverBackground": "{{theme.colors.base3}}", 577 | "hoverInactiveBackground": "{{theme.colors.base3}}", 578 | "inactiveUnderlineColor": "{{theme.colors.base9}}", 579 | "selectedInactiveBackground": "{{theme.colors.base2}}", 580 | "underlineColor": "{{theme.colors.base9}}", 581 | "underlinedTabBackground": "{{theme.colors.base3}}", 582 | "underlinedTabInactiveBackground": "{{theme.colors.base3}}" 583 | } 584 | }, 585 | "Tree": { 586 | "background": "{{theme.colors.base1}}", 587 | "foreground": "{{theme.colors.base8}}", 588 | "hash": "{{theme.colors.base2}}", 589 | "modifiedItemForeground": "{{theme.colors.base9}}", 590 | "rowHeight": 22, 591 | "selectionBackground": "{{theme.colors.base2}}", 592 | "selectionForeground": "{{theme.colors.base9}}", 593 | "selectionInactiveBackground": "{{theme.colors.base2}}" 594 | }, 595 | "UiDesigner": { 596 | "Panel": { 597 | "background": "{{theme.colors.base2}}" 598 | }, 599 | "Preview": { 600 | "background": "{{theme.colors.base2}}" 601 | } 602 | }, 603 | "ValidationTooltip": { 604 | "errorBackground": "{{theme.colors.base3}}", 605 | "errorBorderColor": "{{theme.colors.base3}}", 606 | "warningBackground": "{{theme.colors.base3}}", 607 | "warningBorderColor": "{{theme.colors.base3}}" 608 | }, 609 | "VersionControl": { 610 | "FileHistory": { 611 | "Commit": { 612 | "selectedBranchBackground": "{{theme.colors.base2}}" 613 | } 614 | }, 615 | "GitLog": { 616 | "localBranchIconColor": "{{theme.colors.base9}}", 617 | "otherIconColor": "{{theme.colors.base8}}", 618 | "remoteBranchIconColor": "{{theme.colors.base9}}", 619 | "tagIconColor": "{{theme.colors.base8}}" 620 | }, 621 | "HgLog": { 622 | "branchIconColor": "{{theme.colors.base9}}", 623 | "bookmarkIconColor": "{{theme.colors.base9}}", 624 | "closedBranchIconColor": "{{theme.colors.base6}}", 625 | "localTagIconColor": "{{theme.colors.base8}}", 626 | "mqTagIconColor": "{{theme.colors.base8}}", 627 | "tagIconColor": "{{theme.colors.base8}}", 628 | "tipIconColor": "{{theme.colors.base8}}" 629 | }, 630 | "Log": { 631 | "Commit": { 632 | "unmatchedForeground": "{{theme.colors.base8}}", 633 | "currentBranchBackground": "{{theme.colors.base3}}" 634 | } 635 | }, 636 | "RefLabel": { 637 | "foreground": "{{theme.colors.base9}}", 638 | "backgroundBase": "{{theme.colors.base6}}" 639 | } 640 | }, 641 | "Viewport": { 642 | "background": "{{theme.colors.base1}}", 643 | "foreground": "{{theme.colors.base9}}" 644 | }, 645 | "WelcomeScreen": { 646 | "background": "{{theme.colors.base2}}", 647 | "borderColor": "{{theme.colors.base3}}", 648 | "captionBackground": "{{theme.colors.base1}}", 649 | "captionForeground": "{{theme.colors.base9}}", 650 | "footerBackground": "{{theme.colors.base1}}", 651 | "footerForeground": "{{theme.colors.base9}}", 652 | "headerBackground": "{{theme.colors.base2}}", 653 | "headerForeground": "{{theme.colors.base9}}", 654 | "Projects": { 655 | "background": "{{theme.colors.base1}}", 656 | "selectionBackground": "{{theme.colors.base2}}", 657 | "selectionInactiveBackground": "{{theme.colors.base2}}" 658 | }, 659 | "separatorColor": "{{theme.colors.base3}}" 660 | }, 661 | "window": "{{theme.colors.base2}}", 662 | "Window": { 663 | "border": "0,0,0,0,{{theme.colors.base3}}" 664 | }, 665 | "windowBorder": "{{theme.colors.base3}}", 666 | "windowText": "{{theme.colors.base8}}" 667 | }, 668 | "icons": { 669 | "ColorPalette": { 670 | "Checkbox.Background.Default.Dark": "{{theme.colors.base4}}", 671 | "Checkbox.Background.Disabled.Dark": "{{theme.colors.base1}}", 672 | "Checkbox.Background.Selected.Dark": "{{theme.colors.base4}}", 673 | "Checkbox.Border.Default.Dark": "{{theme.colors.base4}}", 674 | "Checkbox.Border.Disabled.Dark": "{{theme.colors.base1}}", 675 | "Checkbox.Border.Selected.Dark": "{{theme.colors.base4}}", 676 | "Checkbox.Focus.Thin.Default.Dark": "{{theme.colors.base4}}", 677 | "Checkbox.Focus.Thin.Selected.Dark": "{{theme.colors.base1}}", 678 | "Checkbox.Focus.Wide.Dark": "{{theme.colors.base4}}", 679 | "Checkbox.Foreground.Disabled.Dark": "{{theme.colors.base8}}", 680 | "Checkbox.Foreground.Selected.Dark": "{{theme.colors.base9}}" 681 | } 682 | } 683 | } -------------------------------------------------------------------------------- /theme/jetbrains/src/light.theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "{{theme.name}}", 3 | "dark": false, 4 | "author": "Subtheme", 5 | "editorScheme": "/schemes/light.xml", 6 | "ui": { 7 | "*": { 8 | "background": "{{theme.colors.base03}}", 9 | "borderColor": "{{theme.colors.base01}}", 10 | "disabledBackground": "{{theme.colors.base02}}", 11 | "disabledBorderColor": "{{theme.colors.base01}}", 12 | "inactiveBackground": "{{theme.colors.base01}}", 13 | "lightSelectionBackground": "{{theme.colors.base01}}", 14 | "lightSelectionInactiveBackground": "{{theme.colors.base02}}", 15 | "lineSeparatorColor": "{{theme.colors.base01}}", 16 | "selectionBackground": "{{theme.colors.blue}}", 17 | "selectionInactiveBackground": "{{theme.colors.base01}}", 18 | "separatorColor": "{{theme.colors.base01}}", 19 | "separatorForeground": "{{theme.colors.base01}}", 20 | "underlineColor": "{{theme.colors.blue}}", 21 | "underlineHeight": 2 22 | }, 23 | "Borders": { 24 | "color": "{{theme.colors.base01}}", 25 | "ContrastBorderColor": "{{theme.colors.base01}}" 26 | }, 27 | "Button": { 28 | "arc": 8, 29 | "default": { 30 | "endBackground": "{{theme.colors.blue}}", 31 | "endBorderColor": "00000000", 32 | "focusedBorderColor": "{{theme.colors.blue}}", 33 | "startBackground": "{{theme.colors.blue}}", 34 | "startBorderColor": "00000000" 35 | }, 36 | "endBackground": "{{theme.colors.base01}}", 37 | "endBorderColor": "{{theme.colors.base01}}", 38 | "focusedBorderColor": "{{theme.colors.blue}}", 39 | "shadowColor": "00000000", 40 | "startBackground": "{{theme.colors.base01}}", 41 | "startBorderColor": "{{theme.colors.base01}}" 42 | }, 43 | "DefaultTabs": { 44 | "background": "{{theme.colors.base02}}", 45 | "hoverBackground": "{{theme.colors.base01}}", 46 | "underlineColor": "{{theme.colors.blue}}", 47 | "underlinedTabBackground": "{{theme.colors.base02}}", 48 | "underlineHeight": 2 49 | }, 50 | "EditorTabs": { 51 | "background": "{{theme.colors.base02}}", 52 | "inactiveUnderlineColor": "{{theme.colors.blue}}", 53 | "underlinedTabBackground": "{{theme.colors.base03}}", 54 | "underlineColor": "{{theme.colors.blue}}", 55 | "underlineHeight": 2 56 | }, 57 | "FileColor": { 58 | "Yellow": "00000000" 59 | }, 60 | "Popup": { 61 | "Header": { 62 | "activeBackground": "{{theme.colors.base01}}", 63 | "inactiveBackground": "{{theme.colors.base01}}" 64 | } 65 | }, 66 | "SearchEverywhere": { 67 | "Tab": { 68 | "selectedBackground": "{{theme.colors.base01}}" 69 | } 70 | }, 71 | "SidePanel": { 72 | "background": "{{theme.colors.base02}}" 73 | }, 74 | "StatusBar": { 75 | "borderColor": "{{theme.colors.base01}}", 76 | "hoverBackground": "{{theme.colors.base01}}" 77 | }, 78 | "TabbedPane": { 79 | "hoverColor": "{{theme.colors.base01}}" 80 | }, 81 | "Table": { 82 | "stripeColor": "{{theme.colors.base02}}" 83 | }, 84 | "ToolWindow": { 85 | "Header": { 86 | "background": "{{theme.colors.base02}}", 87 | "borderColor": "{{theme.colors.base01}}", 88 | "inactiveBackground": "{{theme.colors.base02}}" 89 | }, 90 | "Button": { 91 | "hoverBackground": "{{theme.colors.base01}}", 92 | "selectedBackground": "{{theme.colors.base01}}", 93 | "selectedForeground": "000000" 94 | } 95 | }, 96 | "Tree": { 97 | "background": "{{theme.colors.base02}}", 98 | "rowHeight": 22 99 | } 100 | } 101 | } -------------------------------------------------------------------------------- /theme/jetbrains/sublate.yaml: -------------------------------------------------------------------------------- 1 | render: 2 | - resources/schemes/*.xml 3 | - src/*.json --------------------------------------------------------------------------------