diff --git a/lua/modules/uitheme.lua b/lua/modules/uitheme.lua index eb6cc4401..7142f12ce 100644 --- a/lua/modules/uitheme.lua +++ b/lua/modules/uitheme.lua @@ -130,6 +130,72 @@ local uitheme = { textInputPlaceholderColorFocused = Color(0, 0, 0, 0.2), textInputPlaceholderColorDisabled = Color(0, 0, 0, 0.1), + textInputBorderBrightnessDiff = -0.1, + }, + neon_green = { + textColor = Color.Black, + errorTextColor = Color( 109, 17, 17), + warningTextColor = Color(133, 109 ,0), + + textColorSecondary = Color(0, 0, 0), + paddingTiny = 3, + padding = 6, + paddingBig = 12, + gridSpacing = 4, + gridCellColor = Color(20, 255, 101, 0.6), + gridCellColorPressed = Color(20, 255, 101, 0.6), + gridCellFrameColor = Color(0, 0, 0, 0.8), + buttonColor = Color(57, 255, 20), + buttonColorSecondary = Color(20, 255, 42, 0), + buttonTextColor = Color.Black, + buttonColorPressed = Color(0, 224, 77), + buttonTextColorPressed = Color.Grey, + buttonColorSelected = Color(168, 168, 168), + buttonTextColorSelected = Color.Grey, + buttonColorDisabled = Color(22, 211, 18, 0.5), + buttonTextColorDisabled = Color(0, 255, 4, 0.5), + buttonTopBorderBrightnessDiff = 0.18, + buttonBottomBorderBrightnessDiff = -0.15, + buttonBorderSize = 1, + textInputBorderSize = 2, + + modalBorder = 0, + modalTopBarPadding = 3, + modalContentPadding = 6, + modalBottomBarPadding = 3, + modalMargin = 12, -- minimum space around modal + modalTabSpace = 3, + modalTopBarColor = Color(0, 0, 0), + modalBottomBarColor = Color(31, 31, 31), + modalTabColorSelected = Color(63, 63, 63), + modalTabColorPressed = Color(80, 153, 80), + modalTabColorIdle = Color(28, 229, 28), + + colorNegative = Color(227, 53, 56), + colorPositive = Color(139, 195, 74), + colorExplore = Color(1, 112, 236), + colorCreate = Color(228, 228, 228), + colorDiscord = Color(228, 228, 228), + + textInputCursorWidth = 2, + textInputCursorBlinkTime = 0.3, + + textInputDefaultWidth = 100, + textInputBackgroundColor = Color(150, 255, 150), + textInputBackgroundColorPressed = Color(150, 255, 150), + textInputBackgroundColorFocused = Color(38, 130, 204), + textInputBackgroundColorDisabled = Color(150, 255, 150), + + textInputTextColor = Color(230, 230, 230), + textInputTextColorPressed = Color.White, + textInputTextColorFocused = Color(220,220,220), + textInputTextColorDisabled = Color(255, 255, 255, 0.3), + + textInputPlaceholderColor = Color(255, 255, 255, 0.3), + textInputPlaceholderColorPressed = Color(0, 0, 0, 0.2), + textInputPlaceholderColorFocused = Color(0, 0, 0, 0.2), + textInputPlaceholderColorDisabled = Color(0, 0, 0, 0.1), + textInputBorderBrightnessDiff = -0.1, }, },