-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
146 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters