flock-core 0.4.0b35__py3-none-any.whl → 0.4.0b37__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of flock-core might be problematic. Click here for more details.
- flock/__init__.py +34 -11
- flock/cli/loaded_flock_cli.py +38 -18
- flock/core/flock.py +48 -3
- flock/themes/alabaster.toml +43 -43
- flock/themes/guezwhoz.toml +43 -43
- flock/themes/wildcherry.toml +43 -43
- flock/themes/wombat.toml +43 -43
- flock/themes/zenburn.toml +43 -43
- flock/webapp/app/config.py +80 -2
- flock/webapp/app/main.py +506 -3
- flock/webapp/app/templates/theme_mapper.html +326 -0
- flock/webapp/app/theme_mapper.py +812 -0
- flock/webapp/run.py +116 -14
- flock/webapp/static/css/custom.css +168 -83
- flock/webapp/templates/base.html +14 -7
- flock/webapp/templates/partials/_agent_detail_form.html +4 -3
- flock/webapp/templates/partials/_agent_list.html +1 -6
- flock/webapp/templates/partials/_agent_manager_view.html +52 -14
- flock/webapp/templates/partials/_agent_manager_view_old.html +19 -0
- flock/webapp/templates/partials/_create_flock_form.html +1 -1
- flock/webapp/templates/partials/_dashboard_flock_properties_preview.html +1 -1
- flock/webapp/templates/partials/_env_vars_table.html +25 -0
- flock/webapp/templates/partials/_execution_form.html +1 -1
- flock/webapp/templates/partials/_execution_view_container.html +13 -12
- flock/webapp/templates/partials/_flock_properties_form.html +2 -1
- flock/webapp/templates/partials/_header_flock_status.html +5 -0
- flock/webapp/templates/partials/_load_manager_view.html +50 -0
- flock/webapp/templates/partials/_settings_env_content.html +10 -0
- flock/webapp/templates/partials/_settings_theme_content.html +15 -0
- flock/webapp/templates/partials/_settings_view.html +36 -0
- flock/webapp/templates/partials/_sidebar.html +13 -6
- flock/webapp/templates/partials/_structured_data_view.html +4 -4
- flock/webapp/templates/partials/_theme_preview.html +23 -0
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/METADATA +1 -1
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/RECORD +38 -29
- flock/webapp/templates/partials/_load_manage_view.html +0 -88
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/WHEEL +0 -0
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/entry_points.txt +0 -0
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/licenses/LICENSE +0 -0
flock/__init__.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Flock package initialization."""
|
|
2
2
|
|
|
3
3
|
import argparse
|
|
4
|
+
import os
|
|
4
5
|
import sys
|
|
5
6
|
|
|
6
7
|
|
|
@@ -15,13 +16,43 @@ def main():
|
|
|
15
16
|
action="store_true",
|
|
16
17
|
help="Start the web interface instead of the CLI",
|
|
17
18
|
)
|
|
19
|
+
parser.add_argument(
|
|
20
|
+
"--theme",
|
|
21
|
+
type=str,
|
|
22
|
+
default=None,
|
|
23
|
+
help="Specify the theme name for the web interface (if --web is used).",
|
|
24
|
+
)
|
|
18
25
|
args = parser.parse_args()
|
|
19
26
|
|
|
20
27
|
# If --web flag is provided, start the web server
|
|
21
28
|
if args.web:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
29
|
+
try:
|
|
30
|
+
# Set environment variable for theme if provided
|
|
31
|
+
if args.theme:
|
|
32
|
+
print(
|
|
33
|
+
f"Setting FLOCK_WEB_THEME environment variable to: {args.theme}"
|
|
34
|
+
)
|
|
35
|
+
os.environ["FLOCK_WEB_THEME"] = args.theme
|
|
36
|
+
else:
|
|
37
|
+
# Ensure it's not set if no theme arg is passed
|
|
38
|
+
if "FLOCK_WEB_THEME" in os.environ:
|
|
39
|
+
del os.environ["FLOCK_WEB_THEME"]
|
|
40
|
+
|
|
41
|
+
# Import and run the standalone webapp main function
|
|
42
|
+
# It will now read the theme from the environment variable
|
|
43
|
+
from flock.webapp.run import main as run_webapp_main
|
|
44
|
+
|
|
45
|
+
run_webapp_main()
|
|
46
|
+
|
|
47
|
+
except ImportError:
|
|
48
|
+
print(
|
|
49
|
+
"Error: Could not import webapp components. Ensure web dependencies are installed.",
|
|
50
|
+
file=sys.stderr,
|
|
51
|
+
)
|
|
52
|
+
sys.exit(1)
|
|
53
|
+
except Exception as e:
|
|
54
|
+
print(f"Error starting webapp: {e}", file=sys.stderr)
|
|
55
|
+
sys.exit(1)
|
|
25
56
|
return
|
|
26
57
|
|
|
27
58
|
# Otherwise, run the CLI interface
|
|
@@ -53,8 +84,6 @@ def main():
|
|
|
53
84
|
console = Console()
|
|
54
85
|
|
|
55
86
|
# Show a welcome message on first run with the new tool serialization format
|
|
56
|
-
import os
|
|
57
|
-
|
|
58
87
|
cfg_file = os.path.expanduser(f"~/.flock/{CLI_CFG_FILE}")
|
|
59
88
|
if not os.path.exists(cfg_file):
|
|
60
89
|
# Create the directory if it doesn't exist
|
|
@@ -137,12 +166,6 @@ def main():
|
|
|
137
166
|
manage_registry()
|
|
138
167
|
elif result == CLI_SETTINGS:
|
|
139
168
|
settings_editor()
|
|
140
|
-
elif result == CLI_START_WEB_SERVER:
|
|
141
|
-
# Start the web server
|
|
142
|
-
from flock.webapp.run import main as run_webapp
|
|
143
|
-
|
|
144
|
-
run_webapp()
|
|
145
|
-
break
|
|
146
169
|
elif result == CLI_NOTES:
|
|
147
170
|
load_release_notes()
|
|
148
171
|
elif result == CLI_EXIT:
|
flock/cli/loaded_flock_cli.py
CHANGED
|
@@ -12,8 +12,8 @@ from flock.cli.constants import (
|
|
|
12
12
|
CLI_REGISTRY_MANAGEMENT,
|
|
13
13
|
CLI_SETTINGS,
|
|
14
14
|
)
|
|
15
|
-
from flock.core.api import runner
|
|
16
15
|
from flock.core.flock import Flock
|
|
16
|
+
from flock.core.logging.logging import get_logger
|
|
17
17
|
from flock.core.util.cli_helper import init_console
|
|
18
18
|
|
|
19
19
|
# Import future modules we'll create
|
|
@@ -48,6 +48,7 @@ except ImportError:
|
|
|
48
48
|
|
|
49
49
|
# Create console instance
|
|
50
50
|
console = Console()
|
|
51
|
+
logger = get_logger("cli.loaded_flock")
|
|
51
52
|
|
|
52
53
|
|
|
53
54
|
def start_loaded_flock_cli(
|
|
@@ -188,17 +189,11 @@ def start_loaded_flock_cli(
|
|
|
188
189
|
|
|
189
190
|
|
|
190
191
|
def _start_web_server(flock: Flock, create_ui: bool = False) -> None:
|
|
191
|
-
"""Start a web server with the loaded Flock instance.
|
|
192
|
-
|
|
193
|
-
Args:
|
|
194
|
-
flock: The loaded Flock instance
|
|
195
|
-
create_ui: Whether to create a UI for the web server
|
|
196
|
-
"""
|
|
192
|
+
"""Start a web server with the loaded Flock instance."""
|
|
197
193
|
host = "127.0.0.1"
|
|
198
194
|
port = 8344
|
|
199
|
-
server_name = "
|
|
195
|
+
# server_name = flock.name + " API" # Use flock name by default for server_name
|
|
200
196
|
|
|
201
|
-
# Get configuration from user
|
|
202
197
|
console.print("\n[bold]Web Server Configuration[/]")
|
|
203
198
|
|
|
204
199
|
host_input = questionary.text(
|
|
@@ -214,21 +209,46 @@ def _start_web_server(flock: Flock, create_ui: bool = False) -> None:
|
|
|
214
209
|
port = int(port_input)
|
|
215
210
|
|
|
216
211
|
server_name_input = questionary.text(
|
|
217
|
-
"Server name (default: FlockName API):", default=flock.name
|
|
212
|
+
"Server name (default: FlockName API):", default=f"{flock.name or 'Flock'} API"
|
|
218
213
|
).ask()
|
|
219
|
-
if server_name_input:
|
|
220
|
-
|
|
214
|
+
# if server_name_input: # server_name will be set by flock.start_api if not passed, or use its default
|
|
215
|
+
# server_name = server_name_input
|
|
216
|
+
|
|
217
|
+
ui_theme_to_pass = None
|
|
218
|
+
if create_ui:
|
|
219
|
+
try:
|
|
220
|
+
from flock.webapp.app.config import (
|
|
221
|
+
DEFAULT_THEME_NAME,
|
|
222
|
+
list_available_themes,
|
|
223
|
+
)
|
|
224
|
+
available_themes = list_available_themes()
|
|
225
|
+
theme_choices = ["default (current environment setting)", "random"] + sorted(available_themes)
|
|
226
|
+
|
|
227
|
+
selected_theme_choice = questionary.select(
|
|
228
|
+
"Select UI theme:",
|
|
229
|
+
choices=theme_choices,
|
|
230
|
+
default="default (current environment setting)"
|
|
231
|
+
).ask()
|
|
232
|
+
|
|
233
|
+
if selected_theme_choice == "random":
|
|
234
|
+
ui_theme_to_pass = "random"
|
|
235
|
+
elif selected_theme_choice and selected_theme_choice != "default (current environment setting)":
|
|
236
|
+
ui_theme_to_pass = selected_theme_choice
|
|
237
|
+
# If "default" or None, ui_theme_to_pass remains None, Flock.start_api will use its logic
|
|
238
|
+
|
|
239
|
+
except ImportError:
|
|
240
|
+
logger.warning("Could not import webapp theme configuration for CLI selection. Theme will use default.")
|
|
241
|
+
ui_theme_to_pass = None # Fallback if webapp components not there
|
|
221
242
|
|
|
222
|
-
# Start the web server
|
|
223
243
|
console.print(
|
|
224
|
-
f"\nStarting web server on {host}:{port} {'with UI' if create_ui else 'without UI'}..."
|
|
244
|
+
f"\nStarting web server on {host}:{port} {'with UI' if create_ui else 'without UI'}{' (Theme: ' + (ui_theme_to_pass if ui_theme_to_pass else 'default') + ')' if create_ui else ''}..."
|
|
225
245
|
)
|
|
226
246
|
|
|
227
|
-
#
|
|
228
|
-
|
|
229
|
-
flock=flock,
|
|
247
|
+
# Call the Flock instance's own start_api method directly
|
|
248
|
+
flock.start_api(
|
|
230
249
|
host=host,
|
|
231
250
|
port=port,
|
|
232
|
-
server_name=
|
|
251
|
+
server_name=server_name_input, # Pass the chosen server name
|
|
233
252
|
create_ui=create_ui,
|
|
253
|
+
ui_theme=ui_theme_to_pass,
|
|
234
254
|
)
|
flock/core/flock.py
CHANGED
|
@@ -684,12 +684,57 @@ class Flock(BaseModel, Serializable):
|
|
|
684
684
|
port: int = 8344,
|
|
685
685
|
server_name: str = "Flock API",
|
|
686
686
|
create_ui: bool = False,
|
|
687
|
+
ui_theme: str | None = None,
|
|
687
688
|
) -> None:
|
|
688
|
-
"""Starts a REST API server for this Flock instance.
|
|
689
|
+
"""Starts a REST API server for this Flock instance.
|
|
690
|
+
If create_ui is True, integrates the web UI, potentially with a specific theme.
|
|
691
|
+
"""
|
|
689
692
|
# Import runner locally
|
|
690
|
-
|
|
693
|
+
# We need to decide if start_api now *always* tries to use the integrated approach
|
|
694
|
+
# or if it still calls the API-only runner when create_ui=False.
|
|
695
|
+
# Let's assume it uses the integrated approach starter if create_ui=True
|
|
696
|
+
# and the API-only starter (FlockAPI) if create_ui=False.
|
|
691
697
|
|
|
692
|
-
|
|
698
|
+
if create_ui:
|
|
699
|
+
# Use the integrated server approach
|
|
700
|
+
try:
|
|
701
|
+
# We need a function similar to start_flock_api but for the integrated app
|
|
702
|
+
# Let's assume it exists in webapp.run for now, called start_integrated_server
|
|
703
|
+
from flock.webapp.run import start_integrated_server
|
|
704
|
+
|
|
705
|
+
start_integrated_server(
|
|
706
|
+
flock_instance=self,
|
|
707
|
+
host=host,
|
|
708
|
+
port=port,
|
|
709
|
+
server_name=server_name,
|
|
710
|
+
theme_name=ui_theme,
|
|
711
|
+
)
|
|
712
|
+
except ImportError:
|
|
713
|
+
# Log error - cannot start integrated UI
|
|
714
|
+
from flock.core.logging.logging import get_logger
|
|
715
|
+
|
|
716
|
+
logger = get_logger("flock.core")
|
|
717
|
+
logger.error(
|
|
718
|
+
"Cannot start integrated UI: Required components (e.g., flock.webapp.run.start_integrated_server) not found."
|
|
719
|
+
)
|
|
720
|
+
except Exception as e:
|
|
721
|
+
from flock.core.logging.logging import get_logger
|
|
722
|
+
|
|
723
|
+
logger = get_logger("flock.core")
|
|
724
|
+
logger.error(
|
|
725
|
+
f"Failed to start integrated UI server: {e}", exc_info=True
|
|
726
|
+
)
|
|
727
|
+
else:
|
|
728
|
+
# Use the API-only server approach
|
|
729
|
+
from flock.core.api.runner import start_flock_api
|
|
730
|
+
|
|
731
|
+
start_flock_api(
|
|
732
|
+
flock=self,
|
|
733
|
+
host=host,
|
|
734
|
+
port=port,
|
|
735
|
+
server_name=server_name,
|
|
736
|
+
create_ui=False, # Explicitly false for API only runner
|
|
737
|
+
)
|
|
693
738
|
|
|
694
739
|
# --- CLI Starter ---
|
|
695
740
|
def start_cli(
|
flock/themes/alabaster.toml
CHANGED
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
panel_style = "on #f7f7f7"
|
|
3
3
|
table_header_style = "bold #000000 on #bfdbfe"
|
|
4
4
|
table_title_style = "bold #000000"
|
|
5
|
-
table_border_style = "#007acc"
|
|
6
|
-
panel_border_style = "#007acc"
|
|
5
|
+
table_border_style = " #007acc"
|
|
6
|
+
panel_border_style = " #007acc"
|
|
7
7
|
column_output = "bold #000000"
|
|
8
|
-
column_value = "#000000"
|
|
9
|
-
bright_black = "#777777"
|
|
10
|
-
bright_blue = "#007acc"
|
|
11
|
-
bright_cyan = "#00aacb"
|
|
12
|
-
bright_green = "#60cb00"
|
|
13
|
-
bright_magenta = "#e64ce6"
|
|
14
|
-
bright_red = "#f05050"
|
|
15
|
-
bright_white = "#f7f7f7"
|
|
16
|
-
bright_yellow = "#ffbc5d"
|
|
17
|
-
normal_black = "#000000"
|
|
18
|
-
normal_blue = "#325cc0"
|
|
19
|
-
normal_cyan = "#0083b2"
|
|
20
|
-
normal_green = "#448c27"
|
|
21
|
-
normal_magenta = "#7a3e9d"
|
|
22
|
-
normal_red = "#aa3731"
|
|
23
|
-
normal_white = "#f7f7f7"
|
|
24
|
-
normal_yellow = "#cb9000"
|
|
25
|
-
cursor_cursor = "#007acc"
|
|
26
|
-
cursor_text = "#bfdbfe"
|
|
8
|
+
column_value = " #000000"
|
|
9
|
+
bright_black = " #777777"
|
|
10
|
+
bright_blue = " #007acc"
|
|
11
|
+
bright_cyan = " #00aacb"
|
|
12
|
+
bright_green = " #60cb00"
|
|
13
|
+
bright_magenta = " #e64ce6"
|
|
14
|
+
bright_red = " #f05050"
|
|
15
|
+
bright_white = " #f7f7f7"
|
|
16
|
+
bright_yellow = " #ffbc5d"
|
|
17
|
+
normal_black = " #000000"
|
|
18
|
+
normal_blue = " #325cc0"
|
|
19
|
+
normal_cyan = " #0083b2"
|
|
20
|
+
normal_green = " #448c27"
|
|
21
|
+
normal_magenta = " #7a3e9d"
|
|
22
|
+
normal_red = " #aa3731"
|
|
23
|
+
normal_white = " #f7f7f7"
|
|
24
|
+
normal_yellow = " #cb9000"
|
|
25
|
+
cursor_cursor = " #007acc"
|
|
26
|
+
cursor_text = " #bfdbfe"
|
|
27
27
|
table_show_lines = false
|
|
28
28
|
table_box = "MINIMAL"
|
|
29
29
|
panel_padding = [ 1, 1,]
|
|
@@ -45,33 +45,33 @@ table_caption_justify = "center"
|
|
|
45
45
|
table_highlight = false
|
|
46
46
|
|
|
47
47
|
[colors.bright]
|
|
48
|
-
black = "#777777"
|
|
49
|
-
blue = "#007acc"
|
|
50
|
-
cyan = "#00aacb"
|
|
51
|
-
green = "#60cb00"
|
|
52
|
-
magenta = "#e64ce6"
|
|
53
|
-
red = "#f05050"
|
|
54
|
-
white = "#f7f7f7"
|
|
55
|
-
yellow = "#ffbc5d"
|
|
48
|
+
black = " #777777"
|
|
49
|
+
blue = " #007acc"
|
|
50
|
+
cyan = " #00aacb"
|
|
51
|
+
green = " #60cb00"
|
|
52
|
+
magenta = " #e64ce6"
|
|
53
|
+
red = " #f05050"
|
|
54
|
+
white = " #f7f7f7"
|
|
55
|
+
yellow = " #ffbc5d"
|
|
56
56
|
|
|
57
57
|
[colors.cursor]
|
|
58
|
-
cursor = "#007acc"
|
|
59
|
-
text = "#bfdbfe"
|
|
58
|
+
cursor = " #007acc"
|
|
59
|
+
text = " #bfdbfe"
|
|
60
60
|
|
|
61
61
|
[colors.normal]
|
|
62
|
-
black = "#000000"
|
|
63
|
-
blue = "#325cc0"
|
|
64
|
-
cyan = "#0083b2"
|
|
65
|
-
green = "#448c27"
|
|
66
|
-
magenta = "#7a3e9d"
|
|
67
|
-
red = "#aa3731"
|
|
68
|
-
white = "#f7f7f7"
|
|
69
|
-
yellow = "#cb9000"
|
|
62
|
+
black = " #000000"
|
|
63
|
+
blue = " #325cc0"
|
|
64
|
+
cyan = " #0083b2"
|
|
65
|
+
green = " #448c27"
|
|
66
|
+
magenta = " #7a3e9d"
|
|
67
|
+
red = " #aa3731"
|
|
68
|
+
white = " #f7f7f7"
|
|
69
|
+
yellow = " #cb9000"
|
|
70
70
|
|
|
71
71
|
[colors.primary]
|
|
72
|
-
background = "#f7f7f7"
|
|
73
|
-
foreground = "#000000"
|
|
72
|
+
background = " #f7f7f7"
|
|
73
|
+
foreground = " #000000"
|
|
74
74
|
|
|
75
75
|
[colors.selection]
|
|
76
|
-
background = "#bfdbfe"
|
|
77
|
-
text = "#000000"
|
|
76
|
+
background = " #bfdbfe"
|
|
77
|
+
text = " #000000"
|
flock/themes/guezwhoz.toml
CHANGED
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
panel_style = "on #1c1c1c"
|
|
3
3
|
table_header_style = "bold #eeeeee on #005f5f"
|
|
4
4
|
table_title_style = "bold #d0d0d0"
|
|
5
|
-
table_border_style = "#87afd7"
|
|
6
|
-
panel_border_style = "#87afd7"
|
|
5
|
+
table_border_style = " #87afd7"
|
|
6
|
+
panel_border_style = " #87afd7"
|
|
7
7
|
column_output = "bold #d0d0d0"
|
|
8
|
-
column_value = "#d0d0d0"
|
|
9
|
-
bright_black = "#8a8a8a"
|
|
10
|
-
bright_blue = "#87afd7"
|
|
11
|
-
bright_cyan = "#87d7d7"
|
|
12
|
-
bright_green = "#afd7af"
|
|
13
|
-
bright_magenta = "#afafd7"
|
|
14
|
-
bright_red = "#d75f5f"
|
|
15
|
-
bright_white = "#dadada"
|
|
16
|
-
bright_yellow = "#d7d7af"
|
|
17
|
-
normal_black = "#080808"
|
|
18
|
-
normal_blue = "#5fafd7"
|
|
19
|
-
normal_cyan = "#5fd7d7"
|
|
20
|
-
normal_green = "#87d7af"
|
|
21
|
-
normal_magenta = "#afafff"
|
|
22
|
-
normal_red = "#ff5f5f"
|
|
23
|
-
normal_white = "#dadada"
|
|
24
|
-
normal_yellow = "#d7d787"
|
|
25
|
-
cursor_cursor = "#eeeeee"
|
|
26
|
-
cursor_text = "#eeeeee"
|
|
8
|
+
column_value = " #d0d0d0"
|
|
9
|
+
bright_black = " #8a8a8a"
|
|
10
|
+
bright_blue = " #87afd7"
|
|
11
|
+
bright_cyan = " #87d7d7"
|
|
12
|
+
bright_green = " #afd7af"
|
|
13
|
+
bright_magenta = " #afafd7"
|
|
14
|
+
bright_red = " #d75f5f"
|
|
15
|
+
bright_white = " #dadada"
|
|
16
|
+
bright_yellow = " #d7d7af"
|
|
17
|
+
normal_black = " #080808"
|
|
18
|
+
normal_blue = " #5fafd7"
|
|
19
|
+
normal_cyan = " #5fd7d7"
|
|
20
|
+
normal_green = " #87d7af"
|
|
21
|
+
normal_magenta = " #afafff"
|
|
22
|
+
normal_red = " #ff5f5f"
|
|
23
|
+
normal_white = " #dadada"
|
|
24
|
+
normal_yellow = " #d7d787"
|
|
25
|
+
cursor_cursor = " #eeeeee"
|
|
26
|
+
cursor_text = " #eeeeee"
|
|
27
27
|
table_show_lines = false
|
|
28
28
|
table_box = "ROUNDED"
|
|
29
29
|
panel_padding = [ 1, 1,]
|
|
@@ -45,33 +45,33 @@ table_caption_justify = "center"
|
|
|
45
45
|
table_highlight = false
|
|
46
46
|
|
|
47
47
|
[colors.bright]
|
|
48
|
-
black = "#8a8a8a"
|
|
49
|
-
blue = "#87afd7"
|
|
50
|
-
cyan = "#87d7d7"
|
|
51
|
-
green = "#afd7af"
|
|
52
|
-
magenta = "#afafd7"
|
|
53
|
-
red = "#d75f5f"
|
|
54
|
-
white = "#dadada"
|
|
55
|
-
yellow = "#d7d7af"
|
|
48
|
+
black = " #8a8a8a"
|
|
49
|
+
blue = " #87afd7"
|
|
50
|
+
cyan = " #87d7d7"
|
|
51
|
+
green = " #afd7af"
|
|
52
|
+
magenta = " #afafd7"
|
|
53
|
+
red = " #d75f5f"
|
|
54
|
+
white = " #dadada"
|
|
55
|
+
yellow = " #d7d7af"
|
|
56
56
|
|
|
57
57
|
[colors.cursor]
|
|
58
|
-
cursor = "#eeeeee"
|
|
59
|
-
text = "#eeeeee"
|
|
58
|
+
cursor = " #eeeeee"
|
|
59
|
+
text = " #eeeeee"
|
|
60
60
|
|
|
61
61
|
[colors.normal]
|
|
62
|
-
black = "#080808"
|
|
63
|
-
blue = "#5fafd7"
|
|
64
|
-
cyan = "#5fd7d7"
|
|
65
|
-
green = "#87d7af"
|
|
66
|
-
magenta = "#afafff"
|
|
67
|
-
red = "#ff5f5f"
|
|
68
|
-
white = "#dadada"
|
|
69
|
-
yellow = "#d7d787"
|
|
62
|
+
black = " #080808"
|
|
63
|
+
blue = " #5fafd7"
|
|
64
|
+
cyan = " #5fd7d7"
|
|
65
|
+
green = " #87d7af"
|
|
66
|
+
magenta = " #afafff"
|
|
67
|
+
red = " #ff5f5f"
|
|
68
|
+
white = " #dadada"
|
|
69
|
+
yellow = " #d7d787"
|
|
70
70
|
|
|
71
71
|
[colors.primary]
|
|
72
|
-
background = "#1c1c1c"
|
|
73
|
-
foreground = "#d0d0d0"
|
|
72
|
+
background = " #1c1c1c"
|
|
73
|
+
foreground = " #d0d0d0"
|
|
74
74
|
|
|
75
75
|
[colors.selection]
|
|
76
|
-
background = "#005f5f"
|
|
77
|
-
text = "#eeeeee"
|
|
76
|
+
background = " #005f5f"
|
|
77
|
+
text = " #eeeeee"
|
flock/themes/wildcherry.toml
CHANGED
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
panel_style = "on #1f1726"
|
|
3
3
|
table_header_style = "bold #e4ffff on #002831"
|
|
4
4
|
table_title_style = "bold #dafaff"
|
|
5
|
-
table_border_style = "#308cba"
|
|
6
|
-
panel_border_style = "#308cba"
|
|
5
|
+
table_border_style = " #308cba"
|
|
6
|
+
panel_border_style = " #308cba"
|
|
7
7
|
column_output = "bold #dafaff"
|
|
8
|
-
column_value = "#dafaff"
|
|
9
|
-
bright_black = "#009cc9"
|
|
10
|
-
bright_blue = "#308cba"
|
|
11
|
-
bright_cyan = "#ff919d"
|
|
12
|
-
bright_green = "#f4dca5"
|
|
13
|
-
bright_magenta = "#ae636b"
|
|
14
|
-
bright_red = "#da6bac"
|
|
15
|
-
bright_white = "#e4838d"
|
|
16
|
-
bright_yellow = "#eac066"
|
|
17
|
-
normal_black = "#000507"
|
|
18
|
-
normal_blue = "#883cdc"
|
|
19
|
-
normal_cyan = "#c1b8b7"
|
|
20
|
-
normal_green = "#2ab250"
|
|
21
|
-
normal_magenta = "#ececec"
|
|
22
|
-
normal_red = "#d94085"
|
|
23
|
-
normal_white = "#fff8de"
|
|
24
|
-
normal_yellow = "#ffd16f"
|
|
25
|
-
cursor_cursor = "#dd00ff"
|
|
26
|
-
cursor_text = "#ff00fe"
|
|
8
|
+
column_value = " #dafaff"
|
|
9
|
+
bright_black = " #009cc9"
|
|
10
|
+
bright_blue = " #308cba"
|
|
11
|
+
bright_cyan = " #ff919d"
|
|
12
|
+
bright_green = " #f4dca5"
|
|
13
|
+
bright_magenta = " #ae636b"
|
|
14
|
+
bright_red = " #da6bac"
|
|
15
|
+
bright_white = " #e4838d"
|
|
16
|
+
bright_yellow = " #eac066"
|
|
17
|
+
normal_black = " #000507"
|
|
18
|
+
normal_blue = " #883cdc"
|
|
19
|
+
normal_cyan = " #c1b8b7"
|
|
20
|
+
normal_green = " #2ab250"
|
|
21
|
+
normal_magenta = " #ececec"
|
|
22
|
+
normal_red = " #d94085"
|
|
23
|
+
normal_white = " #fff8de"
|
|
24
|
+
normal_yellow = " #ffd16f"
|
|
25
|
+
cursor_cursor = " #dd00ff"
|
|
26
|
+
cursor_text = " #ff00fe"
|
|
27
27
|
table_show_lines = false
|
|
28
28
|
table_box = "DOUBLE_EDGE"
|
|
29
29
|
panel_padding = [ 1, 2,]
|
|
@@ -45,33 +45,33 @@ table_caption_justify = "center"
|
|
|
45
45
|
table_highlight = false
|
|
46
46
|
|
|
47
47
|
[colors.bright]
|
|
48
|
-
black = "#009cc9"
|
|
49
|
-
blue = "#308cba"
|
|
50
|
-
cyan = "#ff919d"
|
|
51
|
-
green = "#f4dca5"
|
|
52
|
-
magenta = "#ae636b"
|
|
53
|
-
red = "#da6bac"
|
|
54
|
-
white = "#e4838d"
|
|
55
|
-
yellow = "#eac066"
|
|
48
|
+
black = " #009cc9"
|
|
49
|
+
blue = " #308cba"
|
|
50
|
+
cyan = " #ff919d"
|
|
51
|
+
green = " #f4dca5"
|
|
52
|
+
magenta = " #ae636b"
|
|
53
|
+
red = " #da6bac"
|
|
54
|
+
white = " #e4838d"
|
|
55
|
+
yellow = " #eac066"
|
|
56
56
|
|
|
57
57
|
[colors.cursor]
|
|
58
|
-
cursor = "#dd00ff"
|
|
59
|
-
text = "#ff00fe"
|
|
58
|
+
cursor = " #dd00ff"
|
|
59
|
+
text = " #ff00fe"
|
|
60
60
|
|
|
61
61
|
[colors.normal]
|
|
62
|
-
black = "#000507"
|
|
63
|
-
blue = "#883cdc"
|
|
64
|
-
cyan = "#c1b8b7"
|
|
65
|
-
green = "#2ab250"
|
|
66
|
-
magenta = "#ececec"
|
|
67
|
-
red = "#d94085"
|
|
68
|
-
white = "#fff8de"
|
|
69
|
-
yellow = "#ffd16f"
|
|
62
|
+
black = " #000507"
|
|
63
|
+
blue = " #883cdc"
|
|
64
|
+
cyan = " #c1b8b7"
|
|
65
|
+
green = " #2ab250"
|
|
66
|
+
magenta = " #ececec"
|
|
67
|
+
red = " #d94085"
|
|
68
|
+
white = " #fff8de"
|
|
69
|
+
yellow = " #ffd16f"
|
|
70
70
|
|
|
71
71
|
[colors.primary]
|
|
72
|
-
background = "#1f1726"
|
|
73
|
-
foreground = "#dafaff"
|
|
72
|
+
background = " #1f1726"
|
|
73
|
+
foreground = " #dafaff"
|
|
74
74
|
|
|
75
75
|
[colors.selection]
|
|
76
|
-
background = "#002831"
|
|
77
|
-
text = "#e4ffff"
|
|
76
|
+
background = " #002831"
|
|
77
|
+
text = " #e4ffff"
|
flock/themes/wombat.toml
CHANGED
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
panel_style = "on #171717"
|
|
3
3
|
table_header_style = "bold #b6bbc0 on #453b39"
|
|
4
4
|
table_title_style = "bold #dedacf"
|
|
5
|
-
table_border_style = "#a5c7ff"
|
|
6
|
-
panel_border_style = "#a5c7ff"
|
|
5
|
+
table_border_style = " #a5c7ff"
|
|
6
|
+
panel_border_style = " #a5c7ff"
|
|
7
7
|
column_output = "bold #dedacf"
|
|
8
|
-
column_value = "#dedacf"
|
|
9
|
-
bright_black = "#313131"
|
|
10
|
-
bright_blue = "#a5c7ff"
|
|
11
|
-
bright_cyan = "#b7fff9"
|
|
12
|
-
bright_green = "#ddf88f"
|
|
13
|
-
bright_magenta = "#ddaaff"
|
|
14
|
-
bright_red = "#f58c80"
|
|
15
|
-
bright_white = "#ffffff"
|
|
16
|
-
bright_yellow = "#eee5b2"
|
|
17
|
-
normal_black = "#000000"
|
|
18
|
-
normal_blue = "#5da9f6"
|
|
19
|
-
normal_cyan = "#82fff7"
|
|
20
|
-
normal_green = "#b1e969"
|
|
21
|
-
normal_magenta = "#e86aff"
|
|
22
|
-
normal_red = "#ff615a"
|
|
23
|
-
normal_white = "#dedacf"
|
|
24
|
-
normal_yellow = "#ebd99c"
|
|
25
|
-
cursor_cursor = "#bbbbbb"
|
|
26
|
-
cursor_text = "#ffffff"
|
|
8
|
+
column_value = " #dedacf"
|
|
9
|
+
bright_black = " #313131"
|
|
10
|
+
bright_blue = " #a5c7ff"
|
|
11
|
+
bright_cyan = " #b7fff9"
|
|
12
|
+
bright_green = " #ddf88f"
|
|
13
|
+
bright_magenta = " #ddaaff"
|
|
14
|
+
bright_red = " #f58c80"
|
|
15
|
+
bright_white = " #ffffff"
|
|
16
|
+
bright_yellow = " #eee5b2"
|
|
17
|
+
normal_black = " #000000"
|
|
18
|
+
normal_blue = " #5da9f6"
|
|
19
|
+
normal_cyan = " #82fff7"
|
|
20
|
+
normal_green = " #b1e969"
|
|
21
|
+
normal_magenta = " #e86aff"
|
|
22
|
+
normal_red = " #ff615a"
|
|
23
|
+
normal_white = " #dedacf"
|
|
24
|
+
normal_yellow = " #ebd99c"
|
|
25
|
+
cursor_cursor = " #bbbbbb"
|
|
26
|
+
cursor_text = " #ffffff"
|
|
27
27
|
table_show_lines = true
|
|
28
28
|
table_box = "SIMPLE"
|
|
29
29
|
panel_padding = [ 1, 1,]
|
|
@@ -45,33 +45,33 @@ table_caption_justify = "center"
|
|
|
45
45
|
table_highlight = false
|
|
46
46
|
|
|
47
47
|
[colors.bright]
|
|
48
|
-
black = "#313131"
|
|
49
|
-
blue = "#a5c7ff"
|
|
50
|
-
cyan = "#b7fff9"
|
|
51
|
-
green = "#ddf88f"
|
|
52
|
-
magenta = "#ddaaff"
|
|
53
|
-
red = "#f58c80"
|
|
54
|
-
white = "#ffffff"
|
|
55
|
-
yellow = "#eee5b2"
|
|
48
|
+
black = " #313131"
|
|
49
|
+
blue = " #a5c7ff"
|
|
50
|
+
cyan = " #b7fff9"
|
|
51
|
+
green = " #ddf88f"
|
|
52
|
+
magenta = " #ddaaff"
|
|
53
|
+
red = " #f58c80"
|
|
54
|
+
white = " #ffffff"
|
|
55
|
+
yellow = " #eee5b2"
|
|
56
56
|
|
|
57
57
|
[colors.cursor]
|
|
58
|
-
cursor = "#bbbbbb"
|
|
59
|
-
text = "#ffffff"
|
|
58
|
+
cursor = " #bbbbbb"
|
|
59
|
+
text = " #ffffff"
|
|
60
60
|
|
|
61
61
|
[colors.normal]
|
|
62
|
-
black = "#000000"
|
|
63
|
-
blue = "#5da9f6"
|
|
64
|
-
cyan = "#82fff7"
|
|
65
|
-
green = "#b1e969"
|
|
66
|
-
magenta = "#e86aff"
|
|
67
|
-
red = "#ff615a"
|
|
68
|
-
white = "#dedacf"
|
|
69
|
-
yellow = "#ebd99c"
|
|
62
|
+
black = " #000000"
|
|
63
|
+
blue = " #5da9f6"
|
|
64
|
+
cyan = " #82fff7"
|
|
65
|
+
green = " #b1e969"
|
|
66
|
+
magenta = " #e86aff"
|
|
67
|
+
red = " #ff615a"
|
|
68
|
+
white = " #dedacf"
|
|
69
|
+
yellow = " #ebd99c"
|
|
70
70
|
|
|
71
71
|
[colors.primary]
|
|
72
|
-
background = "#171717"
|
|
73
|
-
foreground = "#dedacf"
|
|
72
|
+
background = " #171717"
|
|
73
|
+
foreground = " #dedacf"
|
|
74
74
|
|
|
75
75
|
[colors.selection]
|
|
76
|
-
background = "#453b39"
|
|
77
|
-
text = "#b6bbc0"
|
|
76
|
+
background = " #453b39"
|
|
77
|
+
text = " #b6bbc0"
|