The first working Theme Settings
This commit is contained in:
parent
1718c9cf69
commit
f5b1e80c6d
16 changed files with 517 additions and 250 deletions
|
@ -36,8 +36,8 @@
|
|||
|
||||
/* Popup content box */
|
||||
.popup-content {
|
||||
background: var(--background-color);
|
||||
color: var(--text-color);
|
||||
background: var(--popup-background-color); /* Use variable for background color */
|
||||
color: var(--popup-text-color); /* Use variable for text color */
|
||||
padding: 30px;
|
||||
border-radius: 10px;
|
||||
width: 300px;
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
/* Close button */
|
||||
.close-popup {
|
||||
background: red; /* Exception to the rule */
|
||||
background: var(--close-button-color); /* Use variable for close button color */
|
||||
color: var(--text-color);
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
|
@ -73,7 +73,7 @@
|
|||
}
|
||||
|
||||
.log-into-account {
|
||||
background: green; /* Exception to the rule */
|
||||
background: var(--login-button-color); /* Use variable for login button color */
|
||||
color: var(--text-color);
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
|
@ -111,6 +111,6 @@
|
|||
}
|
||||
|
||||
.popup-content p {
|
||||
color: var(--pop-up-text);
|
||||
color: var(--popup-text-color); /* Use variable for paragraph text color */
|
||||
margin: 10px;
|
||||
}
|
||||
|
|
|
@ -12,18 +12,27 @@
|
|||
z-index: 10000;
|
||||
}
|
||||
|
||||
.settings-container{
|
||||
.settings-main h2 {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.settings-main p {
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
|
||||
/* Main container for the settings */
|
||||
.settings-container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 3fr; /* 1fr for sidebar, 3fr for main content */
|
||||
grid-auto-flow: column;
|
||||
overflow-x:hidden;
|
||||
overflow-x: hidden;
|
||||
height: 100%; /* Ensure it takes full height */
|
||||
}
|
||||
|
||||
/* Settings content */
|
||||
.settings-content {
|
||||
background: #f5f5f5;
|
||||
color: #333;
|
||||
background: var(--history-background-color);
|
||||
color: var(--text-color);
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
width: 90%;
|
||||
|
@ -31,13 +40,15 @@
|
|||
height: 90%;
|
||||
max-height: 600px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
overflow: scroll; /* Prevents overflow of the content */
|
||||
overflow: hidden; /* Prevents overflow of the content */
|
||||
position: relative; /* Needed for absolute positioning of close button */
|
||||
display: flex;
|
||||
flex-direction: column; /* Flexbox for vertical stacking */
|
||||
}
|
||||
|
||||
/* Sidebar styles */
|
||||
.sidebar {
|
||||
background: #e0e0e0;
|
||||
background: var(--settings-background-color);
|
||||
padding: 20px;
|
||||
border-radius: 10px 0 0 10px; /* Rounded corners on the left side */
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
|
@ -45,15 +56,17 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
grid-column: 1; /* Places sidebar in the first grid column */
|
||||
height: 100%; /* Ensures sidebar takes full height */
|
||||
}
|
||||
|
||||
/* Sidebar item styles */
|
||||
.sidebar ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0; /* Ensure no margin for the list */
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column; /* Make the ul a column */
|
||||
flex-grow: 1; /* Allows the list to take available space */
|
||||
}
|
||||
|
||||
.sidebar li {
|
||||
|
@ -65,11 +78,11 @@
|
|||
}
|
||||
|
||||
.sidebar li:hover {
|
||||
background: #d0d0d0; /* Highlight on hover */
|
||||
background: var(--input-button-hover-color); /* Highlight on hover */
|
||||
}
|
||||
|
||||
.sidebar li.active {
|
||||
background: #b0b0b0; /* Active section highlight */
|
||||
background: var(--button-hover-background-color); /* Active section highlight */
|
||||
}
|
||||
|
||||
/* Main settings area */
|
||||
|
@ -78,14 +91,14 @@
|
|||
padding: 20px;
|
||||
border-radius: 0 10px 10px 0; /* Rounded corners on the right side */
|
||||
overflow-y: auto; /* Scroll if content exceeds height */
|
||||
display: flex; /* Ensure main settings area displays content correctly */
|
||||
display: flex;
|
||||
flex-direction: column; /* Stack content vertically */
|
||||
}
|
||||
|
||||
/* Close button positioning */
|
||||
.close-popup {
|
||||
background-color: #ff4d4d;
|
||||
color: #fff;
|
||||
background-color: var(--close-button-color);
|
||||
color: var(--user-message-text-color);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
padding: 10px 20px;
|
||||
border: none;
|
||||
|
@ -98,21 +111,39 @@
|
|||
}
|
||||
|
||||
.close-popup:hover {
|
||||
background-color: #e63939; /* Darker red on hover */
|
||||
background-color: var(--close-button-hover-color); /* Darker red on hover */
|
||||
}
|
||||
|
||||
/* Additional styles for inputs and options */
|
||||
.settings-option {
|
||||
margin-bottom: 20px; /* Adds space between each setting option */
|
||||
padding-bottom: 10px; /* Adds internal spacing */
|
||||
border-bottom: 1px solid var(--input-border-color); /* Optional, creates a separator between options */
|
||||
}
|
||||
|
||||
.settings-option:last-child {
|
||||
margin-bottom: 0; /* Removes bottom margin from last option */
|
||||
border-bottom: none; /* Removes separator from last option */
|
||||
}
|
||||
|
||||
.settings-option input[type="text"],
|
||||
.settings-option input[type="email"],
|
||||
.settings-option input[type="password"],
|
||||
.settings-option input[type="color"],
|
||||
.settings-option input[type="range"],
|
||||
.settings-option select {
|
||||
border-color: #ccc;
|
||||
color: #333;
|
||||
border-color: var(--input-border-color);
|
||||
color: var(--text-color);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
width: 100%;
|
||||
margin-bottom: 10px; /* Add spacing between inputs */
|
||||
margin-bottom: 10px; /* Adds spacing between inputs */
|
||||
}
|
||||
|
||||
/* Optional additional spacing for labels */
|
||||
.settings-option label {
|
||||
margin-bottom: 5px;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
.left-panel {
|
||||
width: 25vw; /* Adjust as needed */
|
||||
transition: width 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Smooth transitions for all properties */
|
||||
background-color: var(--left-panel-background-color); /* Use variable for background color */
|
||||
border-radius: 0 1em 0 0;
|
||||
}
|
||||
|
||||
.left-panel.hidden {
|
||||
|
@ -23,6 +25,8 @@
|
|||
.conversation-container {
|
||||
flex: 1;
|
||||
transition: margin-left 0.3s ease; /* Smooth margin adjustment */
|
||||
background-color: var(--conversation-background-color); /* Use variable for background color */
|
||||
border-radius: 1em 0 0 0;
|
||||
}
|
||||
|
||||
/* Adjust margin-left when panel is shown or hidden */
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
max-width: 900px;
|
||||
height: 80vh;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
background: var(--doc-background-color); /* Use variable for background */
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||
|
@ -18,29 +18,27 @@
|
|||
|
||||
.title {
|
||||
font-size: 2rem;
|
||||
color: #333;
|
||||
color: var(--doc-title-color); /* Use variable for title color */
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.5rem;
|
||||
color: #555;
|
||||
color: var(--doc-subtitle-color); /* Use variable for subtitle color */
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.subsection-title {
|
||||
font-size: 1.25rem;
|
||||
color: #666;
|
||||
color: var(--doc-subsection-title-color); /* Use variable for subsection title color */
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.paragraph {
|
||||
font-size: 1rem;
|
||||
color: #333;
|
||||
color: var(--doc-paragraph-color); /* Use variable for paragraph color */
|
||||
margin-bottom: 1.5rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
max-width: 800px;
|
||||
width: 90%;
|
||||
padding: 20px;
|
||||
background-color: #222;
|
||||
background-color: var(--faq-background-color); /* Use variable for background */
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
||||
overflow-y: scroll; /* Allow vertical scrolling if content overflows */
|
||||
|
@ -21,7 +21,7 @@
|
|||
|
||||
#faq h2 {
|
||||
text-align: center;
|
||||
color: #00ccff;
|
||||
color: var(--faq-heading-color); /* Use variable for heading color */
|
||||
font-size: 2em;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
@ -30,22 +30,22 @@
|
|||
margin-bottom: 20px;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #333;
|
||||
background-color: var(--faq-item-background-color); /* Use variable for item background */
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
.faq-item h3 {
|
||||
color: #00ccff;
|
||||
color: var(--faq-item-heading-color); /* Use variable for item heading color */
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.faq-item p {
|
||||
color: #ddd;
|
||||
color: var(--faq-item-text-color); /* Use variable for item text color */
|
||||
font-size: 1.1em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.faq-item:hover {
|
||||
background-color: #444;
|
||||
background-color: var(--faq-item-hover-background-color); /* Use variable for hover background */
|
||||
}
|
||||
|
|
|
@ -14,5 +14,34 @@ body {
|
|||
background-color: var(--background-color);
|
||||
color: var(--text-color);
|
||||
font-family: var(--font-family);
|
||||
font-size: var(--font-size);
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
|
||||
header {
|
||||
background-color: var(--header-background-color);
|
||||
color: var(--header-text-color);
|
||||
padding: 1rem; /* Adjust padding as needed */
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: var(--button-background-color);
|
||||
color: var(--text-color);
|
||||
border: 1px solid var(--input-border-color);
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: var(--button-hover-background-color);
|
||||
}
|
||||
|
||||
input {
|
||||
background-color: var(--input-background-color);
|
||||
border: 1px solid var(--input-border-color);
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
input:hover {
|
||||
border-color: var(--button-hover-background-color);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
header {
|
||||
background-color: var(--background-color);
|
||||
color: black;
|
||||
background-color: var(--header-background-color); /* Use the new header background color */
|
||||
color: var(--header-text-color); /* Use the new header text color */
|
||||
width: 100%;
|
||||
text-decoration: none;
|
||||
position: fixed;
|
||||
|
@ -24,7 +24,7 @@ header img {
|
|||
|
||||
header a,
|
||||
header li button {
|
||||
color: black;
|
||||
color: var(--header-text-color); /* Use the new header text color */
|
||||
text-decoration: none;
|
||||
transition: color 0.3s;
|
||||
border: none;
|
||||
|
@ -34,5 +34,5 @@ header li button {
|
|||
|
||||
header a:hover,
|
||||
header li button:hover {
|
||||
color: var(--input-button-color);
|
||||
color: var(--input-button-color); /* Keep the hover color */
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
.history ul li a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
color: var(--text-color); /* Use variable for link text color */
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
}
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
border: 2px solid var(--input-button-color);
|
||||
outline: none;
|
||||
margin-right: 10px;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
color: #333;
|
||||
background-color: var(--input-background-color); /* Use variable for background */
|
||||
color: var(--text-color); /* Use variable for text color */
|
||||
transition: border-color 0.3s ease-in-out;
|
||||
height: 7vh;
|
||||
}
|
||||
|
@ -36,7 +36,7 @@
|
|||
padding: 1em;
|
||||
margin: 5px;
|
||||
background-color: var(--input-button-color);
|
||||
color: white;
|
||||
color: var(--user-message-text-color); /* Use variable for button text color */
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
font-size: 1.5em;
|
||||
|
|
|
@ -1,21 +1,20 @@
|
|||
.model-background {
|
||||
grid-column: 1/2;
|
||||
grid-row: 2/5;
|
||||
grid-column: 1 / 2;
|
||||
grid-row: 2 / 5;
|
||||
overflow-y: auto;
|
||||
background-color: var(--models-background-color);
|
||||
background-color: var(--models-background-color); /* Ensure this variable is defined */
|
||||
border-radius: 2em;
|
||||
padding: 1em;
|
||||
margin-left: 1em;
|
||||
height: 40vh;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.models {
|
||||
grid-column: 1/2;
|
||||
grid-row: 2/5;
|
||||
grid-column: 1 / 2;
|
||||
grid-row: 2 / 5;
|
||||
overflow-y: auto;
|
||||
background-color: var(--models-background-color);
|
||||
background-color: var(--models-background-color); /* Ensure this variable is defined */
|
||||
border-radius: 2em;
|
||||
padding: 1em;
|
||||
height: 100%;
|
||||
|
@ -55,7 +54,7 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #fff;
|
||||
color: var(--text-color); /* Use variable for text color */
|
||||
border-radius: 5%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
@ -70,7 +69,7 @@
|
|||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
color: var(--text-color); /* Use variable for overlay text color */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
@ -103,7 +102,7 @@
|
|||
|
||||
.math-model {
|
||||
background-image: url(/img/math.jpg);
|
||||
background-color: white;
|
||||
background-color: var(--background-color); /* Use variable for background color */
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
|
@ -111,7 +110,7 @@
|
|||
|
||||
.language-model {
|
||||
background-image: url(/img/language.jpg);
|
||||
background-color: #72cce4;
|
||||
background-color: #72cce4; /* Use variable for background color */
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
|
|
|
@ -11,8 +11,7 @@
|
|||
justify-content: flex-start;
|
||||
font-size: 1em;
|
||||
overflow-y: auto;
|
||||
margin-bottom: 0;
|
||||
width: 100% -2em;
|
||||
width: calc(100% - 2em); /* Corrected calculation for width */
|
||||
height: 70vh;
|
||||
margin-bottom: 1vh;
|
||||
}
|
||||
|
@ -59,10 +58,8 @@
|
|||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
background-color: var(--button-background-color);
|
||||
border-radius: 50%;
|
||||
padding: 10px;
|
||||
padding-top: 0;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Responsive behavior - applies only on smaller screens */
|
||||
@media (max-width: 1200px) {
|
||||
*{
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -28,7 +28,7 @@
|
|||
padding: 0;
|
||||
}
|
||||
|
||||
header li{
|
||||
header li {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
@ -47,46 +47,46 @@
|
|||
}
|
||||
|
||||
/* Left panel styles */
|
||||
.left-panel {
|
||||
.left-panel {
|
||||
display: none; /* Initially hidden */
|
||||
min-width: 90%; /* Takes full width when visible */
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.left-panel.visible {
|
||||
.left-panel.visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Conversation container styles */
|
||||
.conversation-container {
|
||||
.conversation-container {
|
||||
width: 90%;
|
||||
height: 90%;
|
||||
}
|
||||
|
||||
.conversation-container.collapsed {
|
||||
.conversation-container.collapsed {
|
||||
width: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.conversation-container.expanded {
|
||||
.conversation-container.expanded {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Grid styles */
|
||||
.grid {
|
||||
.grid {
|
||||
grid-template-columns: 1fr; /* One item per line */
|
||||
}
|
||||
|
||||
/* Model box styles */
|
||||
.model-box {
|
||||
.model-box {
|
||||
max-width: none; /* Remove max-width */
|
||||
margin: 0 auto; /* Center each model-box */
|
||||
}
|
||||
|
||||
/* Input styles */
|
||||
.input {
|
||||
.input {
|
||||
grid-column: 1 / -1;
|
||||
gap: 10px;
|
||||
padding: 0.5em;
|
||||
|
@ -95,32 +95,35 @@
|
|||
width: 90%;
|
||||
}
|
||||
|
||||
.input input {
|
||||
.input input {
|
||||
font-size: 1em; /* Adjust font size */
|
||||
max-width: 65%;
|
||||
margin-right: 0;
|
||||
border-color: var(--input-border-color); /* Use variable for input border */
|
||||
color: var(--text-color); /* Use variable for text color */
|
||||
}
|
||||
|
||||
.input button {
|
||||
.input button {
|
||||
height: 40px; /* Adjust button height */
|
||||
width: 40px; /* Adjust button width */
|
||||
font-size: 1.2em; /* Adjust button font size */
|
||||
margin: auto;
|
||||
background-color: var(--input-button-color); /* Use variable for button color */
|
||||
color: var(--user-message-text-color); /* Use variable for button text color */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Responsive adjustments for the settings*/
|
||||
/* Responsive adjustments for the settings */
|
||||
@media (max-width: 768px) {
|
||||
.settings-content {
|
||||
flex-direction: column; /* Stack sidebar and main content on smaller screens */
|
||||
flex-direction: column; /* Stack sidebar and main content on smaller screens */
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: 100%; /* Full width for sidebar */
|
||||
width: 100%; /* Full width for sidebar */
|
||||
}
|
||||
|
||||
.settings-main {
|
||||
width: 100%; /* Full width for main content */
|
||||
width: 100%; /* Full width for main content */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
}
|
||||
|
||||
.scrollbar::-webkit-scrollbar-thumb {
|
||||
background-color: #ccc;
|
||||
background-color: var(--input-border-color); /* Use variable for thumb color */
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.scrollbar::-webkit-scrollbar-track {
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
background-color: var(--history-background-color); /* Use variable for track color */
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
}
|
||||
|
||||
.user-message {
|
||||
background-color: var(--user-message-color);
|
||||
background-color: var(--user-message-background-color);
|
||||
color: var(--text-color);
|
||||
border-bottom-right-radius: 0;
|
||||
margin-left: auto;
|
||||
|
@ -19,9 +19,9 @@
|
|||
}
|
||||
|
||||
.ai-message {
|
||||
background-color: var(--ai-message-color);
|
||||
background-color: var(--ai-message-background-color);
|
||||
color: var(--text-color);
|
||||
border-bottom-left-radius: 0;
|
||||
margin-right: auto;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,34 @@
|
|||
:root {
|
||||
--background-color: white;
|
||||
--text-color: white;
|
||||
--font-family: Arial, sans-serif;
|
||||
--history-background-color: rgb(0, 0, 48);
|
||||
--models-background-color: rgb(0, 0, 48);
|
||||
--output-background-color: black;
|
||||
--user-message-color: rgb(0, 128, 255);
|
||||
--ai-message-color: rgb(100, 100, 255);
|
||||
--input-background-color: rgb(0, 0, 48);
|
||||
--input-button-color: rgb(0, 128, 255);
|
||||
--input-button-hover-color: rgb(0, 100, 200);
|
||||
--scrollbar-track: rgb(91, 172, 253);
|
||||
--scrollbar-thumb: rgb(0, 88, 176);
|
||||
--pop-up-text: darkgrey;
|
||||
/* Colors */
|
||||
--header-background-color: #7e7e7e; /* New header background color */
|
||||
--header-text-color: #ffffff; /* Header text color */
|
||||
--background-color: #8B9635; /* Main background color */
|
||||
--text-color: #474D22; /* Main text color */
|
||||
--input-background-color: #ffffff; /* Background color for input fields */
|
||||
--input-button-color: #8B9635; /* Button color */
|
||||
--input-button-hover-color: #6b7c2b; /* Hover color for input buttons */
|
||||
--user-message-background-color: #8B9635; /* Background color for user messages */
|
||||
--user-message-text-color: #000; /* Text color for user messages */
|
||||
--ai-message-background-color: #FCFCEB; /* Background color for AI messages */
|
||||
--ai-message-text-color: #000; /* Text color for AI messages */
|
||||
--button-background-color: #8B9635; /* Button background color */
|
||||
--button-hover-background-color: #6b7c2b; /* Button hover color */
|
||||
--models-background-color: #ffffff; /* Background for models section */
|
||||
--history-background-color: #f9f9f9; /* Background color for history */
|
||||
--left-panel-background-color: #79832e; /* Background color for left panel */
|
||||
--conversation-background-color: #79832e; /* Background color for conversation container */
|
||||
--doc-background-color: #ffffff; /* Background color for documents */
|
||||
|
||||
/* FAQ Colors */
|
||||
--faq-background-color: #474D22; /* Background color for FAQ section */
|
||||
--faq-heading-color: #8B9635; /* Heading color for FAQ section */
|
||||
--faq-item-background-color: #fefefe; /* Background color for FAQ items */
|
||||
--faq-item-heading-color: #474D22; /* Heading color for FAQ items */
|
||||
--faq-item-text-color: #333; /* Text color for FAQ items */
|
||||
--faq-item-hover-background-color: #e0e0e0; /* Hover background color for FAQ items */
|
||||
|
||||
--pop-up-text: #000; /* Text color for pop-ups */
|
||||
--input-border-color: #8B9635; /* Input border color */
|
||||
--font-family: 'Poppins', 'sans-serif';/* Default font family */
|
||||
--font-size: 16px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue