michael@0: /* -*- Mode: javascript, tab-width: 2, indent-tabs-mode: nil, c-basic-offset: 2 -*- */ michael@0: /* vim: set ts=2 et sw=2 tw=80: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: "use strict"; michael@0: michael@0: let {TiltMath} = require("devtools/tilt/tilt-math"); michael@0: let rgba = TiltMath.hex2rgba; michael@0: michael@0: /** michael@0: * Various colors and style settings used throughout Tilt. michael@0: */ michael@0: module.exports = { michael@0: canvas: { michael@0: background: "linear-gradient(#454545 0%, #000 100%)", michael@0: }, michael@0: michael@0: nodes: { michael@0: highlight: { michael@0: defaultFill: rgba("#555"), michael@0: defaultStroke: rgba("#000"), michael@0: defaultStrokeWeight: 1 michael@0: }, michael@0: michael@0: html: rgba("#8880"), michael@0: body: rgba("#fff0"), michael@0: h1: rgba("#e667af"), michael@0: h2: rgba("#c667af"), michael@0: h3: rgba("#a667af"), michael@0: h4: rgba("#8667af"), michael@0: h5: rgba("#8647af"), michael@0: h6: rgba("#8627af"), michael@0: div: rgba("#5dc8cd"), michael@0: span: rgba("#67e46f"), michael@0: table: rgba("#ff0700"), michael@0: tr: rgba("#ff4540"), michael@0: td: rgba("#ff7673"), michael@0: ul: rgba("#4671d5"), michael@0: li: rgba("#6c8cd5"), michael@0: p: rgba("#aaa"), michael@0: a: rgba("#123eab"), michael@0: img: rgba("#ffb473"), michael@0: iframe: rgba("#85004b") michael@0: } michael@0: };