Skip to main content

Theme generator

Use theme generator to quickly generate custom color schemes for your app.

from typing import Tuple
from h2o_wave import main, app, Q, ui, data

from pygments import highlight
from pygments.formatters.html import HtmlFormatter
from pygments.lexers import get_lexer_by_name
from pygments.style import Style
from pygments.token import Name, String, Operator, Punctuation

import math

py_lexer = get_lexer_by_name('python')


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 get_contrast(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)
if contrast < min_contrast:
return ui.message_bar(type='error', text=f'Improve contrast between **{color1}** and **{color2}**.')
else:
return ui.message_bar(type='success', text=f'Contrast between **{color1}** and **{color2}** is great!')


def get_theme_code(q: Q):
contents = f'''
ui.theme(
name='<theme-name>',
primary='{q.client.primary}',
text='{q.client.text}',
card='{q.client.card}',
page='{q.client.page}',
)
'''

# Reference: http://svn.python.org/projects/external/Pygments-0.10/docs/build/styles.html
class CustomStyle(Style):
styles = {
Name: q.client.text,
Operator: q.client.text,
Punctuation: q.client.text,
String: q.client.primary
}

html_formatter = HtmlFormatter(full=True, style=CustomStyle, nobackground=True)
html = highlight(contents, py_lexer, html_formatter)
html = html.replace('<h2></h2>', '')
html = html.replace('<body>', '<body style="margin: 0 inherit">')
html = html.replace('<pre>', '<pre style="margin: 0">')
return html


@app('/demo')
async def serve(q: Q):
if not q.client.initialized:
image = 'https://images.pexels.com/photos/220453/pexels-photo-220453.jpeg?auto=compress&h=750&w=1260'
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('header'),
ui.zone('content', direction=ui.ZoneDirection.ROW, zones=[
ui.zone('colors', size='400px'),
ui.zone('preview')
]),
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['form'] = ui.form_card(box='colors', 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'),
get_contrast('text', 'card', q),
get_contrast('card', 'primary', q),
get_contrast('text', 'page', q),
get_contrast('page', 'primary', q),
ui.text_xl('Copy code'),
ui.frame(content=get_theme_code(q), height='180px'),
])
q.page['sample'] = ui.form_card(box='preview', items=[
ui.text_xl(content='Sample App to show colors'),
ui.progress(label='A progress bar'),
ui.inline([
ui.checkbox(name='checkbox1', label='A checkbox', value=True),
ui.checkbox(name='checkbox2', label='Another checkbox'),
ui.checkbox(name='checkbox3', label='Yet another checkbox'),
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'),
]),
])
q.page['footer'] = ui.footer_card(box='footer', caption='(c) 2021 H2O.ai. All rights reserved.')
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.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
q.page['form'].items[5] = get_contrast('text', 'card', q)
q.page['form'].items[6] = get_contrast('card', 'primary', q)
q.page['form'].items[7] = get_contrast('text', 'page', q)
q.page['form'].items[8] = get_contrast('page', 'primary', q)
q.page['form'].items[10].frame.content = get_theme_code(q)
await q.page.save()

Tags:  theme_generator