10 lines
301 B
Python
10 lines
301 B
Python
|
|
# styles.py
|
||
|
|
STYLES = {
|
||
|
|
'header': 'text-4xl font-bold text-blue-600',
|
||
|
|
'h1': 'text-2xl font-bold text-blue-600',
|
||
|
|
'h2': 'text-1xl font-bold text-blue-600',
|
||
|
|
'text': 'text-base text-slate-800',
|
||
|
|
'hint': 'text-sm text-slate-500 italic',
|
||
|
|
'error': 'text-sm text-red-600 font-medium',
|
||
|
|
}
|