pages/lit/js/colors.js

14 lines
379 B
JavaScript

// https://color.adobe.com/create/color-wheel
// Colors
const logoBackgroundColor = "#1a75bb";
const logoHighlightColor = "#000080";
const backgroundColor = "#2a323d";
const red = "#FF0000";
const green = "#00FF00";
const blue = "#0000FF";
const yellow = "#FFFF00";
const cyan = "#00FFFF";
const magenta = "#FF00FF";
const colors = { red, green, blue, yellow, cyan, magenta };