├── assets ├── .gitkeep └── previews │ ├── frappe.webp │ ├── latte.webp │ ├── mocha.webp │ ├── preview.webp │ └── macchiato.webp ├── renovate.json ├── .editorconfig ├── .catppuccin.yaml ├── LICENSE ├── README.md ├── themes ├── catppuccin-latte.bntheme ├── catppuccin-mocha.bntheme ├── catppuccin-frappe.bntheme └── catppuccin-macchiato.bntheme └── binary-ninja.tera /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/previews/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/binary-ninja/HEAD/assets/previews/frappe.webp -------------------------------------------------------------------------------- /assets/previews/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/binary-ninja/HEAD/assets/previews/latte.webp -------------------------------------------------------------------------------- /assets/previews/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/binary-ninja/HEAD/assets/previews/mocha.webp -------------------------------------------------------------------------------- /assets/previews/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/binary-ninja/HEAD/assets/previews/preview.webp -------------------------------------------------------------------------------- /assets/previews/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/binary-ninja/HEAD/assets/previews/macchiato.webp -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "local>catppuccin/renovate-config" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /.catppuccin.yaml: -------------------------------------------------------------------------------- 1 | # A catppuccin RC for Binary Ninja. In beta, specs may change. 2 | app_name: "Binary Ninja" 3 | binary_name: binary-ninja 4 | installation: 5 | location: 6 | macos: "~/Library/Application Support/Binary Ninja/" 7 | linux: "~/.binaryninja/" 8 | windows: "%appdata%/Binary Ninja/" 9 | flavours: 10 | all: 11 | default: 12 | - themes/ 13 | latte: 14 | default: 15 | - themes/catppuccin-latte.bntheme 16 | frappe: 17 | default: 18 | - themes/catppuccin-frappe.bntheme 19 | macchiato: 20 | default: 21 | - themes/catppuccin-macchiato.bntheme 22 | mocha: 23 | default: 24 | - themes/catppuccin-mocha.bntheme 25 | to: themes/ 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Catppuccin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Logo
3 | 4 | Catppuccin for Binary Ninja 5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 |

13 | 14 |

15 | 16 |

17 | 18 | ## Previews 19 | 20 |
21 | 🌻 Latte 22 | 23 |
24 |
25 | 🪴 Frappé 26 | 27 |
28 |
29 | 🌺 Macchiato 30 | 31 |
32 |
33 | 🌿 Mocha 34 | 35 |
36 | 37 | ## Usage 38 | 39 | 1. Clone this repository 40 | 2. Move the `themes` folder in your Binary Ninja directory in your user's folder 41 | - **macOS**: `~/Library/Application Support/Binary Ninja/` 42 | - **Linux**: `~/.binaryninja/` 43 | - **Windows**: `%APPDATA%\Binary Ninja\` 44 | 2. Open the app's settings 45 | 3. Search for `theme` and select the theme you want to use 46 | 47 | ## 💝 Thanks to 48 | 49 | - [Krypton](https://github.com/kkrypt0nn) 50 | 51 |   52 | 53 |

54 | 55 |

56 | 57 |

58 | Copyright © 2021-present Catppuccin Org 59 |

60 | 61 |

62 | 63 |

64 | -------------------------------------------------------------------------------- /themes/catppuccin-latte.bntheme: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Catppuccin Latte", 3 | "style": "Fusion", 4 | 5 | "colors": { 6 | "base": [239, 241, 245], 7 | "text": [76, 79, 105], 8 | "sky": [4, 165, 229], 9 | "green": [64, 160, 43], 10 | "yellow": [223, 142, 29], 11 | "red": [210, 15, 57], 12 | "rosewater": [220, 138, 120], 13 | "lavender": [114, 135, 253], 14 | "blue": [30, 102, 245], 15 | "surface0": [204, 208, 218], 16 | "surface2": [172, 176, 190] 17 | }, 18 | 19 | "palette": { 20 | "Window": "base", 21 | "WindowText": "text", 22 | "Base": "base", 23 | "AlternateBase": "surface0", 24 | "ToolTipBase": "base", 25 | "ToolTipText": "surface2", 26 | "Text": "text", 27 | "Button": "base", 28 | "ButtonText": "surface2", 29 | "BrightText": "surface2", 30 | "Link": "rosewater", 31 | "Highlight": "sky", 32 | "HighlightedText": "base", 33 | "Light": "surface2" 34 | }, 35 | 36 | "theme-colors": { 37 | "addressColor": "green", 38 | "modifiedColor": "red", 39 | "insertedColor": "sky", 40 | "notPresentColor": "sky", 41 | "selectionColor": "surface2", 42 | "outlineColor": "green", 43 | "backgroundHighlightDarkColor": "base", 44 | "backgroundHighlightLightColor": "base", 45 | "boldBackgroundHighlightDarkColor": "blue", 46 | "boldBackgroundHighlightLightColor": "red", 47 | "alphanumericHighlightColor": "sky", 48 | "printableHighlightColor": "yellow", 49 | "graphBackgroundDarkColor": "base", 50 | "graphBackgroundLightColor": "base", 51 | "graphNodeDarkColor": "base", 52 | "graphNodeLightColor": "base", 53 | "graphNodeOutlineColor": "surface2", 54 | "trueBranchColor": "green", 55 | "falseBranchColor": "red", 56 | "unconditionalBranchColor": "sky", 57 | "altTrueBranchColor": "sky", 58 | "altFalseBranchColor": "red", 59 | "altUnconditionalBranchColor": "sky", 60 | "registerColor": "red", 61 | "numberColor": "yellow", 62 | "codeSymbolColor": "green", 63 | "dataSymbolColor": "lavender", 64 | "stackVariableColor": ["+", "text", "sky"], 65 | "importColor": ["+", "text","green"], 66 | "instructionHighlightColor": ["~", "surface2", "base", 50], 67 | "tokenHighlightColor": "lavender", 68 | "annotationColor": "text", 69 | "opcodeColor": "surface2", 70 | "linearDisassemblyFunctionHeaderColor": "base", 71 | "linearDisassemblyBlockColor": "base", 72 | "linearDisassemblyNoteColor": "base", 73 | "linearDisassemblySeparatorColor": "surface2", 74 | "stringColor": "yellow", 75 | "typeNameColor": "sky", 76 | "fieldNameColor": "blue", 77 | "keywordColor": "green", 78 | "uncertainColor": "sky", 79 | "scriptConsoleOutputColor": "text", 80 | "scriptConsoleErrorColor": "red", 81 | "scriptConsoleEchoColor": "green", 82 | "blueStandardHighlightColor": "blue", 83 | "greenStandardHighlightColor": "green", 84 | "cyanStandardHighlightColor": "sky", 85 | "redStandardHighlightColor": "red", 86 | "magentaStandardHighlightColor": "lavender", 87 | "yellowStandardHighlightColor": "yellow", 88 | "orangeStandardHighlightColor": ["+", "yellow", "red"], 89 | "whiteStandardHighlightColor": "text", 90 | "blackStandardHighlightColor": "base" 91 | } 92 | } -------------------------------------------------------------------------------- /themes/catppuccin-mocha.bntheme: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Catppuccin Mocha", 3 | "style": "Fusion", 4 | 5 | "colors": { 6 | "base": [30, 30, 46], 7 | "text": [205, 214, 244], 8 | "sky": [137, 220, 235], 9 | "green": [166, 227, 161], 10 | "yellow": [249, 226, 175], 11 | "red": [243, 139, 168], 12 | "rosewater": [245, 224, 220], 13 | "lavender": [180, 190, 254], 14 | "blue": [137, 180, 250], 15 | "surface0": [49, 50, 68], 16 | "surface2": [88, 91, 112] 17 | }, 18 | 19 | "palette": { 20 | "Window": "base", 21 | "WindowText": "text", 22 | "Base": "base", 23 | "AlternateBase": "surface0", 24 | "ToolTipBase": "base", 25 | "ToolTipText": "surface2", 26 | "Text": "text", 27 | "Button": "base", 28 | "ButtonText": "surface2", 29 | "BrightText": "surface2", 30 | "Link": "rosewater", 31 | "Highlight": "sky", 32 | "HighlightedText": "base", 33 | "Light": "surface2" 34 | }, 35 | 36 | "theme-colors": { 37 | "addressColor": "green", 38 | "modifiedColor": "red", 39 | "insertedColor": "sky", 40 | "notPresentColor": "sky", 41 | "selectionColor": "surface2", 42 | "outlineColor": "green", 43 | "backgroundHighlightDarkColor": "base", 44 | "backgroundHighlightLightColor": "base", 45 | "boldBackgroundHighlightDarkColor": "blue", 46 | "boldBackgroundHighlightLightColor": "red", 47 | "alphanumericHighlightColor": "sky", 48 | "printableHighlightColor": "yellow", 49 | "graphBackgroundDarkColor": "base", 50 | "graphBackgroundLightColor": "base", 51 | "graphNodeDarkColor": "base", 52 | "graphNodeLightColor": "base", 53 | "graphNodeOutlineColor": "surface2", 54 | "trueBranchColor": "green", 55 | "falseBranchColor": "red", 56 | "unconditionalBranchColor": "sky", 57 | "altTrueBranchColor": "sky", 58 | "altFalseBranchColor": "red", 59 | "altUnconditionalBranchColor": "sky", 60 | "registerColor": "red", 61 | "numberColor": "yellow", 62 | "codeSymbolColor": "green", 63 | "dataSymbolColor": "lavender", 64 | "stackVariableColor": ["+", "text", "sky"], 65 | "importColor": ["+", "text","green"], 66 | "instructionHighlightColor": ["~", "surface2", "base", 50], 67 | "tokenHighlightColor": "lavender", 68 | "annotationColor": "text", 69 | "opcodeColor": "surface2", 70 | "linearDisassemblyFunctionHeaderColor": "base", 71 | "linearDisassemblyBlockColor": "base", 72 | "linearDisassemblyNoteColor": "base", 73 | "linearDisassemblySeparatorColor": "surface2", 74 | "stringColor": "yellow", 75 | "typeNameColor": "sky", 76 | "fieldNameColor": "blue", 77 | "keywordColor": "green", 78 | "uncertainColor": "sky", 79 | "scriptConsoleOutputColor": "text", 80 | "scriptConsoleErrorColor": "red", 81 | "scriptConsoleEchoColor": "green", 82 | "blueStandardHighlightColor": "blue", 83 | "greenStandardHighlightColor": "green", 84 | "cyanStandardHighlightColor": "sky", 85 | "redStandardHighlightColor": "red", 86 | "magentaStandardHighlightColor": "lavender", 87 | "yellowStandardHighlightColor": "yellow", 88 | "orangeStandardHighlightColor": ["+", "yellow", "red"], 89 | "whiteStandardHighlightColor": "text", 90 | "blackStandardHighlightColor": "base" 91 | } 92 | } -------------------------------------------------------------------------------- /themes/catppuccin-frappe.bntheme: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Catppuccin Frappé", 3 | "style": "Fusion", 4 | 5 | "colors": { 6 | "base": [48, 52, 70], 7 | "text": [198, 208, 245], 8 | "sky": [153, 209, 219], 9 | "green": [166, 209, 137], 10 | "yellow": [229, 200, 144], 11 | "red": [231, 130, 132], 12 | "rosewater": [242, 213, 207], 13 | "lavender": [186, 187, 241], 14 | "blue": [140, 170, 238], 15 | "surface0": [65, 69, 89], 16 | "surface2": [98, 104, 128] 17 | }, 18 | 19 | "palette": { 20 | "Window": "base", 21 | "WindowText": "text", 22 | "Base": "base", 23 | "AlternateBase": "surface0", 24 | "ToolTipBase": "base", 25 | "ToolTipText": "surface2", 26 | "Text": "text", 27 | "Button": "base", 28 | "ButtonText": "surface2", 29 | "BrightText": "surface2", 30 | "Link": "rosewater", 31 | "Highlight": "sky", 32 | "HighlightedText": "base", 33 | "Light": "surface2" 34 | }, 35 | 36 | "theme-colors": { 37 | "addressColor": "green", 38 | "modifiedColor": "red", 39 | "insertedColor": "sky", 40 | "notPresentColor": "sky", 41 | "selectionColor": "surface2", 42 | "outlineColor": "green", 43 | "backgroundHighlightDarkColor": "base", 44 | "backgroundHighlightLightColor": "base", 45 | "boldBackgroundHighlightDarkColor": "blue", 46 | "boldBackgroundHighlightLightColor": "red", 47 | "alphanumericHighlightColor": "sky", 48 | "printableHighlightColor": "yellow", 49 | "graphBackgroundDarkColor": "base", 50 | "graphBackgroundLightColor": "base", 51 | "graphNodeDarkColor": "base", 52 | "graphNodeLightColor": "base", 53 | "graphNodeOutlineColor": "surface2", 54 | "trueBranchColor": "green", 55 | "falseBranchColor": "red", 56 | "unconditionalBranchColor": "sky", 57 | "altTrueBranchColor": "sky", 58 | "altFalseBranchColor": "red", 59 | "altUnconditionalBranchColor": "sky", 60 | "registerColor": "red", 61 | "numberColor": "yellow", 62 | "codeSymbolColor": "green", 63 | "dataSymbolColor": "lavender", 64 | "stackVariableColor": ["+", "text", "sky"], 65 | "importColor": ["+", "text","green"], 66 | "instructionHighlightColor": ["~", "surface2", "base", 50], 67 | "tokenHighlightColor": "lavender", 68 | "annotationColor": "text", 69 | "opcodeColor": "surface2", 70 | "linearDisassemblyFunctionHeaderColor": "base", 71 | "linearDisassemblyBlockColor": "base", 72 | "linearDisassemblyNoteColor": "base", 73 | "linearDisassemblySeparatorColor": "surface2", 74 | "stringColor": "yellow", 75 | "typeNameColor": "sky", 76 | "fieldNameColor": "blue", 77 | "keywordColor": "green", 78 | "uncertainColor": "sky", 79 | "scriptConsoleOutputColor": "text", 80 | "scriptConsoleErrorColor": "red", 81 | "scriptConsoleEchoColor": "green", 82 | "blueStandardHighlightColor": "blue", 83 | "greenStandardHighlightColor": "green", 84 | "cyanStandardHighlightColor": "sky", 85 | "redStandardHighlightColor": "red", 86 | "magentaStandardHighlightColor": "lavender", 87 | "yellowStandardHighlightColor": "yellow", 88 | "orangeStandardHighlightColor": ["+", "yellow", "red"], 89 | "whiteStandardHighlightColor": "text", 90 | "blackStandardHighlightColor": "base" 91 | } 92 | } -------------------------------------------------------------------------------- /themes/catppuccin-macchiato.bntheme: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Catppuccin Macchiato", 3 | "style": "Fusion", 4 | 5 | "colors": { 6 | "base": [36, 39, 58], 7 | "text": [202, 211, 245], 8 | "sky": [145, 215, 227], 9 | "green": [166, 218, 149], 10 | "yellow": [238, 212, 159], 11 | "red": [237, 135, 150], 12 | "rosewater": [244, 219, 214], 13 | "lavender": [183, 189, 248], 14 | "blue": [138, 173, 244], 15 | "surface0": [54, 58, 79], 16 | "surface2": [91, 96, 120] 17 | }, 18 | 19 | "palette": { 20 | "Window": "base", 21 | "WindowText": "text", 22 | "Base": "base", 23 | "AlternateBase": "surface0", 24 | "ToolTipBase": "base", 25 | "ToolTipText": "surface2", 26 | "Text": "text", 27 | "Button": "base", 28 | "ButtonText": "surface2", 29 | "BrightText": "surface2", 30 | "Link": "rosewater", 31 | "Highlight": "sky", 32 | "HighlightedText": "base", 33 | "Light": "surface2" 34 | }, 35 | 36 | "theme-colors": { 37 | "addressColor": "green", 38 | "modifiedColor": "red", 39 | "insertedColor": "sky", 40 | "notPresentColor": "sky", 41 | "selectionColor": "surface2", 42 | "outlineColor": "green", 43 | "backgroundHighlightDarkColor": "base", 44 | "backgroundHighlightLightColor": "base", 45 | "boldBackgroundHighlightDarkColor": "blue", 46 | "boldBackgroundHighlightLightColor": "red", 47 | "alphanumericHighlightColor": "sky", 48 | "printableHighlightColor": "yellow", 49 | "graphBackgroundDarkColor": "base", 50 | "graphBackgroundLightColor": "base", 51 | "graphNodeDarkColor": "base", 52 | "graphNodeLightColor": "base", 53 | "graphNodeOutlineColor": "surface2", 54 | "trueBranchColor": "green", 55 | "falseBranchColor": "red", 56 | "unconditionalBranchColor": "sky", 57 | "altTrueBranchColor": "sky", 58 | "altFalseBranchColor": "red", 59 | "altUnconditionalBranchColor": "sky", 60 | "registerColor": "red", 61 | "numberColor": "yellow", 62 | "codeSymbolColor": "green", 63 | "dataSymbolColor": "lavender", 64 | "stackVariableColor": ["+", "text", "sky"], 65 | "importColor": ["+", "text","green"], 66 | "instructionHighlightColor": ["~", "surface2", "base", 50], 67 | "tokenHighlightColor": "lavender", 68 | "annotationColor": "text", 69 | "opcodeColor": "surface2", 70 | "linearDisassemblyFunctionHeaderColor": "base", 71 | "linearDisassemblyBlockColor": "base", 72 | "linearDisassemblyNoteColor": "base", 73 | "linearDisassemblySeparatorColor": "surface2", 74 | "stringColor": "yellow", 75 | "typeNameColor": "sky", 76 | "fieldNameColor": "blue", 77 | "keywordColor": "green", 78 | "uncertainColor": "sky", 79 | "scriptConsoleOutputColor": "text", 80 | "scriptConsoleErrorColor": "red", 81 | "scriptConsoleEchoColor": "green", 82 | "blueStandardHighlightColor": "blue", 83 | "greenStandardHighlightColor": "green", 84 | "cyanStandardHighlightColor": "sky", 85 | "redStandardHighlightColor": "red", 86 | "magentaStandardHighlightColor": "lavender", 87 | "yellowStandardHighlightColor": "yellow", 88 | "orangeStandardHighlightColor": ["+", "yellow", "red"], 89 | "whiteStandardHighlightColor": "text", 90 | "blackStandardHighlightColor": "base" 91 | } 92 | } -------------------------------------------------------------------------------- /binary-ninja.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: 2.0.0 4 | matrix: 5 | - flavor 6 | filename: "themes/catppuccin-{{flavor.identifier}}.bntheme" 7 | --- 8 | {%- macro rgb_value(c) -%} 9 | [{{c.rgb.r}}, {{c.rgb.g}}, {{c.rgb.b}}] 10 | {%- endmacro rgb_value -%} 11 | {%- set palette = flavor.colors -%} 12 | { 13 | "name": "Catppuccin {{ flavor.name }}", 14 | "style": "Fusion", 15 | 16 | "colors": { 17 | "base": {{ self::rgb_value(c=palette.base) }}, 18 | "text": {{ self::rgb_value(c=palette.text) }}, 19 | "sky": {{ self::rgb_value(c=palette.sky) }}, 20 | "green": {{ self::rgb_value(c=palette.green) }}, 21 | "yellow": {{ self::rgb_value(c=palette.yellow) }}, 22 | "red": {{ self::rgb_value(c=palette.red) }}, 23 | "rosewater": {{ self::rgb_value(c=palette.rosewater) }}, 24 | "lavender": {{ self::rgb_value(c=palette.lavender) }}, 25 | "blue": {{ self::rgb_value(c=palette.blue) }}, 26 | "surface0": {{ self::rgb_value(c=palette.surface0) }}, 27 | "surface2": {{ self::rgb_value(c=palette.surface2) }} 28 | }, 29 | 30 | "palette": { 31 | "Window": "base", 32 | "WindowText": "text", 33 | "Base": "base", 34 | "AlternateBase": "surface0", 35 | "ToolTipBase": "base", 36 | "ToolTipText": "surface2", 37 | "Text": "text", 38 | "Button": "base", 39 | "ButtonText": "surface2", 40 | "BrightText": "surface2", 41 | "Link": "rosewater", 42 | "Highlight": "sky", 43 | "HighlightedText": "base", 44 | "Light": "surface2" 45 | }, 46 | 47 | "theme-colors": { 48 | "addressColor": "green", 49 | "modifiedColor": "red", 50 | "insertedColor": "sky", 51 | "notPresentColor": "sky", 52 | "selectionColor": "surface2", 53 | "outlineColor": "green", 54 | "backgroundHighlightDarkColor": "base", 55 | "backgroundHighlightLightColor": "base", 56 | "boldBackgroundHighlightDarkColor": "blue", 57 | "boldBackgroundHighlightLightColor": "red", 58 | "alphanumericHighlightColor": "sky", 59 | "printableHighlightColor": "yellow", 60 | "graphBackgroundDarkColor": "base", 61 | "graphBackgroundLightColor": "base", 62 | "graphNodeDarkColor": "base", 63 | "graphNodeLightColor": "base", 64 | "graphNodeOutlineColor": "surface2", 65 | "trueBranchColor": "green", 66 | "falseBranchColor": "red", 67 | "unconditionalBranchColor": "sky", 68 | "altTrueBranchColor": "sky", 69 | "altFalseBranchColor": "red", 70 | "altUnconditionalBranchColor": "sky", 71 | "registerColor": "red", 72 | "numberColor": "yellow", 73 | "codeSymbolColor": "green", 74 | "dataSymbolColor": "lavender", 75 | "stackVariableColor": ["+", "text", "sky"], 76 | "importColor": ["+", "text","green"], 77 | "instructionHighlightColor": ["~", "surface2", "base", 50], 78 | "tokenHighlightColor": "lavender", 79 | "annotationColor": "text", 80 | "opcodeColor": "surface2", 81 | "linearDisassemblyFunctionHeaderColor": "base", 82 | "linearDisassemblyBlockColor": "base", 83 | "linearDisassemblyNoteColor": "base", 84 | "linearDisassemblySeparatorColor": "surface2", 85 | "stringColor": "yellow", 86 | "typeNameColor": "sky", 87 | "fieldNameColor": "blue", 88 | "keywordColor": "green", 89 | "uncertainColor": "sky", 90 | "scriptConsoleOutputColor": "text", 91 | "scriptConsoleErrorColor": "red", 92 | "scriptConsoleEchoColor": "green", 93 | "blueStandardHighlightColor": "blue", 94 | "greenStandardHighlightColor": "green", 95 | "cyanStandardHighlightColor": "sky", 96 | "redStandardHighlightColor": "red", 97 | "magentaStandardHighlightColor": "lavender", 98 | "yellowStandardHighlightColor": "yellow", 99 | "orangeStandardHighlightColor": ["+", "yellow", "red"], 100 | "whiteStandardHighlightColor": "text", 101 | "blackStandardHighlightColor": "base" 102 | } 103 | } --------------------------------------------------------------------------------