summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
Diffstat (limited to 'themes')
-rw-r--r--themes/dark-blue.theme108
-rw-r--r--themes/high-contrast.theme107
-rw-r--r--themes/solarized-dark.theme104
-rw-r--r--themes/solarized-light.theme104
4 files changed, 423 insertions, 0 deletions
diff --git a/themes/dark-blue.theme b/themes/dark-blue.theme
new file mode 100644
index 00000000..b0f83598
--- /dev/null
+++ b/themes/dark-blue.theme
@@ -0,0 +1,108 @@
+{
+ "name": "Dark Blue",
+ "style": "Fusion",
+
+ "//": " Colors are specified as [Red, Green, Blue] values. Colors can be aliased in the 'colors' ",
+ "//": " section. Colors can also be averaged and mixed together using an RPN like notation: ",
+ "//": " '+' indicates 'average' - average the next two colors.",
+ "//": " '~' indicates 'mix' - mix the next two colors with the weight 0->255",
+ "//": " e.g.",
+ "//": " ['+', 'red', 'blue'] - average red and blue",
+ "//": " ['~', 'red', 'blue', 20] - mix a small amount of blue with red",
+ "//": " ['~', 'red', 'blue', 200] - mix a large amount of blue with red",
+ "//": " ['+', '~', 'red', 'blue', 20, 'green'] - mix red and blue with weight 20 then average with green",
+ "//": " The 'palette' section is to specify colors for the QPalette::ColorRole",
+
+ "colors": {
+ "background": [0, 0, 42],
+ "backgroundDark": [0, 0, 30],
+ "backgroundWindow": [0, 0, 80],
+ "backgroundHighlight": [0, 0, 128],
+ "content": [224, 224, 224],
+ "disabled": [144, 144, 144],
+ "selection": [96, 96, 96],
+ "selectionLight": [128, 128, 128],
+ "green": [0, 255, 0],
+ "red": [222, 143, 151],
+ "blue": [128, 198, 233],
+ "cyan": [142, 230, 237],
+ "lightCyan": [176, 221, 228],
+ "orange": [237, 189, 129],
+ "yellow": [237, 223, 179],
+ "magenta": [218, 196, 209]
+ },
+
+ "palette": {
+ "Window": "backgroundWindow",
+ "WindowText": "content",
+ "Base": "backgroundDark",
+ "AlternateBase": "background",
+ "ToolTipBase": "backgroundHighlight",
+ "ToolTipText": "content",
+ "Text": "content",
+ "Button": "backgroundHighlight",
+ "ButtonText": "content",
+ "BrightText": "yellow",
+ "Link": "blue",
+ "Highlight": "blue",
+ "HighlightedText": "backgroundDark",
+ "Light": ["+", "backgroundDark", "content"]
+ },
+
+ "theme-colors": {
+ "addressColor": "green",
+ "modifiedColor": "red",
+ "insertedColor": "blue",
+ "notPresentColor": "disabled",
+ "selectionColor": "selection",
+ "outlineColor": "content",
+ "backgroundHighlightDarkColor": "backgroundDark",
+ "backgroundHighlightLightColor": "backgroundWindow",
+ "boldBackgroundHighlightDarkColor": "backgroundDark",
+ "boldBackgroundHighlightLightColor": "selection",
+ "alphanumericHighlightColor": "blue",
+ "printableHighlightColor": "lightCyan",
+ "graphBackgroundDarkColor": "background",
+ "graphBackgroundLightColor": "background",
+ "graphNodeDarkColor": "backgroundHighlight",
+ "graphNodeLightColor": "backgroundHighlight",
+ "graphNodeOutlineColor": "disabled",
+ "trueBranchColor": "green",
+ "falseBranchColor": "red",
+ "unconditionalBranchColor": "blue",
+ "altTrueBranchColor": "blue",
+ "altFalseBranchColor": "orange",
+ "altUnconditionalBranchColor": "content",
+ "registerColor": "yellow",
+ "numberColor": "green",
+ "codeSymbolColor": "blue",
+ "dataSymbolColor": "cyan",
+ "stackVariableColor": ["+", "green", "content"],
+ "importColor": "orange",
+ "instructionHighlightColor": "selectionLight",
+ "tokenHighlightColor": "red",
+ "annotationColor": "magenta",
+ "opcodeColor": "disabled",
+ "linearDisassemblyFunctionHeaderColor": "backgroundHighlight",
+ "linearDisassemblyBlockColor": "background",
+ "linearDisassemblyNoteColor": ["~", "+", "backgroundDark", "background", "green", 48],
+ "linearDisassemblySeparatorColor": "disabled",
+ "stringColor": "magenta",
+ "typeNameColor": "orange",
+ "fieldNameColor": "lightCyan",
+ "keywordColor": "yellow",
+ "uncertainColor": "disabled",
+ "scriptConsoleOutputColor": "content",
+ "scriptConsoleErrorColor": "red",
+ "scriptConsoleEchoColor": "disabled",
+ "blueStandardHighlightColor": "blue",
+ "greenStandardHighlightColor": "green",
+ "cyanStandardHighlightColor": "cyan",
+ "redStandardHighlightColor": "red",
+ "magentaStandardHighlightColor": "magenta",
+ "yellowStandardHighlightColor": "yellow",
+ "orangeStandardHighlightColor": "orange",
+ "whiteStandardHighlightColor": "content",
+ "blackStandardHighlightColor": [0,0,0]
+ }
+} \ No newline at end of file
diff --git a/themes/high-contrast.theme b/themes/high-contrast.theme
new file mode 100644
index 00000000..ecaf7c7c
--- /dev/null
+++ b/themes/high-contrast.theme
@@ -0,0 +1,107 @@
+{
+ "name": "High Contrast 2",
+ "style": "Fusion",
+
+ "//": "Colors are specified as [Red, Green, Blue] values. Colors can be aliased in the",
+ "//": "'colors' section. Colors can also be averaged and mixed together using an RPN like notation.",
+ "//": "'+' indicates 'average' directs the parser to average the next two colors.",
+ "//": "'~' indicates 'mix' directs the parser to mix the next two colors with the specified weight 0->255",
+ "//": "e.g.",
+ "//": " ['+', 'red', 'blue'] - average red and blue",
+ "//": " ['~', 'red', 'blue', 20] - mix a small amount of blue into red",
+ "//": " ['+', '~', 'red', 'blue', 20, 'green'] - mix red and blue with weight 20 then average with green",
+ "//": "The 'palette' section is to specify colors for the QPalette::ColorRole",
+
+ "colors": {
+ "background": [220, 220, 220],
+ "backgroundDark": [255, 255, 255],
+ "backgroundWindow": [240, 240, 240],
+ "backgroundHighlight": [255, 255, 255],
+ "content": [31, 31, 31],
+ "disabled": [122, 122, 122],
+ "selection": [159, 159, 159],
+ "selectionLight": [128, 128, 128],
+ "green": [48, 130, 13],
+ "red": [191, 38, 36],
+ "blue": [0, 164, 199],
+ "cyan": [39, 140, 173],
+ "lightCyan": [53, 218, 224],
+ "orange": [224, 124, 53],
+ "yellow": [141, 141, 45],
+ "magenta": [32, 54, 53]
+ },
+
+ "palette": {
+ "Window": "backgroundWindow",
+ "WindowText": "content",
+ "Base": "backgroundDark",
+ "AlternateBase": "background",
+ "ToolTipBase": "backgroundHighlight",
+ "ToolTipText": "content",
+ "Text": "content",
+ "Button": "backgroundHighlight",
+ "ButtonText": "content",
+ "BrightText": "magenta",
+ "Link": "blue",
+ "Highlight": "blue",
+ "HighlightedText": "backgroundDark",
+ "Light": ["+", "backgroundDark", "content"]
+ },
+
+ "theme-colors": {
+ "addressColor": "green",
+ "modifiedColor": "red",
+ "insertedColor": "blue",
+ "notPresentColor": "disabled",
+ "selectionColor": "selection",
+ "outlineColor": "content",
+ "backgroundHighlightDarkColor": "backgroundDark",
+ "backgroundHighlightLightColor": "backgroundWindow",
+ "boldBackgroundHighlightDarkColor": "backgroundDark",
+ "boldBackgroundHighlightLightColor": "selection",
+ "alphanumericHighlightColor": "blue",
+ "printableHighlightColor": "lightCyan",
+ "graphBackgroundDarkColor": "background",
+ "graphBackgroundLightColor": "background",
+ "graphNodeDarkColor": "backgroundHighlight",
+ "graphNodeLightColor": "backgroundHighlight",
+ "graphNodeOutlineColor": "disabled",
+ "trueBranchColor": "green",
+ "falseBranchColor": "red",
+ "unconditionalBranchColor": "blue",
+ "altTrueBranchColor": "blue",
+ "altFalseBranchColor": "orange",
+ "altUnconditionalBranchColor": "content",
+ "registerColor": "magenta",
+ "numberColor": "green",
+ "codeSymbolColor": "blue",
+ "dataSymbolColor": "cyan",
+ "stackVariableColor": ["+", "green", "content"],
+ "importColor": "orange",
+ "instructionHighlightColor": "selectionLight",
+ "tokenHighlightColor": "red",
+ "annotationColor": "red",
+ "opcodeColor": "disabled",
+ "linearDisassemblyFunctionHeaderColor": "backgroundHighlight",
+ "linearDisassemblyBlockColor": "background",
+ "linearDisassemblyNoteColor": ["~", "+", "backgroundDark", "background", "green", 48],
+ "linearDisassemblySeparatorColor": "disabled",
+ "stringColor": "magenta",
+ "typeNameColor": "orange",
+ "fieldNameColor": "lightCyan",
+ "keywordColor": "yellow",
+ "uncertainColor": "disabled",
+ "scriptConsoleOutputColor": "content",
+ "scriptConsoleErrorColor": "red",
+ "scriptConsoleEchoColor": "disabled",
+ "blueStandardHighlightColor": "blue",
+ "greenStandardHighlightColor": "green",
+ "cyanStandardHighlightColor": "cyan",
+ "redStandardHighlightColor": "red",
+ "magentaStandardHighlightColor": "magenta",
+ "yellowStandardHighlightColor": "yellow",
+ "orangeStandardHighlightColor": "orange",
+ "whiteStandardHighlightColor": "content",
+ "blackStandardHighlightColor": [0, 0, 0]
+ }
+} \ No newline at end of file
diff --git a/themes/solarized-dark.theme b/themes/solarized-dark.theme
new file mode 100644
index 00000000..5d1860f3
--- /dev/null
+++ b/themes/solarized-dark.theme
@@ -0,0 +1,104 @@
+{
+ "name": "Solarized Dark 2",
+ "style": "Fusion",
+
+ "//": "Colors are specified as [Red, Green, Blue] values. Colors can be aliased in the",
+ "//": "'colors' section. Colors can also be averaged and mixed together using an RPN like notation.",
+ "//": "'+' indicates 'average' directs the parser to average the next two colors.",
+ "//": "'~' indicates 'mix' directs the parser to mix the next two colors with the specified weight 0->255",
+ "//": "e.g.",
+ "//": " ['+', 'red', 'blue'] - average red and blue",
+ "//": " ['~', 'red', 'blue', 20] - mix a small amount of blue into red",
+ "//": " ['+', '~', 'red', 'blue', 20, 'green'] - mix red and blue with weight 20 then average with green",
+ "//": "The 'palette' section is to specify colors for the QPalette::ColorRole",
+
+ "colors": {
+ "background": [0, 43, 54],
+ "backgroundHighlight": [7, 54, 66],
+ "content": [131, 148, 150],
+ "secondary": [88, 110, 117],
+ "emphasis": [147, 161, 161],
+ "yellow": [181, 137, 0],
+ "orange": [203, 75, 22],
+ "red": [220, 50, 47],
+ "magenta": [211, 54, 130],
+ "violet": [108, 113, 196],
+ "blue": [38, 139, 210],
+ "cyan": [42, 161, 152],
+ "green": [133, 153, 0]
+ },
+
+ "palette": {
+ "Window": "background",
+ "WindowText": "content",
+ "Base": "background",
+ "AlternateBase": "backgroundHighlight",
+ "ToolTipBase": "backgroundHighlight",
+ "ToolTipText": "content",
+ "Text": "content",
+ "Button": "backgroundHighlight",
+ "ButtonText": "content",
+ "BrightText": "emphasis",
+ "Link": "emphasis",
+ "Highlight": "backgroundHighlight",
+ "HighlightedText": "content",
+ "Light": ["+", "background", "content"]
+ },
+
+ "theme-colors": {
+ "addressColor": "secondary",
+ "modifiedColor": "red",
+ "insertedColor": "blue",
+ "notPresentColor": "secondary",
+ "selectionColor": ["+", "backgroundHighlight", "secondary"],
+ "outlineColor": "content",
+ "backgroundHighlightDarkColor": "background",
+ "backgroundHighlightLightColor": "backgroundHighlight",
+ "boldBackgroundHighlightDarkColor": "background",
+ "boldBackgroundHighlightLightColor": ["+", "background", "secondary"],
+ "alphanumericHighlightColor": "yellow",
+ "printableHighlightColor": "orange",
+ "graphBackgroundDarkColor": "background",
+ "graphBackgroundLightColor": "background",
+ "graphNodeDarkColor": "backgroundHighlight",
+ "graphNodeLightColor": "backgroundHighlight",
+ "graphNodeOutlineColor": "content",
+ "trueBranchColor": "green",
+ "falseBranchColor": "red",
+ "unconditionalBranchColor": "content",
+ "altTrueBranchColor": "blue",
+ "altFalseBranchColor": "yellow",
+ "altUnconditionalBranchColor": "content",
+ "registerColor": "green",
+ "numberColor": "cyan",
+ "codeSymbolColor": "blue",
+ "dataSymbolColor": "cyan",
+ "stackVariableColor": "violet",
+ "importColor": "orange",
+ "instructionHighlightColor": "secondary",
+ "tokenHighlightColor": ["+", "secondary", "orange"],
+ "annotationColor": "magenta",
+ "opcodeColor": "secondary",
+ "linearDisassemblyFunctionHeaderColor": "backgroundHighlight",
+ "linearDisassemblyBlockColor": ["+", "background", "backgroundHighlight"],
+ "linearDisassemblyNoteColor": ["~", "background", "green", 24],
+ "linearDisassemblySeparatorColor": [0, 0, 0],
+ "stringColor": "magenta",
+ "typeNameColor": "orange",
+ "fieldNameColor": "cyan",
+ "keywordColor": "green",
+ "uncertainColor": "secondary",
+ "scriptConsoleOutputColor": "content",
+ "scriptConsoleErrorColor": "red",
+ "scriptConsoleEchoColor": "secondary",
+ "blueStandardHighlightColor": "blue",
+ "greenStandardHighlightColor": "green",
+ "cyanStandardHighlightColor": "cyan",
+ "redStandardHighlightColor": "red",
+ "magentaStandardHighlightColor": "magenta",
+ "yellowStandardHighlightColor": "yellow",
+ "orangeStandardHighlightColor": "orange",
+ "whiteStandardHighlightColor": ["+", "background", [255, 255, 255]],
+ "blackStandardHighlightColor": "content"
+ }
+} \ No newline at end of file
diff --git a/themes/solarized-light.theme b/themes/solarized-light.theme
new file mode 100644
index 00000000..2799892b
--- /dev/null
+++ b/themes/solarized-light.theme
@@ -0,0 +1,104 @@
+{
+ "name": "Solarized Light 2",
+ "style": "Fusion",
+
+ "//": "Colors are specified as [Red, Green, Blue] values. Colors can be aliased in the",
+ "//": "'colors' section. Colors can also be averaged and mixed together using an RPN like notation.",
+ "//": "'+' indicates 'average' directs the parser to average the next two colors.",
+ "//": "'~' indicates 'mix' directs the parser to mix the next two colors with the specified weight 0->255",
+ "//": "e.g.",
+ "//": " ['+', 'red', 'blue'] - average red and blue",
+ "//": " ['~', 'red', 'blue', 20] - mix a small amount of blue into red",
+ "//": " ['+', '~', 'red', 'blue', 20, 'green'] - mix red and blue with weight 20 then average with green",
+ "//": "The 'palette' section is to specify colors for the QPalette::ColorRole",
+
+ "colors": {
+ "background": [253, 246, 227],
+ "backgroundHighlight": [238, 232, 213],
+ "content": [101, 123, 131],
+ "secondary": [147, 161, 161],
+ "emphasis": [88, 110, 117],
+ "yellow": [181, 137, 0],
+ "orange": [203, 75, 22],
+ "red": [220, 50, 47],
+ "magenta": [211, 54, 130],
+ "violet": [108, 113, 196],
+ "blue": [38, 139, 210],
+ "cyan": [42, 161, 152],
+ "green": [133, 153, 0]
+ },
+
+ "palette": {
+ "Window": "background",
+ "WindowText": "content",
+ "Base": "background",
+ "AlternateBase": "backgroundHighlight",
+ "ToolTipBase": "backgroundHighlight",
+ "ToolTipText": "content",
+ "Text": "content",
+ "Button": "backgroundHighlight",
+ "ButtonText": "content",
+ "BrightText": "emphasis",
+ "Link": "emphasis",
+ "Highlight": "backgroundHighlight",
+ "HighlightedText": "content",
+ "Light": ["+", "background", "content"]
+ },
+
+ "theme-colors": {
+ "addressColor": "secondary",
+ "modifiedColor": "red",
+ "insertedColor": "blue",
+ "notPresentColor": "secondary",
+ "selectionColor": ["+", "backgroundHighlight", "secondary"],
+ "outlineColor": "content",
+ "backgroundHighlightDarkColor": "background",
+ "backgroundHighlightLightColor": "backgroundHighlight",
+ "boldBackgroundHighlightDarkColor": "background",
+ "boldBackgroundHighlightLightColor": ["+", "background", "secondary"],
+ "alphanumericHighlightColor": "yellow",
+ "printableHighlightColor": "orange",
+ "graphBackgroundDarkColor": "background",
+ "graphBackgroundLightColor": "background",
+ "graphNodeDarkColor": "backgroundHighlight",
+ "graphNodeLightColor": "backgroundHighlight",
+ "graphNodeOutlineColor": "content",
+ "trueBranchColor": "green",
+ "falseBranchColor": "red",
+ "unconditionalBranchColor": "content",
+ "altTrueBranchColor": "blue",
+ "altFalseBranchColor": "yellow",
+ "altUnconditionalBranchColor": "content",
+ "registerColor": "green",
+ "numberColor": "cyan",
+ "codeSymbolColor": "blue",
+ "dataSymbolColor": "cyan",
+ "stackVariableColor": "violet",
+ "importColor": "orange",
+ "instructionHighlightColor": "secondary",
+ "tokenHighlightColor": ["+", "secondary", "orange"],
+ "annotationColor": "magenta",
+ "opcodeColor": "secondary",
+ "linearDisassemblyFunctionHeaderColor": "backgroundHighlight",
+ "linearDisassemblyBlockColor": ["+", "background", "backgroundHighlight"],
+ "linearDisassemblyNoteColor": ["~", "background", "green", 24],
+ "linearDisassemblySeparatorColor": [0, 0, 0],
+ "stringColor": "magenta",
+ "typeNameColor": "orange",
+ "fieldNameColor": "cyan",
+ "keywordColor": "green",
+ "uncertainColor": "secondary",
+ "scriptConsoleOutputColor": "content",
+ "scriptConsoleErrorColor": "red",
+ "scriptConsoleEchoColor": "secondary",
+ "blueStandardHighlightColor": "blue",
+ "greenStandardHighlightColor": "green",
+ "cyanStandardHighlightColor": "cyan",
+ "redStandardHighlightColor": "red",
+ "magentaStandardHighlightColor": "magenta",
+ "yellowStandardHighlightColor": "yellow",
+ "orangeStandardHighlightColor": "orange",
+ "whiteStandardHighlightColor": "content",
+ "blackStandardHighlightColor": ["+", "background", [0, 0, 0]]
+ }
+} \ No newline at end of file