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
|
from typing import Dict
def get_sample_style(val=None) -> Dict[str, str]:
"""For testing styles."""
if not val:
val = {}
return {
"questionmark": "#e5c07b",
"answermark": "#e5c07b",
"answer": "#61afef",
"input": "#98c379",
"question": "",
"answered_question": "",
"instruction": "#abb2bf",
"long_instruction": "#abb2bf",
"pointer": "#61afef",
"checkbox": "#98c379",
"separator": "",
"skipped": "#5c6370",
"marker": "#e5c07b",
"validator": "",
"fuzzy_prompt": "#c678dd",
"fuzzy_info": "#abb2bf",
"frame.border": "#4b5263",
"fuzzy_match": "#c678dd",
"spinner_pattern": "#e5c07b",
"spinner_text": "",
"bottom-toolbar": "noreverse",
**val,
}
|