mixio 1.10.0
This commit is contained in:
87
blockly/core/theme/classic.js
Normal file
87
blockly/core/theme/classic.js
Normal file
@@ -0,0 +1,87 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2018 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview Classic theme.
|
||||
* Contains multi-coloured border to create shadow effect.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
goog.provide('Blockly.Themes.Classic');
|
||||
|
||||
goog.require('Blockly.Theme');
|
||||
|
||||
|
||||
// Temporary holding object.
|
||||
Blockly.Themes.Classic = {};
|
||||
|
||||
Blockly.Themes.Classic.defaultBlockStyles = {
|
||||
"colour_blocks": {
|
||||
"colourPrimary": "20"
|
||||
},
|
||||
"list_blocks": {
|
||||
"colourPrimary": "260"
|
||||
},
|
||||
"logic_blocks": {
|
||||
"colourPrimary": "210"
|
||||
},
|
||||
"loop_blocks": {
|
||||
"colourPrimary": "120"
|
||||
},
|
||||
"math_blocks": {
|
||||
"colourPrimary": "230"
|
||||
},
|
||||
"procedure_blocks": {
|
||||
"colourPrimary": "290"
|
||||
},
|
||||
"text_blocks": {
|
||||
"colourPrimary": "160"
|
||||
},
|
||||
"variable_blocks": {
|
||||
"colourPrimary": "330"
|
||||
},
|
||||
"variable_dynamic_blocks": {
|
||||
"colourPrimary": "310"
|
||||
},
|
||||
"hat_blocks": {
|
||||
"colourPrimary": "330",
|
||||
"hat": "cap"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Classic.categoryStyles = {
|
||||
"colour_category": {
|
||||
"colour": "20"
|
||||
},
|
||||
"list_category": {
|
||||
"colour": "260"
|
||||
},
|
||||
"logic_category": {
|
||||
"colour": "210"
|
||||
},
|
||||
"loop_category": {
|
||||
"colour": "120"
|
||||
},
|
||||
"math_category": {
|
||||
"colour": "230"
|
||||
},
|
||||
"procedure_category": {
|
||||
"colour": "290"
|
||||
},
|
||||
"text_category": {
|
||||
"colour": "160"
|
||||
},
|
||||
"variable_category": {
|
||||
"colour": "330"
|
||||
},
|
||||
"variable_dynamic_category": {
|
||||
"colour": "310"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Classic =
|
||||
new Blockly.Theme('classic', Blockly.Themes.Classic.defaultBlockStyles,
|
||||
Blockly.Themes.Classic.categoryStyles);
|
||||
33
blockly/core/theme/dark.js
Normal file
33
blockly/core/theme/dark.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2019 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview Dark theme.
|
||||
* @author samelh@google.com (Sam El-Husseini)
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
goog.provide('Blockly.Themes.Dark');
|
||||
|
||||
goog.require('Blockly.Theme');
|
||||
|
||||
Blockly.Themes.Dark = Blockly.Theme.defineTheme('dark', {
|
||||
'base': Blockly.Themes.Classic,
|
||||
'componentStyles': {
|
||||
'workspaceBackgroundColour': '#1e1e1e',
|
||||
'toolboxBackgroundColour': 'blackBackground',
|
||||
'toolboxForegroundColour': '#fff',
|
||||
'flyoutBackgroundColour': '#252526',
|
||||
'flyoutForegroundColour': '#ccc',
|
||||
'flyoutOpacity': 1,
|
||||
'scrollbarColour': '#797979',
|
||||
'insertionMarkerColour': '#fff',
|
||||
'insertionMarkerOpacity': 0.3,
|
||||
'scrollbarOpacity': 0.4,
|
||||
'cursorColour': '#d0d0d0',
|
||||
'blackBackground': '#333'
|
||||
}
|
||||
});
|
||||
104
blockly/core/theme/deuteranopia.js
Normal file
104
blockly/core/theme/deuteranopia.js
Normal file
@@ -0,0 +1,104 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2019 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview Deuteranopia theme.
|
||||
* A colour palette for people that have deuteranopia (the inability to perceive
|
||||
* green light). This can also be used for people that have protanopia (the
|
||||
* inability to perceive red light).
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
goog.provide('Blockly.Themes.Deuteranopia');
|
||||
|
||||
goog.require('Blockly.Theme');
|
||||
|
||||
|
||||
// Temporary holding object.
|
||||
Blockly.Themes.Deuteranopia = {};
|
||||
|
||||
Blockly.Themes.Deuteranopia.defaultBlockStyles = {
|
||||
"colour_blocks": {
|
||||
"colourPrimary": "#f2a72c",
|
||||
"colourSecondary": "#f1c172",
|
||||
"colourTertiary": "#da921c"
|
||||
},
|
||||
"list_blocks": {
|
||||
"colourPrimary": "#7d65ab",
|
||||
"colourSecondary": "#a88be0",
|
||||
"colourTertiary": "#66518e"
|
||||
},
|
||||
"logic_blocks": {
|
||||
"colourPrimary": "#9fd2f1",
|
||||
"colourSecondary": "#c0e0f4",
|
||||
"colourTertiary": "#74bae5"
|
||||
},
|
||||
"loop_blocks": {
|
||||
"colourPrimary": "#795a07",
|
||||
"colourSecondary": "#ac8726",
|
||||
"colourTertiary": "#c4a03f"
|
||||
},
|
||||
"math_blocks": {
|
||||
"colourPrimary": "#e6da39",
|
||||
"colourSecondary": "#f3ec8e",
|
||||
"colourTertiary": "#f2eeb7"
|
||||
},
|
||||
"procedure_blocks": {
|
||||
"colourPrimary": "#590721",
|
||||
"colourSecondary": "#8c475d",
|
||||
"colourTertiary": "#885464"
|
||||
},
|
||||
"text_blocks": {
|
||||
"colourPrimary": "#058863",
|
||||
"colourSecondary": "#5ecfaf",
|
||||
"colourTertiary": "#04684c"
|
||||
},
|
||||
"variable_blocks": {
|
||||
"colourPrimary": "#47025a",
|
||||
"colourSecondary": "#820fa1",
|
||||
"colourTertiary": "#8e579d"
|
||||
},
|
||||
"variable_dynamic_blocks": {
|
||||
"colourPrimary": "#47025a",
|
||||
"colourSecondary": "#820fa1",
|
||||
"colourTertiary": "#8e579d"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Deuteranopia.categoryStyles = {
|
||||
"colour_category": {
|
||||
"colour": "#f2a72c"
|
||||
},
|
||||
"list_category": {
|
||||
"colour": "#7d65ab"
|
||||
},
|
||||
"logic_category": {
|
||||
"colour": "#9fd2f1"
|
||||
},
|
||||
"loop_category": {
|
||||
"colour": "#795a07"
|
||||
},
|
||||
"math_category": {
|
||||
"colour": "#e6da39"
|
||||
},
|
||||
"procedure_category": {
|
||||
"colour": "#590721"
|
||||
},
|
||||
"text_category": {
|
||||
"colour": "#058863"
|
||||
},
|
||||
"variable_category": {
|
||||
"colour": "#47025a"
|
||||
},
|
||||
"variable_dynamic_category": {
|
||||
"colour": "#47025a"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Deuteranopia =
|
||||
new Blockly.Theme('deuteranopia',
|
||||
Blockly.Themes.Deuteranopia.defaultBlockStyles,
|
||||
Blockly.Themes.Deuteranopia.categoryStyles);
|
||||
119
blockly/core/theme/highcontrast.js
Normal file
119
blockly/core/theme/highcontrast.js
Normal file
@@ -0,0 +1,119 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2018 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview High contrast theme.
|
||||
* Darker colours to contrast the white font.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
goog.provide('Blockly.Themes.HighContrast');
|
||||
|
||||
goog.require('Blockly.Theme');
|
||||
|
||||
|
||||
// Temporary holding object.
|
||||
Blockly.Themes.HighContrast = {};
|
||||
|
||||
Blockly.Themes.HighContrast.defaultBlockStyles = {
|
||||
"colour_blocks": {
|
||||
"colourPrimary": "#a52714",
|
||||
"colourSecondary": "#FB9B8C",
|
||||
"colourTertiary": "#FBE1DD"
|
||||
},
|
||||
"list_blocks": {
|
||||
"colourPrimary": "#4a148c",
|
||||
"colourSecondary": "#AD7BE9",
|
||||
"colourTertiary": "#CDB6E9"
|
||||
},
|
||||
"logic_blocks": {
|
||||
"colourPrimary": "#01579b",
|
||||
"colourSecondary": "#64C7FF",
|
||||
"colourTertiary": "#C5EAFF"
|
||||
},
|
||||
"loop_blocks": {
|
||||
"colourPrimary": "#33691e",
|
||||
"colourSecondary": "#9AFF78",
|
||||
"colourTertiary": "#E1FFD7"
|
||||
},
|
||||
"math_blocks": {
|
||||
"colourPrimary": "#1a237e",
|
||||
"colourSecondary": "#8A9EFF",
|
||||
"colourTertiary": "#DCE2FF"
|
||||
},
|
||||
"procedure_blocks": {
|
||||
"colourPrimary": "#006064",
|
||||
"colourSecondary": "#77E6EE",
|
||||
"colourTertiary": "#CFECEE"
|
||||
},
|
||||
"text_blocks": {
|
||||
"colourPrimary": "#004d40",
|
||||
"colourSecondary": "#5ae27c",
|
||||
"colourTertiary": "#D2FFDD"
|
||||
},
|
||||
"variable_blocks": {
|
||||
"colourPrimary": "#880e4f",
|
||||
"colourSecondary": "#FF73BE",
|
||||
"colourTertiary": "#FFD4EB"
|
||||
},
|
||||
"variable_dynamic_blocks": {
|
||||
"colourPrimary": "#880e4f",
|
||||
"colourSecondary": "#FF73BE",
|
||||
"colourTertiary": "#FFD4EB"
|
||||
},
|
||||
"hat_blocks": {
|
||||
"colourPrimary": "#880e4f",
|
||||
"colourSecondary": "#FF73BE",
|
||||
"colourTertiary": "#FFD4EB",
|
||||
"hat": "cap"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.HighContrast.categoryStyles = {
|
||||
"colour_category": {
|
||||
"colour": "#a52714"
|
||||
},
|
||||
"list_category": {
|
||||
"colour": "#4a148c"
|
||||
},
|
||||
"logic_category": {
|
||||
"colour": "#01579b"
|
||||
},
|
||||
"loop_category": {
|
||||
"colour": "#33691e"
|
||||
},
|
||||
"math_category": {
|
||||
"colour": "#1a237e"
|
||||
},
|
||||
"procedure_category": {
|
||||
"colour": "#006064"
|
||||
},
|
||||
"text_category": {
|
||||
"colour": "#004d40"
|
||||
},
|
||||
"variable_category": {
|
||||
"colour": "#880e4f"
|
||||
},
|
||||
"variable_dynamic_category": {
|
||||
"colour": "#880e4f"
|
||||
}
|
||||
};
|
||||
|
||||
// This style is still being fleshed out and may change.
|
||||
Blockly.Themes.HighContrast =
|
||||
new Blockly.Theme('highcontrast',
|
||||
Blockly.Themes.HighContrast.defaultBlockStyles,
|
||||
Blockly.Themes.HighContrast.categoryStyles);
|
||||
|
||||
Blockly.Themes.HighContrast.setComponentStyle('selectedGlowColour', '#000000');
|
||||
Blockly.Themes.HighContrast.setComponentStyle('selectedGlowSize', 1);
|
||||
Blockly.Themes.HighContrast.setComponentStyle('replacementGlowColour', '#000000');
|
||||
|
||||
Blockly.Themes.HighContrast.setFontStyle({
|
||||
'family': null, // Use default font-family.
|
||||
'weight': null, // Use default font-weight.
|
||||
'size': 16
|
||||
});
|
||||
108
blockly/core/theme/modern.js
Normal file
108
blockly/core/theme/modern.js
Normal file
@@ -0,0 +1,108 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2018 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview Modern theme.
|
||||
* Same colours as classic, but single coloured border.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
goog.provide('Blockly.Themes.Modern');
|
||||
|
||||
goog.require('Blockly.Theme');
|
||||
|
||||
|
||||
// Temporary holding object.
|
||||
Blockly.Themes.Modern = {};
|
||||
|
||||
Blockly.Themes.Modern.defaultBlockStyles = {
|
||||
"colour_blocks": {
|
||||
"colourPrimary": "#a5745b",
|
||||
"colourSecondary": "#dbc7bd",
|
||||
"colourTertiary": "#845d49"
|
||||
},
|
||||
"list_blocks": {
|
||||
"colourPrimary": "#745ba5",
|
||||
"colourSecondary": "#c7bddb",
|
||||
"colourTertiary": "#5d4984"
|
||||
},
|
||||
"logic_blocks": {
|
||||
"colourPrimary": "#5b80a5",
|
||||
"colourSecondary": "#bdccdb",
|
||||
"colourTertiary": "#496684"
|
||||
},
|
||||
"loop_blocks": {
|
||||
"colourPrimary": "#5ba55b",
|
||||
"colourSecondary": "#bddbbd",
|
||||
"colourTertiary": "#498449"
|
||||
},
|
||||
"math_blocks": {
|
||||
"colourPrimary": "#5b67a5",
|
||||
"colourSecondary": "#bdc2db",
|
||||
"colourTertiary": "#495284"
|
||||
},
|
||||
"procedure_blocks": {
|
||||
"colourPrimary": "#995ba5",
|
||||
"colourSecondary": "#d6bddb",
|
||||
"colourTertiary": "#7a4984"
|
||||
},
|
||||
"text_blocks": {
|
||||
"colourPrimary": "#5ba58c",
|
||||
"colourSecondary": "#bddbd1",
|
||||
"colourTertiary": "#498470"
|
||||
},
|
||||
"variable_blocks": {
|
||||
"colourPrimary": "#a55b99",
|
||||
"colourSecondary": "#dbbdd6",
|
||||
"colourTertiary": "#84497a"
|
||||
},
|
||||
"variable_dynamic_blocks": {
|
||||
"colourPrimary": "#a55b99",
|
||||
"colourSecondary": "#dbbdd6",
|
||||
"colourTertiary": "#84497a"
|
||||
},
|
||||
"hat_blocks": {
|
||||
"colourPrimary": "#a55b99",
|
||||
"colourSecondary": "#dbbdd6",
|
||||
"colourTertiary": "#84497a",
|
||||
"hat": "cap"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Modern.categoryStyles = {
|
||||
"colour_category": {
|
||||
"colour": "#a5745b"
|
||||
},
|
||||
"list_category": {
|
||||
"colour": "#745ba5"
|
||||
},
|
||||
"logic_category": {
|
||||
"colour": "#5b80a5"
|
||||
},
|
||||
"loop_category": {
|
||||
"colour": "#5ba55b"
|
||||
},
|
||||
"math_category": {
|
||||
"colour": "#5b67a5"
|
||||
},
|
||||
"procedure_category": {
|
||||
"colour": "#995ba5"
|
||||
},
|
||||
"text_category": {
|
||||
"colour": "#5ba58c"
|
||||
},
|
||||
"variable_category": {
|
||||
"colour": "#a55b99"
|
||||
},
|
||||
"variable_dynamic_category": {
|
||||
"colour": "#a55b99"
|
||||
}
|
||||
};
|
||||
|
||||
// This style is still being fleshed out and may change.
|
||||
Blockly.Themes.Modern =
|
||||
new Blockly.Theme('modern', Blockly.Themes.Modern.defaultBlockStyles,
|
||||
Blockly.Themes.Modern.categoryStyles);
|
||||
103
blockly/core/theme/tritanopia.js
Normal file
103
blockly/core/theme/tritanopia.js
Normal file
@@ -0,0 +1,103 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2019 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview Tritanopia theme.
|
||||
* A colour palette for people that have tritanopia (the inability to perceive
|
||||
* blue light).
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
goog.provide('Blockly.Themes.Tritanopia');
|
||||
|
||||
goog.require('Blockly.Theme');
|
||||
|
||||
|
||||
// Temporary holding object.
|
||||
Blockly.Themes.Tritanopia = {};
|
||||
|
||||
Blockly.Themes.Tritanopia.defaultBlockStyles = {
|
||||
"colour_blocks": {
|
||||
"colourPrimary": "#05427f",
|
||||
"colourSecondary": "#2974c0",
|
||||
"colourTertiary": "#2d74bb"
|
||||
},
|
||||
"list_blocks": {
|
||||
"colourPrimary": "#b69ce8",
|
||||
"colourSecondary": "#ccbaef",
|
||||
"colourTertiary": "#9176c5"
|
||||
},
|
||||
"logic_blocks": {
|
||||
"colourPrimary": "#9fd2f1",
|
||||
"colourSecondary": "#c0e0f4",
|
||||
"colourTertiary": "#74bae5"
|
||||
},
|
||||
"loop_blocks": {
|
||||
"colourPrimary": "#aa1846",
|
||||
"colourSecondary": "#d36185",
|
||||
"colourTertiary": "#7c1636"
|
||||
},
|
||||
"math_blocks": {
|
||||
"colourPrimary": "#e6da39",
|
||||
"colourSecondary": "#f3ec8e",
|
||||
"colourTertiary": "#f2eeb7"
|
||||
},
|
||||
"procedure_blocks": {
|
||||
"colourPrimary": "#590721",
|
||||
"colourSecondary": "#8c475d",
|
||||
"colourTertiary": "#885464"
|
||||
},
|
||||
"text_blocks": {
|
||||
"colourPrimary": "#058863",
|
||||
"colourSecondary": "#5ecfaf",
|
||||
"colourTertiary": "#04684c"
|
||||
},
|
||||
"variable_blocks": {
|
||||
"colourPrimary": "#4b2d84",
|
||||
"colourSecondary": "#816ea7",
|
||||
"colourTertiary": "#83759e"
|
||||
},
|
||||
"variable_dynamic_blocks": {
|
||||
"colourPrimary": "#4b2d84",
|
||||
"colourSecondary": "#816ea7",
|
||||
"colourTertiary": "#83759e"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Tritanopia.categoryStyles = {
|
||||
"colour_category": {
|
||||
"colour": "#05427f"
|
||||
},
|
||||
"list_category": {
|
||||
"colour": "#b69ce8"
|
||||
},
|
||||
"logic_category": {
|
||||
"colour": "#9fd2f1"
|
||||
},
|
||||
"loop_category": {
|
||||
"colour": "#aa1846"
|
||||
},
|
||||
"math_category": {
|
||||
"colour": "#e6da39"
|
||||
},
|
||||
"procedure_category": {
|
||||
"colour": "#590721"
|
||||
},
|
||||
"text_category": {
|
||||
"colour": "#058863"
|
||||
},
|
||||
"variable_category": {
|
||||
"colour": "#4b2d84"
|
||||
},
|
||||
"variable_dynamic_category": {
|
||||
"colour": "#4b2d84"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Tritanopia =
|
||||
new Blockly.Theme('tritanopia',
|
||||
Blockly.Themes.Tritanopia.defaultBlockStyles,
|
||||
Blockly.Themes.Tritanopia.categoryStyles);
|
||||
106
blockly/core/theme/zelos.js
Normal file
106
blockly/core/theme/zelos.js
Normal file
@@ -0,0 +1,106 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2018 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview Zelos theme.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
goog.provide('Blockly.Themes.Zelos');
|
||||
|
||||
goog.require('Blockly.Theme');
|
||||
|
||||
|
||||
// Temporary holding object.
|
||||
Blockly.Themes.Zelos = {};
|
||||
|
||||
Blockly.Themes.Zelos.defaultBlockStyles = {
|
||||
"colour_blocks": {
|
||||
"colourPrimary": "#CF63CF",
|
||||
"colourSecondary": "#C94FC9",
|
||||
"colourTertiary": "#BD42BD"
|
||||
},
|
||||
"list_blocks": {
|
||||
"colourPrimary": "#9966FF",
|
||||
"colourSecondary": "#855CD6",
|
||||
"colourTertiary": "#774DCB"
|
||||
},
|
||||
"logic_blocks": {
|
||||
"colourPrimary": "#4C97FF",
|
||||
"colourSecondary": "#4280D7",
|
||||
"colourTertiary": "#3373CC"
|
||||
},
|
||||
"loop_blocks": {
|
||||
"colourPrimary": "#0fBD8C",
|
||||
"colourSecondary": "#0DA57A",
|
||||
"colourTertiary": "#0B8E69"
|
||||
},
|
||||
"math_blocks": {
|
||||
"colourPrimary": "#59C059",
|
||||
"colourSecondary": "#46B946",
|
||||
"colourTertiary": "#389438"
|
||||
},
|
||||
"procedure_blocks": {
|
||||
"colourPrimary": "#FF6680",
|
||||
"colourSecondary": "#FF4D6A",
|
||||
"colourTertiary": "#FF3355"
|
||||
},
|
||||
"text_blocks": {
|
||||
"colourPrimary": "#FFBF00",
|
||||
"colourSecondary": "#E6AC00",
|
||||
"colourTertiary": "#CC9900"
|
||||
},
|
||||
"variable_blocks": {
|
||||
"colourPrimary": "#FF8C1A",
|
||||
"colourSecondary": "#FF8000",
|
||||
"colourTertiary": "#DB6E00"
|
||||
},
|
||||
"variable_dynamic_blocks": {
|
||||
"colourPrimary": "#FF8C1A",
|
||||
"colourSecondary": "#FF8000",
|
||||
"colourTertiary": "#DB6E00"
|
||||
},
|
||||
"hat_blocks": {
|
||||
"colourPrimary": "#4C97FF",
|
||||
"colourSecondary": "#4280D7",
|
||||
"colourTertiary": "#3373CC",
|
||||
"hat": "cap"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Zelos.categoryStyles = {
|
||||
"colour_category": {
|
||||
"colour": "#CF63CF"
|
||||
},
|
||||
"list_category": {
|
||||
"colour": "#9966FF"
|
||||
},
|
||||
"logic_category": {
|
||||
"colour": "#4C97FF"
|
||||
},
|
||||
"loop_category": {
|
||||
"colour": "#0fBD8C"
|
||||
},
|
||||
"math_category": {
|
||||
"colour": "#59C059"
|
||||
},
|
||||
"procedure_category": {
|
||||
"colour": "#FF6680"
|
||||
},
|
||||
"text_category": {
|
||||
"colour": "#FFBF00"
|
||||
},
|
||||
"variable_category": {
|
||||
"colour": "#FF8C1A"
|
||||
},
|
||||
"variable_dynamic_category": {
|
||||
"colour": "#FF8C1A"
|
||||
}
|
||||
};
|
||||
|
||||
Blockly.Themes.Zelos =
|
||||
new Blockly.Theme('zelos', Blockly.Themes.Zelos.defaultBlockStyles,
|
||||
Blockly.Themes.Zelos.categoryStyles);
|
||||
Reference in New Issue
Block a user