mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
20 lines
343 B
JavaScript
20 lines
343 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Namespace for themes.
|
|
*/
|
|
'use strict';
|
|
|
|
goog.module('Blockly.Themes');
|
|
|
|
const Classic = goog.require('Blockly.Themes.Classic');
|
|
const Zelos = goog.require('Blockly.Themes.Zelos');
|
|
|
|
|
|
exports.Classic = Classic;
|
|
exports.Zelos = Zelos;
|