fix tags in v1.3.0 FF themes, outline CLI tool

This commit is contained in:
2025-11-19 00:25:19 -08:00
parent a10453d752
commit 3c9418f0c0
69 changed files with 659 additions and 34 deletions

View File

@@ -618,7 +618,7 @@
},
{
"cell_type": "code",
"execution_count": 16,
"execution_count": 22,
"id": "a4b66b95-2c86-452f-bef4-1e3716ab9555",
"metadata": {},
"outputs": [],
@@ -703,49 +703,46 @@
"])\n",
"\n",
"scheme_toml = [\n",
" f\"{lhs:<8} = {rhs:<15}\"\n",
" f\"{lhs:<12} = {rhs:<16}\"\n",
" for lhs, rhs in scheme_pairs\n",
"] "
]
},
{
"cell_type": "code",
"execution_count": 17,
"execution_count": 23,
"id": "908e409c-803f-401d-a5c7-d7fc73aeea9d",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['bg0 = f{{alpine.l20}}',\n",
" 'bg1 = f{{alpine.l25}}',\n",
" 'bg2 = f{{alpine.l30}}',\n",
" 'bg3 = f{{alpine.l35}}',\n",
" 'fg3 = f{{alpine.l70}}',\n",
" 'fg2 = f{{alpine.l75}}',\n",
" 'fg1 = f{{alpine.l80}}',\n",
" 'fg0 = f{{alpine.l85}}',\n",
" 'red = f{{red.l62}} ',\n",
" 'organge = f{{orange.l61}}',\n",
" 'yellow = f{{yellow.l60}}',\n",
" 'green = f{{green.l59}} ',\n",
" 'cyan = f{{green.l59}} ',\n",
" 'blue = f{{blue.l60}} ',\n",
" 'violet = f{{blue.l60}} ',\n",
" 'magenta = f{{red.l62}} ',\n",
" 'background = f{{alpine.l20}}',\n",
" 'selection_bg = f{{alpine.l25}}',\n",
" 'selection_fg = f{{alpine.l80}}',\n",
" 'foreground = f{{alpine.l85}}']"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
"name": "stdout",
"output_type": "stream",
"text": [
"bg0 = f{{alpine.l20}} \n",
"bg1 = f{{alpine.l25}} \n",
"bg2 = f{{alpine.l30}} \n",
"bg3 = f{{alpine.l35}} \n",
"fg3 = f{{alpine.l70}} \n",
"fg2 = f{{alpine.l75}} \n",
"fg1 = f{{alpine.l80}} \n",
"fg0 = f{{alpine.l85}} \n",
"red = f{{red.l62}} \n",
"organge = f{{orange.l61}} \n",
"yellow = f{{yellow.l60}} \n",
"green = f{{green.l59}} \n",
"cyan = f{{green.l59}} \n",
"blue = f{{blue.l60}} \n",
"violet = f{{blue.l60}} \n",
"magenta = f{{red.l62}} \n",
"background = f{{alpine.l20}} \n",
"selection_bg = f{{alpine.l25}} \n",
"selection_fg = f{{alpine.l80}} \n",
"foreground = f{{alpine.l85}} \n"
]
}
],
"source": [
"scheme_toml"
"print('\\n'.join(scheme_toml))"
]
},
{