egui_code_editor/themes/
ayu.rs1use super::ColorTheme;
2
3impl ColorTheme {
4 pub const AYU: ColorTheme = ColorTheme {
8 name: "Ayu",
9 dark: false,
10 bg: "#fafafa",
11 cursor: "#5c6166", selection: "#fa8d3e", comments: "#828c9a", functions: "#ffaa33", keywords: "#fa8d3e", literals: "#5c6166", numerics: "#a37acc", punctuation: "#5c6166", strs: "#86b300", types: "#399ee6", special: "#f07171", };
23
24 pub const AYU_MIRAGE: ColorTheme = ColorTheme {
25 name: "Ayu Mirage",
26 dark: true,
27 bg: "#1f2430",
28 cursor: "#cccac2", selection: "#ffad66", comments: "#565b66", functions: "#ffcc77", keywords: "#ffad66", literals: "#cccac2", numerics: "#dfbfff", punctuation: "#cccac2", strs: "#d5ff80", types: "#73d0ff", special: "#f28779", };
40
41 pub const AYU_DARK: ColorTheme = ColorTheme {
42 name: "Ayu Dark",
43 dark: true,
44 bg: "#0f1419",
45 cursor: "#bfbdb6", selection: "#ffad66", comments: "#5c6773", functions: "#e6b450", keywords: "#ffad66", literals: "#bfbdb6", numerics: "#dfbfff", punctuation: "#bfbdb6", strs: "#aad94c", types: "#59c2ff", special: "#f28779", };
57}