diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2024-09-19 12:34:24 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2024-09-19 12:34:24 -0700 |
commit | 60bc27decdda993e13c58dc368be8b7e558e9051 (patch) | |
tree | 03f224901fa369fb55cf54c5be8a4add34a969b6 | |
parent | 4af6f7b9e756e6b3add0ed61ea9fc0e0709d874a (diff) | |
download | view.love-60bc27decdda993e13c58dc368be8b7e558e9051.tar.gz |
transparent highlights work with more colors
-rw-r--r-- | edit.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/edit.lua b/edit.lua index 9b4864c..551db10 100644 --- a/edit.lua +++ b/edit.lua @@ -5,7 +5,7 @@ Stroke_color = {r=0, g=0, b=0} Current_stroke_color = {r=0.7, g=0.7, b=0.7} -- in process of being drawn Current_name_background_color = {r=1, g=0, b=0, a=0.1} -- name currently being edited Focus_stroke_color = {r=1, g=0, b=0} -- what mouse is hovering over -Highlight_color = {r=0.7, g=0.7, b=0.9} -- selected text +Highlight_color = {r=0.7, g=0.7, b=0.9, a=0.4} -- selected text Icon_color = {r=0.7, g=0.7, b=0.7} -- color of current mode icon in drawings Help_color = {r=0, g=0.5, b=0} Help_background_color = {r=0, g=0.5, b=0, a=0.1} |