From 79956287530b2db5773b88e1e528d866ba453899 Mon Sep 17 00:00:00 2001 From: cnst Date: Mon, 15 Jul 2024 15:14:59 +0200 Subject: [PATCH] maybe? --- home/core/gui/ags/style/colors.scss | 33 ++++++++++++++++++++++++++++- home/extra/neovim/plugins/lsp.nix | 2 +- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/home/core/gui/ags/style/colors.scss b/home/core/gui/ags/style/colors.scss index c1bc3b3a..b27bb7f7 100644 --- a/home/core/gui/ags/style/colors.scss +++ b/home/core/gui/ags/style/colors.scss @@ -1 +1,32 @@ -colors-dark.scss +$red: #f38ba8; +$yellow: #f9e2af; +$green: #a6e3a1; +$blue: #89b4fa; + +$tooltip-bg: #000000; +$fg: #ffffff; +$bg: rgba(0, 0, 0, 0.3); +$bar-bg: rgba(0, 0, 0, 0.21); + +$surface: rgba(255, 255, 255, 0.15); +$overlay: rgba(255, 255, 255, 0.7); + +$accent: #9d5b7a; + +/* buttons */ +$button-enabled: $accent; +$button-enabled-hover: adjust_color($button-enabled, $lightness: -10%); + +$button-disabled: $surface; +$button-disabled-hover: adjust_color($button-disabled, $alpha: +0.1); + +* { + text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2); +} + +@mixin border { + // border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: + // inset 0 0 0 1px rgba(255, 255, 255, 0.1), + 0 3px 5px 1px rgba(0, 0, 0, 0.3); +} diff --git a/home/extra/neovim/plugins/lsp.nix b/home/extra/neovim/plugins/lsp.nix index e4bd5750..21a0bbce 100644 --- a/home/extra/neovim/plugins/lsp.nix +++ b/home/extra/neovim/plugins/lsp.nix @@ -63,7 +63,7 @@ }; }; tsserver = { - enable = false; # TS/JS + enable = true; # TS/JS }; # Rust rust-analyzer = {