commit 3db9e07043a3e83c9f3bc10205cea1f1a527a06f Author: lomna-dev Date: Sat May 6 15:20:55 2023 +0530 First Commit Initial Commit diff --git a/JSON b/JSON new file mode 100644 index 0000000..d06fc04 --- /dev/null +++ b/JSON @@ -0,0 +1,24 @@ +{ + "name": "", + "author": "", + "color": [ + "#212125", + "#bc2a2a", + "#3eca3e", + "#dcdc0f", + "#6d6df3", + "#d068d0", + "#0dcbcb", + "#e2e2e2", + "#80776f", + "#bc2121", + "#3eca3e", + "#dcdc00", + "#915bf3", + "#d040d0", + "#00cbcb", + "#f5f5f5" + ], + "foreground": "#e0e892", + "background": "#100f1f" +} \ No newline at end of file diff --git a/alacritty b/alacritty new file mode 100644 index 0000000..903a32d --- /dev/null +++ b/alacritty @@ -0,0 +1,27 @@ +colors: + # Default colors + primary: + background: '0x100f1f' + foreground: '0xe0e892' + + # Normal colors + normal: + black: '0x212125' + red: '0xbc2a2a' + green: '0x3eca3e' + yellow: '0xdcdc0f' + blue: '0x6d6df3' + magenta: '0xd068d0' + cyan: '0x0dcbcb' + white: '0xe2e2e2' + + # Bright colors + bright: + black: '0x80776f' + red: '0xbc2121' + green: '0x3eca3e' + yellow: '0xdcdc00' + blue: '0x915bf3' + magenta: '0xd040d0' + cyan: '0x00cbcb' + white: '0xf5f5f5' \ No newline at end of file diff --git a/xresources b/xresources new file mode 100644 index 0000000..3d7c495 --- /dev/null +++ b/xresources @@ -0,0 +1,36 @@ +! special +*.foreground: #e0e892 +*.background: #100f1f +*.cursorColor: #e0e892 + +! black +*.color0: #212125 +*.color8: #80776f + +! red +*.color1: #bc2a2a +*.color9: #bc2121 + +! green +*.color2: #3eca3e +*.color10: #3eca3e + +! yellow +*.color3: #dcdc0f +*.color11: #dcdc00 + +! blue +*.color4: #6d6df3 +*.color12: #915bf3 + +! magenta +*.color5: #d068d0 +*.color13: #d040d0 + +! cyan +*.color6: #0dcbcb +*.color14: #00cbcb + +! white +*.color7: #e2e2e2 +*.color15: #f5f5f5 \ No newline at end of file