/** * @license * Visual Blocks Editor * * Copyright 2018 Google Inc. * https://developers.google.com/blockly/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @fileoverview Modern theme. * Same colors as classic, but single colored border. */ 'use strict'; goog.provide('Blockly.Themes.Modern'); goog.require('Blockly.Theme'); var 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" } }; var 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(defaultBlockStyles, categoryStyles);