Spaces:
Runtime error
Runtime error
File size: 12,476 Bytes
dc40b29 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# Theme generator
# Use theme generator to quickly generate custom color schemes for your app.
# #theme_generator
# ---
import math
from typing import Tuple
from h2o_wave import Q, app, data, main, ui
def to_grayscale(color: float) -> float:
color /= 255
return color / 12.92 if color <= 0.03928 else math.pow((color + 0.055) / 1.055, 2.4)
def get_luminance(r: float, g: float, b: float) -> float:
return to_grayscale(r) * 0.2126 + to_grayscale(g) * 0.7152 + to_grayscale(b) * 0.0722
# Source: https://www.delftstack.com/howto/python/python-hex-to-rgb/.
def hex_to_rgb(hex_color: str) -> Tuple[int, ...]:
if len(hex_color) == 3:
hex_color = f'{hex_color[0]}{hex_color[0]}{hex_color[1]}{hex_color[1]}{hex_color[2]}{hex_color[2]}'
return tuple(int(hex_color[i:i + 2], 16) for i in (0, 2, 4))
# Source: https://stackoverflow.com/questions/9733288/how-to-programmatically-calculate-the-contrast-ratio-between-two-colors. # noqa
def update_contrast_check(color1: str, color2: str, q: Q, min_contrast=4.5):
rgb1 = hex_to_rgb(q.client[color1].lstrip('#'))
rgb2 = hex_to_rgb(q.client[color2].lstrip('#'))
lum1 = get_luminance(rgb1[0], rgb1[1], rgb1[2])
lum2 = get_luminance(rgb2[0], rgb2[1], rgb2[2])
brightest = max(lum1, lum2)
darkest = min(lum1, lum2)
contrast = (brightest + 0.05) / (darkest + 0.05)
message_bar_mobile = q.page['meta'][f'{color1}_{color2}']
message_bar = q.page['form'][f'{color1}_{color2}']
if contrast < min_contrast:
message_bar.type = message_bar_mobile.type = 'error'
message_bar.text = message_bar_mobile.text = f'Improve contrast between **{color1}** and **{color2}**.'
else:
message_bar.type = message_bar_mobile.type = 'success'
message_bar.text = message_bar_mobile.text = f'Contrast between **{color1}** and **{color2}** is great!'
def get_theme_code(q: Q):
return f'''
```py
ui.theme(
name='<theme-name>',
primary='{q.client.primary}',
text='{q.client.text}',
card='{q.client.card}',
page='{q.client.page}',
)
```
'''
image = 'https://images.pexels.com/photos/220453/pexels-photo-220453.jpeg?auto=compress&h=750&w=1260'
mobile_items = [
ui.text_xl(content='Sample App to show colors'),
ui.text('Click the top right button to change the theme. π'),
ui.inline(justify='between', items=[
ui.persona(title='John Doe', subtitle='Data Scientist', size='s', image=image),
ui.toggle(name='toggle', label='Toggle', value=True),
]),
ui.inline([
ui.stepper(name='stepper', width='500px', items=[
ui.step(label='Step 1', icon='MailLowImportance'),
ui.step(label='Step 2', icon='TaskManagerMirrored'),
ui.step(label='Step 3', icon='Cafe'),
]),
]),
ui.progress(label='A progress bar'),
ui.inline(justify='between', items=[
ui.tabs(name='menu', value='email', items=[
ui.tab(name='email', label='Mail', icon='Mail'),
ui.tab(name='events', label='Events', icon='Calendar'),
ui.tab(name='spam', label='Spam'),
]),
ui.link(label='Link'),
]),
ui.slider(name='slider', label='Slider', value=70),
ui.date_picker(name='date_picker', label='Date picker'),
ui.picker(name='picker', label='Picker', choices=[
ui.choice('choice1', label='Choice 1'),
ui.choice('choice2', label='Choice 2'),
ui.choice('choice3', label='Choice 3'),
]),
ui.combobox(name='combobox', label='Combobox', choices=['Choice 1', 'Choice 2', 'Choice 3']),
ui.checkbox(name='checkbox1', label='Checkbox 1', value=True),
ui.checkbox(name='checkbox2', label='Checkbox 2'),
ui.checkbox(name='checkbox3', label='Checkbox 3'),
ui.inline(direction='column', items=[
ui.table(
name='table',
width='100%',
columns=[
ui.table_column(name='name', label='Name', min_width='80px'),
ui.table_column(name='surname', label='Surname', filterable=True, max_width='90px'),
ui.table_column(name='progress', label='Progress', max_width='80px',
cell_type=ui.progress_table_cell_type(color='$themePrimary')),
],
rows=[
ui.table_row(name='row1', cells=['John', 'Doe', '0.90']),
ui.table_row(name='row2', cells=['Ann', 'Doe', '0.75']),
],
),
ui.visualization(
width='100%',
data=data('profession salary', 5, rows=[
('medicine', 23000),
('fire fighting', 18000),
('pedagogy', 24000),
('psychology', 22500),
('computer science', 36000),
], pack=True),
plot=ui.plot([ui.mark(type='interval', x='=profession', y='=salary', y_min=0)])
),
]),
ui.buttons([
ui.button(name='primary_button', label='Primary', primary=True),
ui.button(name='standard_button', label='Standard'),
ui.button(name='standard_disabled_button', label='Disabled', disabled=True),
ui.button(name='icon_button', icon='Heart', caption='Tooltip text'),
]),
]
desktop_items = [
ui.text_xl(content='Sample App to show colors'),
ui.progress(label='A progress bar'),
ui.inline([
ui.checkbox(name='checkbox1', label='Checkbox 1', value=True),
ui.checkbox(name='checkbox2', label='Checkbox 2'),
ui.checkbox(name='checkbox3', label='Checkbox 3'),
ui.toggle(name='toggle', label='Toggle', value=True),
]),
ui.inline([
ui.date_picker(name='date_picker', label='Date picker'),
ui.picker(name='picker', label='Picker', choices=[
ui.choice('choice1', label='Choice 1'),
ui.choice('choice2', label='Choice 2'),
ui.choice('choice3', label='Choice 3'),
]),
ui.combobox(name='combobox', label='Combobox', choices=['Choice 1', 'Choice 2', 'Choice 3']),
ui.persona(title='John Doe', subtitle='Data Scientist', size='s', image=image),
]),
ui.slider(name='slider', label='Slider', value=70),
ui.link(label='Link'),
ui.inline(justify='between', items=[
ui.stepper(name='stepper', width='500px', items=[
ui.step(label='Step 1', icon='MailLowImportance'),
ui.step(label='Step 2', icon='TaskManagerMirrored'),
ui.step(label='Step 3', icon='Cafe'),
]),
ui.tabs(name='menu', value='email', items=[
ui.tab(name='email', label='Mail', icon='Mail'),
ui.tab(name='events', label='Events', icon='Calendar'),
ui.tab(name='spam', label='Spam'),
]),
]),
ui.inline(items=[
ui.table(
name='table',
width='50%',
columns=[
ui.table_column(name='name', label='Name', min_width='80px'),
ui.table_column(name='surname', label='Surname', filterable=True),
ui.table_column(name='age', label='Age', sortable=True, max_width='80px'),
ui.table_column(name='progress', label='Progress',
cell_type=ui.progress_table_cell_type(color='$themePrimary')),
],
rows=[
ui.table_row(name='row1', cells=['John', 'Doe', '25', '0.90']),
ui.table_row(name='row2', cells=['Ann', 'Doe', '35', '0.75']),
ui.table_row(name='row3', cells=['Casey', 'Smith', '40', '0.33']),
],
height='330px',
),
ui.visualization(
width='50%',
data=data('profession salary', 5, rows=[
('medicine', 23000),
('fire fighting', 18000),
('pedagogy', 24000),
('psychology', 22500),
('computer science', 36000),
], pack=True),
plot=ui.plot([ui.mark(type='interval', x='=profession', y='=salary', y_min=0)])
),
]),
ui.buttons([
ui.button(name='primary_button', label='Primary', primary=True),
ui.button(name='standard_button', label='Standard'),
ui.button(name='standard_disabled_button', label='Disabled', disabled=True),
ui.button(name='icon_button', icon='Heart', caption='Tooltip text'),
]),
]
@app('/')
async def serve(q: Q):
if not q.client.initialized:
q.client.primary = '#000000'
q.client.page = '#e2e2e2'
q.client.card = '#ffffff'
q.client.text = '#000000'
q.page['meta'] = ui.meta_card(box='', theme='custom', layouts=[
ui.layout(
breakpoint='xs',
zones=[
ui.zone('mobile_content'),
ui.zone('footer')
]
),
ui.layout(
breakpoint='817px',
zones=[
ui.zone('header'),
ui.zone('content', direction=ui.ZoneDirection.ROW, zones=[
ui.zone('colors', size='30%'),
ui.zone('preview', size='70%')
]),
ui.zone('footer')
]
),
])
q.page['header'] = ui.header_card(box='header', title='Theme generator', subtitle='Color your app easily',
icon='Color', icon_color='$card')
q.page['mobile_header'] = ui.header_card(
box='mobile_content',
icon='Color',
title='Theme generator',
subtitle='Color your app easily',
items=[ui.button(name='show_side_panel', label=' ', icon='Color')]
)
q.client.color_items = [
ui.color_picker(name='primary', label='Primary', trigger=True, alpha=False, inline=True,
value=q.client.primary),
ui.color_picker(name='text', label='Text', trigger=True, alpha=False, inline=True, value=q.client.text),
ui.color_picker(name='card', label='Card', trigger=True, alpha=False, inline=True, value=q.client.card),
ui.color_picker(name='page', label='Page', trigger=True, alpha=False, inline=True, value=q.client.page),
ui.text_xl('Check contrast'),
ui.message_bar(name='text_card', type='success', text='Contrast between **text** and **card** is great!'),
ui.message_bar(name='card_primary', type='success',
text='Contrast between **card** and **primary** is great!'),
ui.message_bar(name='text_page', type='success', text='Contrast between **text** and **page** is great!'),
ui.message_bar(name='page_primary', type='success',
text='Contrast between **page** and **primary** is great!'),
ui.text_xl('Copy code'),
ui.text(name='code', content=get_theme_code(q)),
]
q.page['form'] = ui.form_card(box='colors', items=q.client.color_items)
q.page['sample'] = ui.form_card(box='preview', items=desktop_items)
q.page['sample_mobile'] = ui.form_card(box='mobile_content', items=mobile_items)
q.page['footer'] = ui.footer_card(box='footer', caption='Made with π by H2O Wave Team.')
q.client.themes = [ui.theme(name='custom', text=q.client.text, card=q.client.card,
page=q.client.page, primary=q.client.primary)]
q.client.initialized = True
if q.args.show_side_panel:
q.page['meta'].side_panel = ui.side_panel(
title='Adjust theme colors',
items=q.client.color_items,
closable=True,
width='min(75%, 420px)'
)
if q.args.primary:
q.client.themes[0].primary = q.args.primary
q.client.primary = q.args.primary
if q.args.text:
q.client.themes[0].text = q.args.text
q.client.text = q.args.text
if q.args.card:
q.client.themes[0].card = q.args.card
q.client.card = q.args.card
if q.args.page:
q.client.themes[0].page = q.args.page
q.client.page = q.args.page
q.page['meta'].themes = q.client.themes
update_contrast_check('text', 'card', q)
update_contrast_check('card', 'primary', q)
update_contrast_check('text', 'page', q)
update_contrast_check('page', 'primary', q)
q.page['form'].code.content = get_theme_code(q)
await q.page.save()
|