# @blockly/theme-modern [![Built on Blockly](https://tinyurl.com/built-on-blockly)](https://github.com/google/blockly) A [Blockly](https://www.npmjs.com/package/blockly) modern theme that uses the same block colours as the [Classic theme](https://github.com/google/blockly/blob/master/core/theme/classic.js) but with darker borders. This theme was designed to be used with the Thrasos or Zelos renderer. ![A Blockly workspace using the modern theme.](https://github.com/google/blockly-samples/raw/master/plugins/theme-modern/readme-media/ModernTheme.png) ## Installation ### Yarn ``` yarn add @blockly/theme-modern ``` ### npm ``` npm install @blockly/theme-modern --save ``` ## Usage ```js import * as Blockly from 'blockly'; import Theme from '@blockly/theme-modern'; Blockly.inject('blocklyDiv', { theme: Theme, }); ``` ## License Apache 2.0