Skip to main content

egui_code_editor/themes/
sonokai.rs

1use super::ColorTheme;
2
3impl ColorTheme {
4    ///  Original Author: sainnhe <https://github.com/sainnhe/sonokai>
5    ///  Modified by p4ymak <https://github.com/p4ymak>
6    pub const SONOKAI: ColorTheme = ColorTheme {
7        name: "Sonokai",
8        dark: true,
9        bg: "#2c2e34",          // bg0
10        cursor: "#76cce0",      // blue
11        selection: "#444852",   // bg5
12        comments: "#7f8490",    // gray
13        functions: "#9ed072",   // green
14        keywords: "#fc5d7c",    // red
15        literals: "#e2e2e3",    // foreground
16        numerics: "#b39df3",    // purple
17        punctuation: "#7f8490", // gray
18        strs: "#e7c664",        // yellow
19        types: "#399ee6",       // blue
20        special: "#f39660",     // orange
21    };
22}