From a809a848f7b5bcd72d9404c4264fa689517217ef Mon Sep 17 00:00:00 2001 From: Mohamed Elashri Date: Thu, 2 Jan 2025 13:31:01 +0000 Subject: [PATCH] Add Dracula theme --- color-schemes/Dracula.ron | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 color-schemes/Dracula.ron diff --git a/color-schemes/Dracula.ron b/color-schemes/Dracula.ron new file mode 100644 index 0000000..54409b6 --- /dev/null +++ b/color-schemes/Dracula.ron @@ -0,0 +1,38 @@ +( + name: "Dracula", + foreground: "#e6e6e6", + background: "#1e1f29", + cursor: "#bbbbbb", + bright_foreground: "#ffffff", + dim_foreground: "#e6e6e6", + normal: ( + black: "#000000", + red: "#ff5555", + green: "#50fa7b", + yellow: "#f1fa8c", + blue: "#bd93f9", + magenta: "#ff79c6", + cyan: "#8be9fd", + white: "#bbbbbb", + ), + bright: ( + black: "#555555", + red: "#ff5555", + green: "#50fa7b", + yellow: "#f1fa8c", + blue: "#bd93f9", + magenta: "#ff79c6", + cyan: "#8be9fd", + white: "#ffffff", + ), + dim: ( + black: "#000000", + red: "#ff5555", + green: "#50fa7b", + yellow: "#f1fa8c", + blue: "#bd93f9", + magenta: "#ff79c6", + cyan: "#8be9fd", + white: "#bbbbbb", + ), +)