Files
Marble-shell-theme/tweaks/opaque/tweak.py
2024-09-01 21:23:19 +03:00

10 lines
398 B
Python
Executable File

def define_arguments(parser):
color_args = parser.add_argument_group('Color tweaks')
color_args.add_argument('-O', '--opaque', action='store_true', help='make the background in menus/popovers opaque')
def apply_tweak(args, theme, colors):
if args.opaque:
colors["elements"]["BACKGROUND-COLOR"]["light"]["a"] = 1
colors["elements"]["BACKGROUND-COLOR"]["dark"]["a"] = 1