forked from nomic-ai/gpt4all
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
89 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
import QtCore | ||
import QtQuick | ||
import QtQuick.Controls.Basic | ||
import mysettings | ||
|
||
QtObject { | ||
property color textColor: "#d1d5db" | ||
property color textAccent: "#8e8ea0" | ||
property color mutedTextColor: backgroundLightest | ||
property color textErrorColor: "red" | ||
property color backgroundDarkest: "#1c1f21" | ||
property color backgroundDarker: "#1e2123" | ||
property color backgroundDark: "#222527" | ||
property color backgroundLight: "#343541" | ||
property color backgroundLighter: "#444654" | ||
property color backgroundLightest: "#7d7d8e" | ||
property color backgroundAccent: "#40414f" | ||
property color buttonBorder: "#565869" | ||
property color dialogBorder: "#d1d5db" | ||
property color userColor: "#ec86bf" | ||
property color textColor: MySettings.chatTheme == "Dark" ? "#d1d5db" : "#2e2e34" | ||
property color textAccent: MySettings.chatTheme == "Dark" ? "#8e8ea0" : "#71717f" | ||
property color mutedTextColor: MySettings.chatTheme == "Dark" ? backgroundLightest : "#AFAFB5" | ||
property color backgroundDarkest: MySettings.chatTheme == "Dark" ? "#1c1f21" : "#e3e3e5" | ||
property color backgroundDarker: MySettings.chatTheme == "Dark" ? "#1e2123" : "#e0dedc" | ||
property color backgroundDark: MySettings.chatTheme == "Dark" ? "#222527" : "#D2D1D5" | ||
property color backgroundLight: MySettings.chatTheme == "Dark" ? "#343541" : "#FFFFFF" | ||
property color backgroundLighter: MySettings.chatTheme == "Dark" ? "#444654" : "#F7F7F8" | ||
property color backgroundLightest: MySettings.chatTheme == "Dark" ? "#7d7d8e" : "#82827a" | ||
property color backgroundAccent: MySettings.chatTheme == "Dark" ? "#40414f" : "#E3E3E6" | ||
property color buttonBorder: MySettings.chatTheme == "Dark" ? "#565869" : "#a9a9b0" | ||
property color dialogBorder: MySettings.chatTheme == "Dark" ? "#d1d5db" : "#2e2e34" | ||
property color userColor: MySettings.chatTheme == "Dark" ? "#ec86bf" : "#137382" | ||
property color linkColor: MySettings.chatTheme == "Dark" ? "#55aaff" : "#aa5500" | ||
property color tabBorder: MySettings.chatTheme == "Dark" ? backgroundLight : backgroundDark | ||
property color assistantColor: "#10a37f" | ||
property color linkColor: "#55aaff" | ||
property color tabBorder: backgroundLight | ||
property color textErrorColor: "red" | ||
property real fontSizeLarge: Qt.application.font.pixelSize | ||
property real fontSizeLarger: Qt.application.font.pixelSize + 2 | ||
} | ||
|