@aladas-org/cryptoshape
Version:
Generates a representation of a Bip39 seed phrase as a 3D scene
53 lines (48 loc) • 1.91 kB
JavaScript
// ======================================================================================================
// ===================================== theme_manager.js =======================================
// ======================================================================================================
"use strict";
const SCREEN_THEME = "screen";
const PRINT_THEME = "print";
const EXPORT_THEME = "export";
// const FLUO_THEME = "fluo";
const NOT_OVERWRITABLE = "not_overwritable";
const EXPORTABLE = "exportable";
const BACKGROUND_COLOR = "background_color";
const BOUNDING_BOX_COLOR = "bounding_box_color";
const NODE_COLOR = "node_color";
const NODE_SIZE = "node_size";
const EDGE_RENDERING = "edge_rendering";
const EDGE_THICKNESS = "edge_thickness";
const LINK_COLOR = "link_color";
const LINK_THICKNESS = "link_thickness";
const STICK_COLOR = "stick_color";
const STICK_THICKNESS = "stick_thickness";
const THEMES = {
[] : {
[] : [DARK_BLUE],
[] : [GREY_75],
[] : [GREY],
[] : .08,
[] : [CYAN]
},
[] : {
[] : true,
[] : [WHITE],
[] : [BLACK],
[] : true,
[] : 1.15,
[] : [GREY_50],
[] : .1,
[] : [GREY_60],
[] : .1
},
[] : {
[] : true,
[] : [DARK_BLUE],
[] : [GREY_75],
[] : [GREY],
[] : .08,
[] : [CYAN]
}
};