on-codemerge
Version:
A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product
40 lines (39 loc) • 720 B
JavaScript
/*! on-codemerge v1.3.1 @author Pavel Kuzmin @license MIT @homepage https://s00d.github.io/on-codemerge/ @repository git+https://github.com/s00d/on-codemerge.git Copyright (c) 2026 Pavel Kuzmin - Built on 2026-07-02T13:39:17.947Z */
const F = [
"#000000",
// Black
"#FFFFFF",
// White
"#FF0000",
// Red
"#00FF00",
// Green
"#0000FF",
// Blue
"#FFFF00",
// Yellow
"#FF00FF",
// Magenta
"#00FFFF",
// Cyan
"#808080",
// Gray
"#800000",
// Maroon
"#808000",
// Olive
"#008000",
// Dark Green
"#800080",
// Purple
"#008080",
// Teal
"#000080",
// Navy
"#FFA500"
// Orange
], o = "html-editor-recent-colors";
export {
F as COLORS,
o as RECENT_COLORS_KEY
};