Spaces:
Sleeping
Sleeping
from __future__ import annotations | |
from typing import Iterable | |
from gradio.themes.base import Base | |
from gradio.themes.utils import colors, fonts, sizes | |
class IndonesiaTheme_2(Base): | |
def __init__( | |
self, | |
*, | |
primary_hue: colors.Color | str = colors.teal, # Choose a soothing color for primary elements | |
secondary_hue: colors.Color | str = colors.amber, # Choose a contrasting color for secondary elements | |
neutral_hue: colors.Color | str = colors.gray, # Set neutral tones for text and other elements | |
spacing_size: sizes.Size | str = sizes.spacing_md, # Medium spacing for balanced padding | |
radius_size: sizes.Size | str = sizes.radius_lg, # Large radius for rounded corners | |
text_size: sizes.Size | str = sizes.text_md, # Medium text size for readability | |
font: fonts.Font | |
| str | |
| Iterable[fonts.Font | str] = ( | |
fonts.GoogleFont("Nunito"), # A clean, modern font | |
"ui-sans-serif", | |
"sans-serif", | |
), | |
font_mono: fonts.Font | |
| str | |
| Iterable[fonts.Font | str] = ( | |
fonts.GoogleFont("Fira Code"), | |
"ui-monospace", | |
"monospace", | |
), | |
): | |
super().__init__( | |
primary_hue=primary_hue, | |
secondary_hue=secondary_hue, | |
neutral_hue=neutral_hue, | |
spacing_size=spacing_size, | |
radius_size=radius_size, | |
text_size=text_size, | |
font=font, | |
font_mono=font_mono, | |
) | |
# Applying a modern and thematic style | |
super().set( | |
body_background_fill="linear-gradient(135deg, #D7E8F7, #F6F1ED)", # Gradient for a modern look | |
body_background_fill_dark="linear-gradient(135deg, #4A4A4A, #2A2A2A)", # Dark mode gradient | |
button_primary_background_fill="linear-gradient(90deg, #00796B, #004D40)", # Teal gradient for buttons | |
button_primary_background_fill_hover="linear-gradient(90deg, #009688, #00695C)", # Hover effect | |
button_primary_text_color="white", | |
button_primary_background_fill_dark="linear-gradient(90deg, #004D40, #00251A)", # Dark mode buttons | |
slider_color="*secondary_300", # Consistent with secondary color | |
slider_color_dark="*secondary_600", # Dark mode slider color | |
block_title_text_weight="600", | |
block_border_width="2px", | |
block_shadow="*shadow_drop_md", # Softer shadow for modern look | |
button_shadow="*shadow_drop_md", | |
button_large_padding="20px", # Consistent padding for buttons | |
) | |