default time color, font adjustments i preview

main
czoczo 7 months ago
parent 397457e48d
commit 4c31d98a77
  1. 8
      webpage/BetterBash/src/App.vue

@ -138,7 +138,7 @@ const colors = ref({
PRIMARY_COLOR: '\\[\\033[00;92m\\]', PRIMARY_COLOR: '\\[\\033[00;92m\\]',
SECONDARY_COLOR: '\\[\\033[00;95;1m\\]', SECONDARY_COLOR: '\\[\\033[00;95;1m\\]',
ROOT_COLOR: '\\033[00;41;97;1m', ROOT_COLOR: '\\033[00;41;97;1m',
TIME_COLOR: '\\[\\033[00;93;1m\\]', TIME_COLOR: '\\[\\033[00;33;1m\\]',
ERR_COLOR: '\\[\\033[00;31;1m\\]', ERR_COLOR: '\\[\\033[00;31;1m\\]',
WHITEB: '\\[\\033[00;97;1m\\]', WHITEB: '\\[\\033[00;97;1m\\]',
RST: '\\[\\033[0m\\]', RST: '\\[\\033[0m\\]',
@ -213,6 +213,7 @@ h1 {
background-color: #2d2d2d; background-color: #2d2d2d;
padding: 15px; padding: 15px;
border-radius: 8px; border-radius: 8px;
font-family: Consolas, Monaco, 'Lucida Console', monospace; /* Apply terminal font */
} }
label { label {
margin-bottom: 8px; margin-bottom: 8px;
@ -224,16 +225,19 @@ select {
color: #fff; color: #fff;
border: 1px solid #555; border: 1px solid #555;
border-radius: 4px; border-radius: 4px;
font-family: Consolas, Monaco, 'Lucida Console', monospace; /* Apply terminal font */
} }
.terminal { .terminal {
background-color: #000; background-color: #000;
padding: 20px; padding: 20px;
border-radius: 8px; border-radius: 8px;
min-height: 180px; min-height: 180px;
font-family: 'Courier New', monospace; font-family: Consolas, Monaco, 'Lucida Console', monospace; /* Apply terminal font */
overflow-x: auto; overflow-x: auto;
margin-top: 20px; margin-top: 20px;
white-space: pre-wrap; white-space: pre-wrap;
line-height: 0.7; /* Ensure tight line height for the border */
font-size: 18px;
} }
.ps1-line { .ps1-line {
margin-bottom: 5px; margin-bottom: 5px;

Loading…
Cancel
Save