├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── desktop │ ├── frappe.webp │ ├── latte.webp │ ├── macchiato.webp │ └── mocha.webp ├── mobile │ ├── frappe.webp │ ├── latte.webp │ ├── macchiato.webp │ └── mocha.webp └── res.webp ├── build ├── colors │ └── colors.go └── template.go.tpl ├── go.mod ├── main.go └── src ├── frappe ├── android ├── desktop ├── ios └── macos ├── latte ├── android ├── desktop ├── ios └── macos ├── macchiato ├── android ├── desktop ├── ios └── macos └── mocha ├── android ├── desktop ├── ios └── macos /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Catppuccin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
15 |
16 |
Copyright © 2021-present Catppuccin Org 89 |
90 | -------------------------------------------------------------------------------- /assets/desktop/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/desktop/frappe.webp -------------------------------------------------------------------------------- /assets/desktop/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/desktop/latte.webp -------------------------------------------------------------------------------- /assets/desktop/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/desktop/macchiato.webp -------------------------------------------------------------------------------- /assets/desktop/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/desktop/mocha.webp -------------------------------------------------------------------------------- /assets/mobile/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/mobile/frappe.webp -------------------------------------------------------------------------------- /assets/mobile/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/mobile/latte.webp -------------------------------------------------------------------------------- /assets/mobile/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/mobile/macchiato.webp -------------------------------------------------------------------------------- /assets/mobile/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/mobile/mocha.webp -------------------------------------------------------------------------------- /assets/res.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/telegram/d3392dcd87b3f514663d5f9a8090ad11ba99c10e/assets/res.webp -------------------------------------------------------------------------------- /build/colors/colors.go: -------------------------------------------------------------------------------- 1 | package colors 2 | 3 | import ( 4 | "os" 5 | "path" 6 | "text/template" 7 | ) 8 | 9 | type Color struct { 10 | Name string 11 | Shortname string 12 | Dark bool 13 | Wallpaper string 14 | Accent string 15 | Rosewater string 16 | Flamingo string 17 | Pink string 18 | Mauve string 19 | Red string 20 | Maroon string 21 | Peach string 22 | Yellow string 23 | Green string 24 | Teal string 25 | Sky string 26 | Sapphire string 27 | Blue string 28 | Lavender string 29 | Text string 30 | Subtext0 string 31 | Subtext1 string 32 | Overlay2 string 33 | Overlay1 string 34 | Overlay0 string 35 | Surface2 string 36 | Surface1 string 37 | Surface0 string 38 | Base string 39 | Mantle string 40 | Crust string 41 | } 42 | 43 | func MochaColor(flag string, accent string) { 44 | c := Color{ 45 | Name: "Catppuccin Mocha", 46 | Shortname: "mocha", 47 | Dark: true, 48 | Wallpaper: "t.me/bg/iZumGdCBBVEBAAAAkZ7Gl0zmXZk", 49 | Accent: accent, 50 | Rosewater: "#f5e0dc", 51 | Flamingo: "#f2cdcd", 52 | Pink: "#f5c2e7", 53 | Mauve: "#cba6f7", 54 | Red: "#f38ba8", 55 | Maroon: "#eba0ac", 56 | Yellow: "#f9e2af", 57 | Peach: "#fab387", 58 | Green: "#a6e3a1", 59 | Teal: "#94e2d5", 60 | Sky: "#89dceb", 61 | Sapphire: "#74c7e6", 62 | Blue: "#89b4fa", 63 | Lavender: "#b4befe", 64 | Text: "#cdd6f4", 65 | Subtext1: "#bac2de", 66 | Subtext0: "#a6adc8", 67 | Overlay2: "#9399b2", 68 | Overlay1: "#7f4849c", 69 | Overlay0: "#6c7086", 70 | Surface2: "#585b70", 71 | Surface1: "#45475a", 72 | Surface0: "#313244", 73 | Base: "#1e1e2e", 74 | Mantle: "#181825", 75 | Crust: "#11111b", 76 | } 77 | initTemplate(c, flag) 78 | } 79 | 80 | func MacchiatoColor(flag string, accent string) { 81 | c := Color{ 82 | Name: "Catpppuccin Macchiato", 83 | Shortname: "macchiato", 84 | Dark: true, 85 | Wallpaper: "t.me/bg/wrjDzHXw_VADAAAAYTt1ohXDJN4", 86 | Accent: accent, 87 | Rosewater: "#f5e0dc", 88 | Flamingo: "#f0c6c6", 89 | Pink: "#f5c2e7", 90 | Mauve: "#c6a0f6", 91 | Red: "#ed8796", 92 | Maroon: "#ee99a0", 93 | Peach: "#f5a97f", 94 | Yellow: "#eed49f", 95 | Green: "#a6da95", 96 | Teal: "#8bd5ca", 97 | Sky: "#91d7e3", 98 | Sapphire: "#7dc4e4", 99 | Blue: "#8aadf4", 100 | Lavender: "#b7bdf8", 101 | Text: "#cad3f5", 102 | Subtext1: "#b8c0e0", 103 | Subtext0: "#a5adcb", 104 | Overlay2: "#939ab7", 105 | Overlay1: "#8087a2", 106 | Overlay0: "#6e738d", 107 | Surface2: "#5b6078", 108 | Surface1: "#494d64", 109 | Surface0: "#363a4f", 110 | Base: "#24273a", 111 | Mantle: "#1e2030", 112 | Crust: "#181926", 113 | } 114 | initTemplate(c, flag) 115 | } 116 | 117 | func FrappeColor(flag string, accent string) { 118 | c := Color{ 119 | Name: "Catppuccin Frappe", 120 | Shortname: "frappe", 121 | Dark: true, 122 | Wallpaper: "t.me/bg/psvRMp-j_VACAAAA6D6zUK3aWhs", 123 | Accent: accent, 124 | Rosewater: "#f2d5cf", 125 | Flamingo: "#eebebe", 126 | Pink: "#f4b8e4", 127 | Mauve: "#ca9ee6", 128 | Red: "#e78284", 129 | Maroon: "#ea999c", 130 | Peach: "#ef9f76", 131 | Yellow: "#e5c890", 132 | Green: "#a6d189", 133 | Teal: "#81c8be", 134 | Sky: "#99d1db", 135 | Sapphire: "#85c1dc", 136 | Blue: "#8caaee", 137 | Lavender: "#babbf1", 138 | Text: "#c6d0f5", 139 | Subtext1: "#b5bfe2", 140 | Subtext0: "#a5adce", 141 | Overlay2: "#949cbb", 142 | Overlay1: "#838ba7", 143 | Overlay0: "#737994", 144 | Surface2: "#626880", 145 | Surface1: "#51576d", 146 | Surface0: "#414559", 147 | Base: "#303446", 148 | Mantle: "#292c3c", 149 | Crust: "#232634", 150 | } 151 | initTemplate(c, flag) 152 | } 153 | 154 | func LatteColor(flag string, accent string) { 155 | c := Color{ 156 | Name: "Catppuccin Latte", 157 | Shortname: "latte", 158 | Dark: false, 159 | Wallpaper: "t.me/bg/StNc4pYj_FABAAAAOsWwdh_6J6I", 160 | Accent: accent, 161 | Rosewater: "#dc8a78", 162 | Flamingo: "#dd7878", 163 | Pink: "#ea76cb", 164 | Mauve: "#8839ef", 165 | Red: "#d20f39", 166 | Maroon: "#e64553", 167 | Peach: "#fe640b", 168 | Yellow: "#df8e1d", 169 | Green: "#40a02b", 170 | Teal: "#179299", 171 | Sky: "#04a5e5", 172 | Sapphire: "#209fb5", 173 | Blue: "#1e66f5", 174 | Lavender: "#7287fd", 175 | Text: "#4c4f69", 176 | Subtext1: "#5c5f77", 177 | Subtext0: "#6c6f85", 178 | Overlay2: "#7c7f93", 179 | Overlay1: "#8c8fa1", 180 | Overlay0: "#9ca0b0", 181 | Surface2: "#acb0be", 182 | Surface1: "#bcc0cc", 183 | Surface0: "#ccd0da", 184 | Base: "#eff1f5", 185 | Mantle: "#e6e9ef", 186 | Crust: "#dce0e8", 187 | } 188 | initTemplate(c, flag) 189 | } 190 | func initTemplate(colorStruct Color, flag string) { 191 | 192 | currentDir, _ := os.Getwd() 193 | templatePath := path.Join(currentDir, "build") 194 | fileTemp, err := os.OpenFile(path.Join(templatePath, "template.go.tpl"), os.O_RDONLY, 0o644) 195 | if err != nil { 196 | panic(err) 197 | } 198 | tmpl, _ := template.ParseFiles(fileTemp.Name()) 199 | themeFile := "desktop" 200 | themeLoc := path.Join(currentDir, "src", flag, themeFile) 201 | f, _ := os.Create(themeLoc) 202 | 203 | template := colorStruct 204 | err = tmpl.Execute(f, template) 205 | if err != nil { 206 | panic(err) 207 | } 208 | f.Close() 209 | } 210 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/catppuccin/telegram 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "flag" 5 | "fmt" 6 | 7 | "github.com/catppuccin/telegram/build/colors" 8 | ) 9 | 10 | func main() { 11 | var colorFlag string 12 | flag.StringVar(&colorFlag, "color", "mocha", "some value") 13 | var accentFlag string 14 | flag.StringVar(&accentFlag, "accent", "ctpGreen", "some value") 15 | flag.Parse() 16 | if colorFlag == "mocha" { 17 | colors.MochaColor(colorFlag, accentFlag) 18 | } else if colorFlag == "macchiato" { 19 | colors.MacchiatoColor(colorFlag, accentFlag) 20 | } else if colorFlag == "frappe" { 21 | colors.FrappeColor(colorFlag, accentFlag) 22 | } else if colorFlag == "latte" { 23 | colors.LatteColor(colorFlag, accentFlag) 24 | } else { 25 | fmt.Println("You've entered the wrong color.") 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/frappe/android: -------------------------------------------------------------------------------- 1 | name: Catppuccin Frappe 2 | shortname: ctp_frappe 3 | dark: true 4 | actionBarActionModeDefault: #303446 5 | actionBarActionModeDefaultIcon: #737994 6 | actionBarActionModeDefaultSelector: #51576d 7 | actionBarActionModeDefaultTop: #00000010 8 | actionBarBrowser: #303446 9 | actionBarDefault: #232634 10 | actionBarDefaultArchived: #232634 11 | actionBarDefaultArchivedIcon: #a5adce 12 | actionBarDefaultArchivedSearch: #a5adce 13 | actionBarDefaultArchivedSelector: #949cbb 14 | actionBarDefaultArchivedTitle: #c6d0f5 15 | actionBarDefaultIcon: #a5adce 16 | actionBarDefaultSearch: #a5adce 17 | actionBarDefaultSearchArchivedPlaceholder: #23263488 18 | actionBarDefaultSearchPlaceholder: #23263488 19 | actionBarDefaultSelector: #949cbb 20 | actionBarDefaultSubmenuBackground: #303446 21 | actionBarDefaultSubmenuItem: #c6d0f5 22 | actionBarDefaultSubmenuItemIcon: #a5adce 23 | actionBarDefaultSubtitle: #838ba7 24 | actionBarDefaultTitle: #c6d0f5 25 | actionBarTabActiveText: #c6d0f5 26 | actionBarTabLine: #c6d0f5 27 | actionBarTabSelector: #51576d 28 | actionBarTabUnactiveText: #838ba7 29 | actionBarWhiteSelector: #949cbb 30 | avatar_actionBarIconBlue: #a5adce 31 | avatar_actionBarSelectorBlue: #949cbb 32 | avatar_backgroundActionBarBlue: #232634 33 | avatar_backgroundArchived: #838ba7 34 | avatar_backgroundArchivedHidden: #838ba7 35 | avatar_backgroundBlue: #8caaee 36 | avatar_backgroundCyan: #81c8be 37 | avatar_backgroundGreen: #a6d189 38 | avatar_backgroundGroupCreateSpanBlue: #f2d5cf 39 | avatar_backgroundInProfileBlue: #dc2286 40 | avatar_backgroundOrange: #ef9f76 41 | avatar_backgroundPink: #f4b8e4 42 | avatar_backgroundRed: #e78284 43 | avatar_backgroundSaved: #ca9ee6 44 | avatar_backgroundViolet: #ca9ee6 45 | avatar_nameInMessageBlue: #8caaee 46 | avatar_nameInMessageCyan: #81c8be 47 | avatar_nameInMessageGreen: #a6d189 48 | avatar_nameInMessageOrange: #ef9f76 49 | avatar_nameInMessagePink: #f4b8e4 50 | avatar_nameInMessageRed: #e78284 51 | avatar_nameInMessageViolet: #ca9ee6 52 | avatar_subtitleInProfileBlue: #838ba7 53 | avatar_text: #303446 54 | calls_callReceivedGreenIcon: #a6d189 55 | calls_callReceivedRedIcon: #e78284 56 | changephoneinfo_image2: #8caaee 57 | changephoneinfo_image: #c6d0f5 58 | chat_addContact: #ca9ee6 59 | chat_adminSelectedText: #c6d0f5 60 | chat_adminText: #c6d0f5 61 | chat_attachActiveTab: #8caaee 62 | chat_attachAudioBackground: #e78284 63 | chat_attachAudioIcon: #303446 64 | chat_attachCheckBoxBackground: #8caaee 65 | chat_attachCheckBoxCheck: #303446 66 | chat_attachContactBackground: #e5c890 67 | chat_attachContactIcon: #303446 68 | chat_attachEmptyImage: #737994 69 | chat_attachFileBackground: #81c8be 70 | chat_attachFileIcon: #303446 71 | chat_attachGalleryBackground: #8caaee 72 | chat_attachGalleryIcon: #303446 73 | chat_attachLocationBackground: #a6d189 74 | chat_attachLocationIcon: #303446 75 | chat_attachMediaBanBackground: #949cbb 76 | chat_attachMediaBanText: #303446 77 | chat_attachPermissionImage: #303446 78 | chat_attachPermissionMark: #e78284 79 | chat_attachPermissionText: #a5adce 80 | chat_attachPhotoBackground: #00000008 81 | chat_attachPollBackground: #e5c890 82 | chat_attachPollIcon: #303446 83 | chat_attachUnactiveTab: #a5adce 84 | chat_botButtonText: #303446 85 | chat_botKeyboardButtonBackground: #ca9ee6 86 | chat_botKeyboardButtonBackgroundPressed: #f4b8e4 87 | chat_botKeyboardButtonText: #303446 88 | chat_botProgress: #303446 89 | chat_botSwitchToInlineText: #f2d5cf 90 | chat_emojiBottomPanelIcon: #949cbb 91 | chat_emojiPanelBackground: #232634 92 | chat_emojiPanelBackspace: #949cbb 93 | chat_emojiPanelBadgeBackground: #8caaee 94 | chat_emojiPanelBadgeText: #303446 95 | chat_emojiPanelEmptyText: #949cbb 96 | chat_emojiPanelIcon: #949cbb 97 | chat_emojiPanelIconSelected: #8caaee 98 | chat_emojiPanelMasksIcon: #303446 99 | chat_emojiPanelMasksIconSelected: #8caaee 100 | chat_emojiPanelNewTrending: #8caaee 101 | chat_emojiPanelShadowLine: #00000012 102 | chat_emojiPanelStickerPackSelector: #626880 103 | chat_emojiPanelStickerPackSelectorLine: #626880 104 | chat_emojiPanelStickerSetName: #a5adce 105 | chat_emojiPanelStickerSetNameHighlight: #a5adce 106 | chat_emojiPanelStickerSetNameIcon: #a5adce 107 | chat_emojiPanelTrendingDescription: #a5adce 108 | chat_emojiPanelTrendingTitle: #c6d0f5 109 | chat_emojiSearchBackground: #414559 110 | chat_emojiSearchIcon: #a5adce 111 | chat_fieldOverlayText: #a5adce 112 | chat_gifSaveHintBackground: #000000CC 113 | chat_gifSaveHintText: #303446 114 | chat_goDownButton: #303446 115 | chat_goDownButtonCounter: #303446 116 | chat_goDownButtonCounterBackground: #a6d189 117 | chat_goDownButtonIcon: #a5adce 118 | chat_goDownButtonShadow: #000000 119 | chat_inAudioCacheSeekbar: #3034463F 120 | chat_inAudioDurationSelectedText: #c6d0f5 121 | chat_inAudioDurationText: #a5adce 122 | chat_inAudioPerfomerSelectedText: #c6d0f5 123 | chat_inAudioPerfomerText: #c6d0f5 124 | chat_inAudioProgress: #8caaee 125 | chat_inAudioSeekbar: #737994 126 | chat_inAudioSeekbarFill: #f2d5cf 127 | chat_inAudioSeekbarSelected: #737994 128 | chat_inAudioSelectedProgress: #f2d5cf 129 | chat_inAudioTitleText: #8caaee 130 | chat_inBubble: #303446 131 | chat_inBubbleSelected: #414559 132 | chat_inBubbleShadow: #00000000 133 | chat_inContactBackground: #a6d189 134 | chat_inContactIcon: #303446 135 | chat_inContactNameText: #a6d189 136 | chat_inContactPhoneSelectedText: #c6d0f5 137 | chat_inContactPhoneText: #a5adce 138 | chat_inDownCall: #a6d189 139 | chat_inFileBackground: #81c8be 140 | chat_inFileBackgroundSelected: #81c8be 141 | chat_inFileIcon: #303446 142 | chat_inFileInfoSelectedText: #c6d0f5 143 | chat_inFileInfoText: #a5adce 144 | chat_inFileNameText: #f2d5cf 145 | chat_inFileProgress: #a5adce 146 | chat_inFileProgressSelected: #a5adce 147 | chat_inFileSelectedIcon: #303446 148 | chat_inForwardedNameText: #ca9ee6 149 | chat_inInstant: #ca9ee6 150 | chat_inInstantSelected: #ca9ee6 151 | chat_inLoader: #c6d0f5 152 | chat_inLoaderPhoto: #c6d0f5 153 | chat_inLoaderPhotoIcon: #303446 154 | chat_inLoaderPhotoIconSelected: #303446 155 | chat_inLoaderPhotoSelected: #c6d0f5 156 | chat_inLoaderSelected: #c6d0f5 157 | chat_inLocationBackground: #a6d189 158 | chat_inLocationIcon: #303446 159 | chat_inMediaIcon: #303446 160 | chat_inMediaIconSelected: #303446 161 | chat_inMenu: #737994 162 | chat_inMenuSelected: #737994 163 | chat_inPreviewInstantSelectedText: #c6d0f5 164 | chat_inPreviewInstantText: #c6d0f5 165 | chat_inPreviewLine: #8caaee 166 | chat_inReplyLine: #f2d5cf 167 | chat_inReplyMediaMessageSelectedText: #737994 168 | chat_inReplyMediaMessageText: #737994 169 | chat_inReplyMessageText: #737994 170 | chat_inReplyNameText: #f2d5cf 171 | chat_inSentClock: #737994 172 | chat_inSentClockSelected: #737994 173 | chat_inSiteNameText: #f2d5cf 174 | chat_inTimeSelectedText: #c6d0f5 175 | chat_inTimeText: #737994 176 | chat_inUpCall: #e78284 177 | chat_inVenueInfoSelectedText: #c6d0f5 178 | chat_inVenueInfoText: #c6d0f5 179 | chat_inViaBotNameText: #8caaee 180 | chat_inViews: #c6d0f5 181 | chat_inViewsSelected: #c6d0f5 182 | chat_inVoiceSeekbar: #737994 183 | chat_inVoiceSeekbarFill: #c6d0f5 184 | chat_inVoiceSeekbarSelected: #737994 185 | chat_inlineResultIcon: #8caaee 186 | chat_linkSelectBackground: #8caaee33 187 | chat_lockIcon: #303446 188 | chat_mediaBroadcast: #303446 189 | chat_mediaInfoText: #303446 190 | chat_mediaLoaderPhoto: #00000066 191 | chat_mediaLoaderPhotoIcon: #303446 192 | chat_mediaLoaderPhotoIconSelected: #303446 193 | chat_mediaLoaderPhotoSelected: #0000007F 194 | chat_mediaMenu: #303446 195 | chat_mediaProgress: #303446 196 | chat_mediaSentCheck: #303446 197 | chat_mediaSentClock: #303446 198 | chat_mediaTimeBackground: #00000066 199 | chat_mediaTimeText: #303446 200 | chat_mediaViews: #303446 201 | chat_messageLinkIn: #f2d5cf 202 | chat_messageLinkOut: #f2d5cf 203 | chat_messagePanelBackground: #303446 204 | chat_messagePanelCancelInlineBot: #737994 205 | chat_messagePanelCursor: #f2d5cf 206 | chat_messagePanelHint: #737994 207 | chat_messagePanelIcons: #a5adce 208 | chat_messagePanelPressedSend: #c6d0f5 209 | chat_messagePanelSend: #a5adce 210 | chat_messagePanelShadow: #00000000 211 | chat_messagePanelText: #c6d0f5 212 | chat_messagePanelVideoFrame: #ca9ee6 213 | chat_messagePanelVoiceBackground: #ca9ee6 214 | chat_messagePanelVoiceDelete: #232634 215 | chat_messagePanelVoiceDuration: #737994 216 | chat_messagePanelVoicePressed: #303446 217 | chat_messagePanelVoiceShadow: #0000000D 218 | chat_messageTextIn: #c6d0f5 219 | chat_messageTextOut: #c6d0f5 220 | chat_muteIcon: #737994 221 | chat_outAudioCacheSeekbar: #3034463F 222 | chat_outAudioDurationSelectedText: #c6d0f5 223 | chat_outAudioDurationText: #a5adce 224 | chat_outAudioPerfomerSelectedText: #c6d0f5 225 | chat_outAudioPerfomerText: #c6d0f5 226 | chat_outAudioProgress: #8caaee 227 | chat_outAudioSeekbar: #737994 228 | chat_outAudioSeekbarFill: #f2d5cf 229 | chat_outAudioSeekbarSelected: #737994 230 | chat_outAudioSelectedProgress: #f2d5cf 231 | chat_outAudioTitleText: #8caaee 232 | chat_outBroadcast: #a6d189 233 | chat_outBubble: #292c3c 234 | chat_outBubbleSelected: #414559 235 | chat_outBubbleShadow: #00000000 236 | chat_outContactBackground: #a6d189 237 | chat_outContactIcon: #303446 238 | chat_outContactNameText: #a6d189 239 | chat_outContactPhoneSelectedText: #c6d0f5 240 | chat_outContactPhoneText: #a5adce 241 | chat_outFileBackground: #81c8be 242 | chat_outFileBackgroundSelected: #81c8be 243 | chat_outFileIcon: #303446 244 | chat_outFileInfoSelectedText: #c6d0f5 245 | chat_outFileInfoText: #a5adce 246 | chat_outFileNameText: #f2d5cf 247 | chat_outFileProgress: #a5adce 248 | chat_outFileProgressSelected: #a5adce 249 | chat_outFileSelectedIcon: #303446 250 | chat_outForwardedNameText: #ca9ee6 251 | chat_outInstant: #ca9ee6 252 | chat_outInstantSelected: #ca9ee6 253 | chat_outLoader: #c6d0f5 254 | chat_outLoaderPhoto: #c6d0f5 255 | chat_outLoaderPhotoIcon: #303446 256 | chat_outLoaderPhotoIconSelected: #303446 257 | chat_outLoaderPhotoSelected: #c6d0f5 258 | chat_outLoaderSelected: #c6d0f5 259 | chat_outLocationBackground: #a6d189 260 | chat_outLocationIcon: #303446 261 | chat_outMediaIcon: #303446 262 | chat_outMediaIconSelected: #303446 263 | chat_outMenu: #737994 264 | chat_outMenuSelected: #737994 265 | chat_outPreviewInstantSelectedText: #c6d0f5 266 | chat_outPreviewInstantText: #c6d0f5 267 | chat_outPreviewLine: #8caaee 268 | chat_outReplyLine: #f2d5cf 269 | chat_outReplyMediaMessageSelectedText: #737994 270 | chat_outReplyMediaMessageText: #737994 271 | chat_outReplyMessageText: #737994 272 | chat_outReplyNameText: #f2d5cf 273 | chat_outSentCheck: #737994 274 | chat_outSentCheckRead: #737994 275 | chat_outSentCheckReadSelected: #f2d5cf 276 | chat_outSentCheckSelected: #f2d5cf 277 | chat_outSentClock: #737994 278 | chat_outSentClockSelected: #737994 279 | chat_outSiteNameText: #f2d5cf 280 | chat_outTimeSelectedText: #c6d0f5 281 | chat_outTimeText: #737994 282 | chat_outUpCall: #a6d189 283 | chat_outVenueInfoSelectedText: #c6d0f5 284 | chat_outVenueInfoText: #c6d0f5 285 | chat_outViaBotNameText: #8caaee 286 | chat_outViews: #c6d0f5 287 | chat_outViewsSelected: #c6d0f5 288 | chat_outVoiceSeekbar: #737994 289 | chat_outVoiceSeekbarFill: #c6d0f5 290 | chat_outVoiceSeekbarSelected: #737994 291 | chat_previewDurationText: #303446 292 | chat_previewGameText: #303446 293 | chat_recordTime: #c6d0f5 294 | chat_recordVoiceCancel: #737994 295 | chat_recordedVoiceBackground: #ca9ee6 296 | chat_recordedVoiceDot: #303446 297 | chat_recordedVoicePlayPause: #303446 298 | chat_recordedVoicePlayPausePressed: #303446 299 | chat_recordedVoiceProgress: #737994 300 | chat_recordedVoiceProgressInner: #c6d0f5 301 | chat_replyPanelClose: #737994 302 | chat_replyPanelIcons: #f2d5cf 303 | chat_replyPanelLine: #f2d5cf 304 | chat_replyPanelMessage: #c6d0f5 305 | chat_replyPanelName: #f2d5cf 306 | chat_reportSpam: #ea999c 307 | chat_searchPanelIcons: #737994 308 | chat_searchPanelText: #c6d0f5 309 | chat_secretChatStatusText: #737994 310 | chat_secretTimeText: #c6d0f5 311 | chat_secretTimerBackground: #303446CC 312 | chat_secretTimerText: #303446 313 | chat_selectedBackground: #23263444 314 | chat_sentError: #ea999c 315 | chat_sentErrorIcon: #303446 316 | chat_serviceIcon: #303446 317 | chat_serviceLink: #303446 318 | chat_serviceText: #303446 319 | chat_serviceBackground: #babbf1 320 | chat_shareBackground: #73799466 321 | chat_shareBackgroundSelected: #73799499 322 | chat_status: #a6d189 323 | chat_stickerNameText: #303446 324 | chat_stickerReplyLine: #303446 325 | chat_stickerReplyMessageText: #303446 326 | chat_stickerReplyNameText: #303446 327 | chat_stickerViaBotNameText: #303446 328 | chat_stickersHintPanel: #303446 329 | chat_textSelectBackground: #73799466 330 | chat_topPanelBackground: #292c3c 331 | chat_topPanelClose: #a5adce 332 | chat_topPanelLine: #a5adce 333 | chat_topPanelMessage: #a5adce 334 | chat_topPanelTitle: #a5adce 335 | chat_unreadMessagesStartArrowIcon: #303446 336 | chat_unreadMessagesStartBackground: #ca9ee6 337 | chat_unreadMessagesStartText: #303446 338 | chats_actionBackground: #a6d189 339 | chats_actionIcon: #303446 340 | chats_actionMessage: #a5adce 341 | chats_actionPressedBackground: #f4b8e4 342 | chats_actionUnreadBackground: #a6d189 343 | chats_actionUnreadIcon: #303446 344 | chats_actionUnreadPressedBackground: #a6d189 345 | chats_archiveBackground: #414559 346 | chats_archiveIcon: #c6d0f5 347 | chats_archivePinBackground: #626880 348 | chats_archiveText: #c6d0f5 349 | chats_attachMessage: #8caaee 350 | chats_date: #626880 351 | chats_draft: #ca9ee6 352 | chats_mentionIcon: #303446 353 | chats_menuBackground: #303446 354 | chats_menuCloud: #303446 355 | chats_menuCloudBackgroundCats: #8caaee 356 | chats_menuItemCheck: #dc2286 357 | chats_menuItemIcon: #737994 358 | chats_menuItemText: #a5adce 359 | chats_menuName: #c6d0f5 360 | chats_menuPhone: #a5adce 361 | chats_menuPhoneCats: #a5adce 362 | chats_menuTopBackgroundCats: #232634 363 | chats_message: #c6d0f5 364 | chats_messageArchived: #a5adce 365 | chats_message_threeLines: #a5adce 366 | chats_muteIcon: #737994 367 | chats_name: #c6d0f5 368 | chats_nameArchived: #a5adce 369 | chats_nameIcon: #c6d0f5 370 | chats_nameMessage: #8caaee 371 | chats_nameMessageArchived: #8caaee 372 | chats_nameMessageArchived_threeLines: #8caaee 373 | chats_nameMessage_threeLines: #8caaee 374 | chats_onlineCircle: #a6d189 375 | chats_pinnedIcon: #a5adce 376 | chats_pinnedOverlay: #292c3c 377 | chats_secretIcon: #a6d189 378 | chats_secretName: #a6d189 379 | chats_sentCheck: #a6d189 380 | chats_sentClock: #a6d189 381 | chats_sentError: #ea999c 382 | chats_sentErrorIcon: #303446 383 | chats_sentReadCheck: #a6d189 384 | chats_tabletSelectedOverlay: #0000000F 385 | chats_unreadCounter: #a6d189 386 | chats_unreadCounterMuted: #737994 387 | chats_unreadCounterText: #303446 388 | chats_verifiedBackground: #8caaee 389 | chats_verifiedCheck: #303446 390 | checkbox: #a6d189 391 | checkboxCheck: #303446 392 | checkboxDisabled: #737994 393 | checkboxSquareBackground: #8caaee 394 | checkboxSquareCheck: #303446 395 | checkboxSquareDisabled: #737994 396 | checkboxSquareUnchecked: #a5adce 397 | contacts_inviteBackground: #a6d189 398 | contacts_inviteText: #303446 399 | contextProgressInner1: #8caaee 400 | contextProgressInner2: #8caaee 401 | contextProgressInner3: #737994 402 | contextProgressInner4: #737994 403 | contextProgressOuter1: #a6d189 404 | contextProgressOuter2: #303446 405 | contextProgressOuter3: #303446 406 | contextProgressOuter4: #c6d0f5 407 | dialogBackground: #303446 408 | dialogBackgroundGray: #232634 409 | dialogBadgeBackground: #8caaee 410 | dialogBadgeText: #303446 411 | dialogButton: #8caaee 412 | dialogButtonSelector: #0000000F 413 | dialogCameraIcon: #303446 414 | dialogCheckboxSquareBackground: #8caaee 415 | dialogCheckboxSquareCheck: #303446 416 | dialogCheckboxSquareDisabled: #737994 417 | dialogCheckboxSquareUnchecked: #a5adce 418 | dialogFloatingButton: #8caaee 419 | dialogFloatingButtonPressed: #8caaee 420 | dialogFloatingIcon: #303446 421 | dialogGrayLine: #737994 422 | dialogIcon: #c6d0f5 423 | dialogInputField: #a5adce 424 | dialogInputFieldActivated: #8caaee 425 | dialogLineProgress: #8caaee 426 | dialogLineProgressBackground: #737994 427 | dialogLinkSelection: #8caaee33 428 | dialogProgressCircle: #8caaee 429 | dialogRadioBackground: #737994 430 | dialogRadioBackgroundChecked: #8caaee 431 | dialogRedIcon: #ea999c 432 | dialogRoundCheckBox: #8caaee 433 | dialogRoundCheckBoxCheck: #303446 434 | dialogScrollGlow: #292c3c 435 | dialogSearchBackground: #a5adce 436 | dialogSearchHint: #232634 437 | dialogSearchIcon: #232634 438 | dialogSearchText: #c6d0f5 439 | dialogShadowLine: #00000012 440 | dialogTextBlack: #c6d0f5 441 | dialogTextBlue2: #8caaee 442 | dialogTextBlue3: #8caaee 443 | dialogTextBlue4: #8caaee 444 | dialogTextBlue: #2F81e66f5CC9 445 | dialogTextGray2: #b5bfe2 446 | dialogTextGray3: #b5bfe2 447 | dialogTextGray4: #a5adce 448 | dialogTextGray: #a5adce 449 | dialogTextHint: #a5adce 450 | dialogTextLink: #f2d5cf 451 | dialogTextRed2: #ea999c 452 | dialogTextRed: #ea999c 453 | dialogTopBackground: #8caaee 454 | dialog_inlineProgress: #a5adce 455 | dialog_inlineProgressBackground: #232634F6 456 | dialog_liveLocationProgress: #8caaee 457 | divider: #00000000 458 | emptyListPlaceholder: #737994 459 | fastScrollActive: #8caaee 460 | fastScrollInactive: #737994 461 | fastScrollText: #303446 462 | featuredStickers_addButton: #8caaee 463 | featuredStickers_addButtonPressed: #8caaee 464 | featuredStickers_addedIcon: #8caaee 465 | featuredStickers_buttonProgress: #303446 466 | featuredStickers_buttonText: #303446 467 | featuredStickers_delButton: #ea999c 468 | featuredStickers_delButtonPressed: #ea999c 469 | featuredStickers_unread: #8caaee 470 | files_folderIcon: #999999 471 | files_folderIconBackground: #51576d 472 | files_iconText: #303446 473 | graySection: #51576d 474 | groupcreate_cursor: #f2d5cf 475 | groupcreate_hintText: #737994 476 | groupcreate_sectionShadow: #00000000 477 | groupcreate_sectionText: #a5adce 478 | groupcreate_spanBackground: #51576d 479 | groupcreate_spanDelete: #ea999c 480 | groupcreate_spanText: #c6d0f5 481 | inappPlayerBackground: #292c3c 482 | inappPlayerClose: #a5adce 483 | inappPlayerPerformer: #c6d0f5 484 | inappPlayerPlayPause: #8caaee 485 | inappPlayerTitle: #a5adce 486 | key_chat_messagePanelVoiceLock: #A4A4A4 487 | key_chat_messagePanelVoiceLockBackground: #303446 488 | key_chat_messagePanelVoiceLockShadow: #000000 489 | key_graySectionText: #7F8991 490 | key_player_progressCachedBackground: #E9EFF5 491 | key_sheet_other: #C9CDD3 492 | key_sheet_scrollUp: #E1E4E8 493 | listSelectorSDK21: #0000000F 494 | location_liveLocationProgress: #359FE5 495 | location_placeLocationBackground: #4CA8EA 496 | location_sendLiveLocationBackground: #FF6464 497 | location_sendLiveLocationIcon: #303446 498 | location_sendLocationBackground: #6DA0D4 499 | location_sendLocationIcon: #303446 500 | login_progressInner: #E1EAF2 501 | login_progressOuter: #62A0D0 502 | musicPicker_buttonBackground: #5CAFEA 503 | musicPicker_buttonIcon: #303446 504 | musicPicker_checkbox: #29B6F7 505 | musicPicker_checkboxCheck: #303446 506 | passport_authorizeBackground: #45ABEF 507 | passport_authorizeBackgroundSelected: #409DDB 508 | passport_authorizeText: #303446 509 | picker_badge: #29B6F7 510 | picker_badgeText: #303446 511 | picker_disabledButton: #999999 512 | picker_enabledButton: #19A7E8 513 | player_actionBar: #303446 514 | player_actionBarItems: #8A8A8A 515 | player_actionBarSelector: #0000000F 516 | player_actionBarSubtitle: #8A8A8A 517 | player_actionBarTitle: #2F3438 518 | player_actionBarTop: #00000099 519 | player_background: #303446 520 | player_button: #333333 521 | player_buttonActive: #4CA8EA 522 | player_placeholder: #A8A8A8 523 | player_placeholderBackground: #F0F0F0 524 | player_progress: #4B9FE3 525 | player_progressBackground: #E9EFF5 526 | player_time: #8C9296 527 | profile_actionBackground: #c6d0f5 528 | profile_actionIcon: #303446 529 | profile_actionPressedBackground: #c6d0f5 530 | profile_creatorIcon: #8caaee 531 | profile_status: #737994 532 | profile_title: #c6d0f5 533 | profile_verifiedBackground: #8caaee 534 | profile_verifiedCheck: #303446 535 | progressCircle: #527DA3 536 | radioBackground: #B3B3B3 537 | radioBackgroundChecked: #37A9F0 538 | returnToCallBackground: #44A1E3 539 | returnToCallText: #303446 540 | sessions_devicesImage: #969696 541 | sharedMedia_actionMode: #4687B3 542 | sharedMedia_linkPlaceholder: #F0F3F5 543 | sharedMedia_linkPlaceholderText: #B7BEC3 544 | sharedMedia_photoPlaceholder: #EDF3F7 545 | sharedMedia_startStopLoadIcon: #36A2EE 546 | stickers_menu: #B6BDC5 547 | stickers_menuSelector: #0000000F 548 | switch2Track: #737994 549 | switch2TrackChecked: #a6d189 550 | switchTrack: #737994 551 | switchTrackBlue: #737994 552 | switchTrackBlueChecked: #a6d189 553 | switchTrackBlueSelector: #404A5317 554 | switchTrackBlueSelectorChecked: #02478121 555 | switchTrackBlueThumb: #303446 556 | switchTrackBlueThumbChecked: #303446 557 | switchTrackChecked: #a6d189 558 | undo_background: #272F38EA 559 | undo_cancelColor: #85CAFF 560 | undo_infoColor: #303446 561 | windowBackgroundCheckText: #303446 562 | windowBackgroundChecked: #8caaee 563 | windowBackgroundGray: #292c3c 564 | windowBackgroundGrayShadow: #00000000 565 | windowBackgroundUnchecked: #737994 566 | windowBackgroundWhite: #303446 567 | windowBackgroundWhiteBlackText: #c6d0f5 568 | windowBackgroundWhiteBlueButton: #8caaee 569 | windowBackgroundWhiteBlueHeader: #8caaee 570 | windowBackgroundWhiteBlueIcon: #8caaee 571 | windowBackgroundWhiteBlueText2: #8caaee 572 | windowBackgroundWhiteBlueText3: #8caaee 573 | windowBackgroundWhiteBlueText4: #8caaee 574 | windowBackgroundWhiteBlueText5: #8caaee 575 | windowBackgroundWhiteBlueText6: #8caaee 576 | windowBackgroundWhiteBlueText7: #8caaee 577 | windowBackgroundWhiteBlueText: #8caaee 578 | windowBackgroundWhiteGrayIcon: #737994 579 | windowBackgroundWhiteGrayLine: #98A0A7 580 | windowBackgroundWhiteGrayText2: #a5adce 581 | windowBackgroundWhiteGrayText3: #a5adce 582 | windowBackgroundWhiteGrayText4: #a5adce 583 | windowBackgroundWhiteGrayText5: #a5adce 584 | windowBackgroundWhiteGrayText6: #a5adce 585 | windowBackgroundWhiteGrayText7: #a5adce 586 | windowBackgroundWhiteGrayText8: #a5adce 587 | windowBackgroundWhiteGrayText: #a5adce 588 | windowBackgroundWhiteGreenText2: #a6d189 589 | windowBackgroundWhiteGreenText: #a6d189 590 | windowBackgroundWhiteHintText: #98A0A7 591 | windowBackgroundWhiteInputField: #F2F4F5 592 | windowBackgroundWhiteInputFieldActivated: #8caaee 593 | windowBackgroundWhiteLinkSelection: #f2d5cf33 594 | windowBackgroundWhiteLinkText: #f2d5cf 595 | windowBackgroundWhiteRedText2: #ea999c 596 | windowBackgroundWhiteRedText3: #ea999c 597 | windowBackgroundWhiteRedText4: #ea999c 598 | windowBackgroundWhiteRedText5: #ea999c 599 | windowBackgroundWhiteRedText6: #ea999c 600 | windowBackgroundWhiteRedText: #ea999c 601 | windowBackgroundWhiteValueText: #8caaee 602 | -------------------------------------------------------------------------------- /src/frappe/ios: -------------------------------------------------------------------------------- 1 | name: Catppuccin Frappe 2 | shortname: ctp_frappe 3 | dark: true 4 | intro_statusBar: white 5 | intro_primaryText: #c6d0f5 6 | intro_accentText: #a6d189 7 | intro_disabledText: #575b55 8 | intro_startButton: #a6d189 9 | intro_dot: #b5bfe2 10 | passcode_bg_top: #626880 11 | passcode_bg_bottom: #303446 12 | passcode_button: #414559 13 | root_statusBar: white 14 | root_tabBar_background: #414559 15 | root_tabBar_separator: #232634 16 | root_tabBar_icon: #838ba7 17 | root_tabBar_selectedIcon: #a6d189 18 | root_tabBar_text: #838ba7 19 | root_tabBar_selectedText: #a6d189 20 | root_tabBar_badgeBackground: #e78284 21 | root_tabBar_badgeStroke: #e78284 22 | root_tabBar_badgeText: #232634 23 | root_navBar_button: #a6d189 24 | root_navBar_disabledButton: #575b55 25 | root_navBar_primaryText: #c6d0f5 26 | root_navBar_secondaryText: #b5bfe2 27 | root_navBar_control: #b5bfe2 28 | root_navBar_accentText: #a6d189 29 | root_navBar_background: #414559 30 | root_navBar_opaqueBackground: #414559 31 | root_navBar_separator: #232634 32 | root_navBar_badgeFill: #e78284 33 | root_navBar_badgeStroke: #e78284 34 | root_navBar_badgeText: #232634 35 | root_navBar_segmentedBg: #303446 36 | root_navBar_segmentedFg: #414559 37 | root_navBar_segmentedText: #c6d0f5 38 | root_navBar_segmentedDivider: #c6d0f57F 39 | root_searchBar_background: #414559 40 | root_searchBar_accent: #a6d189 41 | root_searchBar_inputFill: #303446 42 | root_searchBar_inputText: #c6d0f5 43 | root_searchBar_inputPlaceholderText: #b5bfe2 44 | root_searchBar_inputIcon: #b5bfe2 45 | root_searchBar_inputClearButton: #b5bfe2 46 | root_searchBar_separator: #303446 47 | root_keyboard: dark 48 | list_blocksBg: #303446 49 | list_plainBg: #303446 50 | list_primaryText: #c6d0f5 51 | list_secondaryText: #c6d0f57F 52 | list_disabledText: #c6d0f57F 53 | list_accent: #a6d189 54 | list_highlighted: #a6d189 55 | list_destructive: #e78284 56 | list_placeholderText: #c6d0f57F 57 | list_itemBlocksBg: #414559 58 | list_itemHighlightedBg: #414559 59 | list_blocksSeparator: #232634 60 | list_plainSeparator: #232634 61 | list_disclosureArrow: #c6d0f57F 62 | list_sectionHeaderText: #626880 63 | list_freeText: #626880 64 | list_freeTextError: #e78284 65 | list_freeTextSuccess: #a6d189 66 | list_freeMonoIcon: #626880 67 | list_switch_frame: #c6d0f57F 68 | list_switch_handle: #232634 69 | list_switch_content: #a6d189 70 | list_switch_positive: #a6d189 71 | list_switch_negative: #e78284 72 | list_disclosureActions_neutral1_bg: #a6d189 73 | list_disclosureActions_neutral1_fg: #ffffff 74 | list_disclosureActions_neutral2_bg: #ef9f76 75 | list_disclosureActions_neutral2_fg: #ffffff 76 | list_disclosureActions_destructive_bg: #e78284 77 | list_disclosureActions_destructive_fg: #ffffff 78 | list_disclosureActions_constructive_bg: #a6d189 79 | list_disclosureActions_constructive_fg: #ffffff 80 | list_disclosureActions_accent_bg: #a6d189 81 | list_disclosureActions_accent_fg: #ffffff 82 | list_disclosureActions_warning_bg: #ef9f76 83 | list_disclosureActions_warning_fg: #ffffff 84 | list_disclosureActions_inactive_bg: #303446 85 | list_disclosureActions_inactive_fg: #c6d0f5 86 | list_check_bg: #a6d189 87 | list_check_stroke: #c6d0f57F 88 | list_check_fg: #232634 89 | list_controlSecondary: #c6d0f57F 90 | list_freeInputField_bg: #414559 91 | list_freeInputField_stroke: #414559 92 | list_freeInputField_placeholder: #c6d0f57F 93 | list_freeInputField_primary: #c6d0f5 94 | list_freeInputField_control: #c6d0f57F 95 | list_mediaPlaceholder: #303446 96 | list_scrollIndicator: #c6d0f57F 97 | list_pageIndicatorInactive: #c6d0f566 98 | list_inputClearButton: #b5bfe2 99 | list_itemBarChart_color1: #a6d189 100 | list_itemBarChart_color2: #c6d0f57F 101 | list_itemBarChart_color3: #303446 102 | list_itemInputField_bg: #292c3c 103 | list_itemInputField_stroke: #292c3c 104 | list_itemInputField_placeholder: #838ba7 105 | list_itemInputField_primary: #c6d0f5 106 | list_itemInputField_control: #838ba7 107 | chatList_bg: #303446 108 | chatList_itemSeparator: #232634 109 | chatList_itemBg: #303446 110 | chatList_pinnedItemBg: #414559 111 | chatList_itemHighlightedBg: #414559 112 | chatList_pinnedItemHighlightedBg: #414559 113 | chatList_itemSelectedBg: #414559 114 | chatList_title: #c6d0f5 115 | chatList_secretTitle: #a6d189 116 | chatList_dateText: #c6d0f57F 117 | chatList_authorName: #c6d0f5 118 | chatList_messageText: #c6d0f57F 119 | chatList_messageHighlightedText: #c6d0f5 120 | chatList_messageDraftText: #e78284 121 | chatList_checkmark: #a6d189 122 | chatList_pendingIndicator: #c6d0f566 123 | chatList_failedFill: #e78284 124 | chatList_failedFg: #c6d0f5 125 | chatList_muteIcon: #c6d0f566 126 | chatList_unreadBadgeActiveBg: #a6d189 127 | chatList_unreadBadgeActiveText: #232634 128 | chatList_unreadBadgeInactiveBg: #c6d0f566 129 | chatList_unreadBadgeInactiveText: #303446 130 | chatList_reactionBadgeActiveBg: #e78284 131 | chatList_pinnedBadge: #c6d0f57F 132 | chatList_pinnedSearchBar: #303446 133 | chatList_regularSearchBar: #414559 134 | chatList_sectionHeaderBg: #414559 135 | chatList_sectionHeaderText: #c6d0f57F 136 | chatList_verifiedIconBg: #a6d189 137 | chatList_verifiedIconFg: #c6d0f5 138 | chatList_secretIcon: #a6d189 139 | chatList_pinnedArchiveAvatar_background_top: #8caaee 140 | chatList_pinnedArchiveAvatar_background_bottom: #8caaee 141 | chatList_pinnedArchiveAvatar_foreground: #c6d0f5 142 | chatList_unpinnedArchiveAvatar_background_top: #626880 143 | chatList_unpinnedArchiveAvatar_background_bottom: #626880 144 | chatList_unpinnedArchiveAvatar_foreground: #303446 145 | chatList_onlineDot: #a6d189 146 | chat_animateMessageColors: false 147 | chat_message_incoming_bubble_withWp_bg: #414559 148 | chat_message_incoming_bubble_withWp_gradientBg: #414559 149 | chat_message_incoming_bubble_withWp_highlightedBg: #414559 150 | chat_message_incoming_bubble_withWp_stroke: #414559 151 | chat_message_incoming_bubble_withWp_reactionInactiveBg: #c6d0f511 152 | chat_message_incoming_bubble_withWp_reactionInactiveFg: #c6d0f5 153 | chat_message_incoming_bubble_withWp_reactionActiveBg: #a6d189 154 | chat_message_incoming_bubble_withWp_reactionActiveFg: #c6d0f5 155 | chat_message_incoming_bubble_withWp_reactionInactiveMediaPlaceholder: #23263419 156 | chat_message_incoming_bubble_withWp_reactionActiveMediaPlaceholder: #23263419 157 | chat_message_incoming_bubble_withoutWp_bg: #414559 158 | chat_message_incoming_bubble_withoutWp_gradientBg: #414559 159 | chat_message_incoming_bubble_withoutWp_highlightedBg: #414559 160 | chat_message_incoming_bubble_withoutWp_stroke: #414559 161 | chat_message_incoming_bubble_withoutWp_reactionInactiveBg: #c6d0f511 162 | chat_message_incoming_bubble_withoutWp_reactionInactiveFg: #c6d0f5 163 | chat_message_incoming_bubble_withoutWp_reactionActiveBg: #a6d189 164 | chat_message_incoming_bubble_withoutWp_reactionActiveFg: #c6d0f5 165 | chat_message_incoming_bubble_withoutWp_reactionInactiveMediaPlaceholder: #23263419 166 | chat_message_incoming_bubble_withoutWp_reactionActiveMediaPlaceholder: #23263419 167 | chat_message_incoming_primaryText: #c6d0f5 168 | chat_message_incoming_secondaryText: #c6d0f57F 169 | chat_message_incoming_linkText: #a6d189 170 | chat_message_incoming_linkHighlight: #a6d1897F 171 | chat_message_incoming_scam: #e78284 172 | chat_message_incoming_textHighlight: #ef9f76 173 | chat_message_incoming_accentText: #a6d189 174 | chat_message_incoming_accentControl: #a6d189 175 | chat_message_incoming_mediaActiveControl: #a6d189 176 | chat_message_incoming_mediaInactiveControl: #a6d1897F 177 | chat_message_incoming_mediaControlInnerBg: #414559 178 | chat_message_incoming_pendingActivity: #c6d0f57F 179 | chat_message_incoming_fileTitle: #a6d189 180 | chat_message_incoming_fileDescription: #c6d0f57F 181 | chat_message_incoming_fileDuration: #c6d0f57F 182 | chat_message_incoming_mediaPlaceholder: #303446 183 | chat_message_incoming_polls_radioButton: #626880 184 | chat_message_incoming_polls_radioProgress: #a6d189 185 | chat_message_incoming_polls_highlight: #a6d1891E 186 | chat_message_incoming_polls_separator: #232634 187 | chat_message_incoming_polls_bar: #a6d189 188 | chat_message_incoming_polls_barIconForeground: #c6d0f5 189 | chat_message_incoming_polls_barPositive: #a6d189 190 | chat_message_incoming_polls_barNegative: #e78284 191 | chat_message_incoming_actionButtonsBg_withWp: #3034467F 192 | chat_message_incoming_actionButtonsBg_withoutWp: #3034467F 193 | chat_message_incoming_actionButtonsStroke_withWp: #73799426 194 | chat_message_incoming_actionButtonsStroke_withoutWp: #73799426 195 | chat_message_incoming_actionButtonsText_withWp: #c6d0f5 196 | chat_message_incoming_actionButtonsText_withoutWp: #c6d0f5 197 | chat_message_incoming_textSelection: #a6d18933 198 | chat_message_incoming_textSelectionKnob: #a6d189 199 | chat_message_outgoing_bubble_withWp_bg: #a6d189 200 | chat_message_outgoing_bubble_withWp_gradientBg: #a6d189 201 | chat_message_outgoing_bubble_withWp_highlightedBg: #a6d189 202 | chat_message_outgoing_bubble_withWp_stroke: clear 203 | chat_message_outgoing_bubble_withWp_reactionInactiveBg: #c6d0f519 204 | chat_message_outgoing_bubble_withWp_reactionInactiveFg: #c6d0f5 205 | chat_message_outgoing_bubble_withWp_reactionActiveBg: #c6d0f5 206 | chat_message_outgoing_bubble_withWp_reactionActiveFg: clear 207 | chat_message_outgoing_bubble_withWp_reactionInactiveMediaPlaceholder: #23263419 208 | chat_message_outgoing_bubble_withWp_reactionActiveMediaPlaceholder: #23263419 209 | chat_message_outgoing_bubble_withoutWp_bg: #a6d189 210 | chat_message_outgoing_bubble_withoutWp_gradientBg: #a6d189 211 | chat_message_outgoing_bubble_withoutWp_highlightedBg: #a6d189 212 | chat_message_outgoing_bubble_withoutWp_stroke: clear 213 | chat_message_outgoing_bubble_withoutWp_reactionInactiveBg: #c6d0f519 214 | chat_message_outgoing_bubble_withoutWp_reactionInactiveFg: #c6d0f5 215 | chat_message_outgoing_bubble_withoutWp_reactionActiveBg: #c6d0f5 216 | chat_message_outgoing_bubble_withoutWp_reactionActiveFg: clear 217 | chat_message_outgoing_bubble_withoutWp_reactionInactiveMediaPlaceholder: #23263419 218 | chat_message_outgoing_bubble_withoutWp_reactionActiveMediaPlaceholder: #23263419 219 | chat_message_outgoing_primaryText: #232634 220 | chat_message_outgoing_secondaryText: #2326347F 221 | chat_message_outgoing_linkText: #232634 222 | chat_message_outgoing_linkHighlight: #c6d0f57F 223 | chat_message_outgoing_scam: #232634 224 | chat_message_outgoing_textHighlight: #ef9f76 225 | chat_message_outgoing_accentText: #232634 226 | chat_message_outgoing_accentControl: #232634 227 | chat_message_outgoing_mediaActiveControl: #232634 228 | chat_message_outgoing_mediaInactiveControl: #2326347F 229 | chat_message_outgoing_mediaControlInnerBg: #a6d189 230 | chat_message_outgoing_pendingActivity: #2326347F 231 | chat_message_outgoing_fileTitle: #232634 232 | chat_message_outgoing_fileDescription: #2326347F 233 | chat_message_outgoing_fileDuration: #2326347F 234 | chat_message_outgoing_mediaPlaceholder: #626880 235 | chat_message_outgoing_polls_radioButton: #232634 236 | chat_message_outgoing_polls_radioProgress: #232634 237 | chat_message_outgoing_polls_highlight: #2326341E 238 | chat_message_outgoing_polls_separator: #232634 239 | chat_message_outgoing_polls_bar: #232634 240 | chat_message_outgoing_polls_barIconForeground: clear 241 | chat_message_outgoing_polls_barPositive: #c6d0f5 242 | chat_message_outgoing_polls_barNegative: #c6d0f5 243 | chat_message_outgoing_actionButtonsBg_withWp: #3034467F 244 | chat_message_outgoing_actionButtonsBg_withoutWp: #3034467F 245 | chat_message_outgoing_actionButtonsStroke_withWp: #73799426 246 | chat_message_outgoing_actionButtonsStroke_withoutWp: #73799426 247 | chat_message_outgoing_actionButtonsText_withWp: #c6d0f5 248 | chat_message_outgoing_actionButtonsText_withoutWp: #c6d0f5 249 | chat_message_outgoing_textSelection: #c6d0f533 250 | chat_message_outgoing_textSelectionKnob: #c6d0f5 251 | chat_message_freeform_withWp_bg: #414559 252 | chat_message_freeform_withWp_gradientBg: #414559 253 | chat_message_freeform_withWp_highlightedBg: #414559 254 | chat_message_freeform_withWp_stroke: #414559 255 | chat_message_freeform_withWp_reactionInactiveBg: #414559E5 256 | chat_message_freeform_withWp_reactionInactiveFg: #c6d0f5 257 | chat_message_freeform_withWp_reactionActiveBg: #8caaee 258 | chat_message_freeform_withWp_reactionActiveFg: #c6d0f5 259 | chat_message_freeform_withWp_reactionInactiveMediaPlaceholder: #23263419 260 | chat_message_freeform_withWp_reactionActiveMediaPlaceholder: #23263419 261 | chat_message_freeform_withoutWp_bg: #414559 262 | chat_message_freeform_withoutWp_gradientBg: #414559 263 | chat_message_freeform_withoutWp_highlightedBg: #414559 264 | chat_message_freeform_withoutWp_stroke: #414559 265 | chat_message_freeform_withoutWp_reactionInactiveBg: #414559E5 266 | chat_message_freeform_withoutWp_reactionInactiveFg: #c6d0f5 267 | chat_message_freeform_withoutWp_reactionActiveBg: #8caaee 268 | chat_message_freeform_withoutWp_reactionActiveFg: #c6d0f5 269 | chat_message_freeform_withoutWp_reactionInactiveMediaPlaceholder: #23263419 270 | chat_message_freeform_withoutWp_reactionActiveMediaPlaceholder: #23263419 271 | chat_message_infoPrimaryText: #c6d0f5 272 | chat_message_infoLinkText: #a6d189 273 | chat_message_outgoingCheck: #2326347F 274 | chat_message_mediaDateAndStatusBg: #2326344C 275 | chat_message_mediaDateAndStatusText: #c6d0f5 276 | chat_message_shareButtonBg_withWp: #3034467F 277 | chat_message_shareButtonBg_withoutWp: #3034467F 278 | chat_message_shareButtonStroke_withWp: #73799426 279 | chat_message_shareButtonStroke_withoutWp: #73799426 280 | chat_message_shareButtonFg_withWp: #949cbb 281 | chat_message_shareButtonFg_withoutWp: #949cbb 282 | chat_message_mediaOverlayControl_bg: #23263499 283 | chat_message_mediaOverlayControl_fg: #c6d0f5 284 | chat_message_selectionControl_bg: #a6d189 285 | chat_message_selectionControl_stroke: #c6d0f5 286 | chat_message_selectionControl_fg: #c6d0f5 287 | chat_message_deliveryFailed_bg: #e78284 288 | chat_message_deliveryFailed_fg: #c6d0f5 289 | chat_message_mediaHighlightOverlay: #c6d0f599 290 | chat_message_stickerPlaceholder_withWp: #4145597F 291 | chat_message_stickerPlaceholder_withoutWp: #4145597F 292 | chat_message_stickerPlaceholderShimmer_withWp: #c6d0f50C 293 | chat_message_stickerPlaceholderShimmer_withoutWp: #c6d0f50C 294 | chat_serviceMessage_components_withDefaultWp_bg: #303446 295 | chat_serviceMessage_components_withDefaultWp_primaryText: #c6d0f5 296 | chat_serviceMessage_components_withDefaultWp_linkHighlight: #c6d0f51E 297 | chat_serviceMessage_components_withDefaultWp_scam: #e78284 298 | chat_serviceMessage_components_withDefaultWp_dateFillStatic: #30344699 299 | chat_serviceMessage_components_withDefaultWp_dateFillFloat: #30344633 300 | chat_serviceMessage_components_withCustomWp_bg: #303446 301 | chat_serviceMessage_components_withCustomWp_primaryText: #c6d0f5 302 | chat_serviceMessage_components_withCustomWp_linkHighlight: #c6d0f51E 303 | chat_serviceMessage_components_withCustomWp_scam: #e78284 304 | chat_serviceMessage_components_withCustomWp_dateFillStatic: #30344699 305 | chat_serviceMessage_components_withCustomWp_dateFillFloat: #30344633 306 | chat_serviceMessage_unreadBarBg: #414559 307 | chat_serviceMessage_unreadBarStroke: #414559 308 | chat_serviceMessage_unreadBarText: #c6d0f5 309 | chat_serviceMessage_dateText_withWp: #c6d0f5 310 | chat_serviceMessage_dateText_withoutWp: #c6d0f5 311 | chat_inputPanel_panelBg: #414559 312 | chat_inputPanel_panelSeparator: #232634 313 | chat_inputPanel_panelControlAccent: #a6d189 314 | chat_inputPanel_panelControl: #c6d0f57F 315 | chat_inputPanel_panelControlDisabled: #838ba77F 316 | chat_inputPanel_panelControlDestructive: #e78284 317 | chat_inputPanel_inputBg: #303446 318 | chat_inputPanel_inputStroke: #303446 319 | chat_inputPanel_inputPlaceholder: #c6d0f566 320 | chat_inputPanel_inputText: #c6d0f5 321 | chat_inputPanel_inputControl: #c6d0f566 322 | chat_inputPanel_actionControlBg: #a6d189 323 | chat_inputPanel_actionControlFg: #232634 324 | chat_inputPanel_primaryText: #c6d0f5 325 | chat_inputPanel_secondaryText: #c6d0f57F 326 | chat_inputPanel_mediaRecordDot: #a6d189 327 | chat_inputPanel_mediaRecordControl_button: #a6d189 328 | chat_inputPanel_mediaRecordControl_micLevel: #a6d18933 329 | chat_inputPanel_mediaRecordControl_activeIcon: #c6d0f5 330 | chat_inputMediaPanel_panelSeparator: #414559 331 | chat_inputMediaPanel_panelIcon: #c6d0f57F 332 | chat_inputMediaPanel_panelHighlightedIconBg: #c6d0f51F 333 | chat_inputMediaPanel_panelHighlightedIcon: #c6d0f5AC 334 | chat_inputMediaPanel_panelContentVibrantOverlay: #c6d0f57F 335 | chat_inputMediaPanel_panelContentControlVibrantOverlay: #c6d0f54C 336 | chat_inputMediaPanel_panelContentControlVibrantSelection: #c6d0f519 337 | chat_inputMediaPanel_panelContentControlOpaqueOverlay: #c6d0f54C 338 | chat_inputMediaPanel_panelContentControlOpaqueSelection: #c6d0f54C 339 | chat_inputMediaPanel_stickersBg: #303446 340 | chat_inputMediaPanel_stickersSectionText: #c6d0f57F 341 | chat_inputMediaPanel_stickersSearchBg: #737994 342 | chat_inputMediaPanel_stickersSearchPlaceholder: #737994 343 | chat_inputMediaPanel_stickersSearchPrimary: #c6d0f5 344 | chat_inputMediaPanel_stickersSearchControl: #737994 345 | chat_inputMediaPanel_gifsBg: #303446 346 | chat_inputMediaPanel_bg: #303446BF 347 | chat_inputButtonPanel_panelBg: #232634 348 | chat_inputButtonPanel_panelSeparator: #414559 349 | chat_inputButtonPanel_buttonBg: #51576d 350 | chat_inputButtonPanel_buttonStroke: #232634 351 | chat_inputButtonPanel_buttonHighlightedBg: #51576dB2 352 | chat_inputButtonPanel_buttonHighlightedStroke: #232634 353 | chat_inputButtonPanel_buttonText: #c6d0f5 354 | chat_historyNav_bg: #414559 355 | chat_historyNav_stroke: #232634 356 | chat_historyNav_fg: #c6d0f57F 357 | chat_historyNav_badgeBg: #a6d189 358 | chat_historyNav_badgeStroke: #a6d189 359 | chat_historyNav_badgeText: #c6d0f5 360 | actionSheet_dim: #2326347F 361 | actionSheet_bgType: dark 362 | actionSheet_opaqueItemBg: #414559 363 | actionSheet_itemBg: #414559CC 364 | actionSheet_opaqueItemHighlightedBg: #414559 365 | actionSheet_itemHighlightedBg: #41455933 366 | actionSheet_opaqueItemSeparator: #303446 367 | actionSheet_standardActionText: #a6d189 368 | actionSheet_destructiveActionText: #e78284 369 | actionSheet_disabledActionText: #c6d0f57F 370 | actionSheet_primaryText: #c6d0f5 371 | actionSheet_secondaryText: #c6d0f57F 372 | actionSheet_controlAccent: #a6d189 373 | actionSheet_inputBg: #303446 374 | actionSheet_inputHollowBg: #303446 375 | actionSheet_inputBorder: #303446 376 | actionSheet_inputPlaceholder: #b5bfe2 377 | actionSheet_inputText: #c6d0f5 378 | actionSheet_inputClearButton: #b5bfe2 379 | actionSheet_checkContent: #232634 380 | contextMenu_dim: #23263499 381 | contextMenu_background: #414559C6 382 | contextMenu_itemSeparator: #c6d0f526 383 | contextMenu_sectionSeparator: #23263433 384 | contextMenu_itemBg: #23263400 385 | contextMenu_itemHighlightedBg: #c6d0f526 386 | contextMenu_primary: #c6d0f5 387 | contextMenu_secondary: #c6d0f57F 388 | contextMenu_destructive: #e78284 389 | notification_bg: #414559 390 | notification_primaryText: #c6d0f5 391 | notification_expanded_bgType: dark 392 | notification_expanded_navBar_background: #414559 393 | notification_expanded_navBar_primaryText: #c6d0f5 394 | notification_expanded_navBar_control: #a6d189 395 | notification_expanded_navBar_separator: #232634 396 | chart_labels: #a5adce99 397 | chart_helperLines: #838ba759 398 | chart_strongLines: #838ba759 399 | chart_barStrongLines: #a5adce72 400 | chart_detailsText: #c6d0f5 401 | chart_detailsArrow: #c6d0f5 402 | chart_detailsView: #292c3c 403 | chart_rangeViewFrame: #51576d 404 | chart_rangeViewMarker: #c6d0f5 405 | -------------------------------------------------------------------------------- /src/frappe/macos: -------------------------------------------------------------------------------- 1 | //metadata 2 | 3 | name = Catppuccin Frappe 4 | shortname = ctp_frappe 5 | isDark = 1 6 | tinted = 1 7 | 8 | //Variables 9 | 10 | parent = dark 11 | copyright = Catppuccin 12 | basicAccent = #8caaee 13 | background = #303446 14 | text = #c6d0f5 15 | grayText = #b5bfe2 16 | link = #74c7e6 17 | accent = #8caaee 18 | redUI = #e78284 19 | greenUI = #a6d189 20 | blackTransparent = #232634 21 | grayTransparent = #41455999 22 | grayUI = #303446 23 | darkGrayText = #a5adce 24 | accentSelect = #99d1db 25 | selectText = #99d1db 26 | border = #414559 27 | grayBackground = #51576d 28 | grayForeground = #51576d 29 | grayIcon = #a6d189 30 | accentIcon = #ea999c 31 | badgeMuted = #838ba7 32 | badge = #ea999c 33 | monospacedCodeBubble_outgoing = #c6d0f5 34 | indicatorColor = #c6d0f5 35 | selectMessage = #303446 36 | monospacedPre = #8caaee 37 | monospacedCode = #8caaee 38 | monospacedPreBubble_incoming = #c6d0f5 39 | monospacedPreBubble_outgoing = #c6d0f5 40 | monospacedCodeBubble_incoming = #c6d0f5 41 | selectTextBubble_incoming = #a6d189 42 | selectTextBubble_outgoing = #99d1db 43 | bubbleBackground_incoming = #414559 44 | bubbleBackgroundTop_outgoing = #303446 45 | bubbleBackgroundBottom_outgoing = #303446 46 | bubbleBorder_incoming = #414559 47 | bubbleBorder_outgoing = #303446 48 | grayTextBubble_incoming = #b5bfe2 49 | grayTextBubble_outgoing = #c6d0f5 50 | grayIconBubble_incoming = #b5bfe2 51 | grayIconBubble_outgoing = #b5bfe2 52 | accentIconBubble_incoming = #b5bfe2 53 | accentIconBubble_outgoing = #c6d0f5CC 54 | linkBubble_incoming = #74c7e6 55 | //sapphirelinkBubble_outgoing = #74c7e6 56 | //sapphire #c6d0f5_incoming = #c6d0f5 #c6d0f5_outgoing = #c6d0f5 57 | selectMessageBubble = #51576d 58 | fileActivityBackground = #8caaeeCC 59 | fileActivityForeground = #c6d0f5 60 | fileActivityBackgroundBubble_incoming = #b5bfe2 61 | fileActivityBackgroundBubble_outgoing = #c6d0f5 62 | fileActivityForegroundBubble_incoming = #51576d 63 | fileActivityForegroundBubble_outgoing = #99d1db 64 | waveformBackground = #b5bfe2B3 65 | waveformForeground = #8caaeeCC 66 | waveformBackgroundBubble_incoming = #b5bfe2 67 | waveformBackgroundBubble_outgoing = #b5bfe2 68 | waveformForegroundBubble_incoming = #c6d0f5 69 | waveformForegroundBubble_outgoing = #c6d0f5 70 | webPreviewActivity = #74c7e6 71 | //sapphirewebPreviewActivityBubble_incoming = #c6d0f5 72 | webPreviewActivityBubble_outgoing = #c6d0f5 73 | redBubble_incoming = #e78284 74 | redBubble_outgoing = #e78284 75 | greenBubble_incoming = #a6d189 76 | greenBubble_outgoing = #a6d189 77 | chatReplyTitle = #74c7e6 78 | //sapphirechatReplyTextEnabled = #c6d0f5 79 | c#838ba7yTextDisabled = #b5bfe2 80 | chatReplyTitleBubble_incoming = #c6d0f5 81 | chatReplyTitleBubble_outgoing = #c6d0f5 82 | chatReplyTextEnabledBubble_incoming = #c6d0f5 83 | chatReplyTextEnabledBubble_outgoing = #c6d0f5 84 | c#838ba7yTextDisabledBuboming = #b5bfe2 85 | c#838ba7yTextDisabledBubgoing = #b5bfe2 86 | groupPeerNameRed = #e78284 87 | groupPeerNameOrange = #ef9f76 88 | groupPeerNameViolet = #ca9ee6 89 | groupPeerNameGreen = #81c8be 90 | groupPeerNameCyan = #81c8be 91 | groupPeerNameLightBlue = #74c7e6 92 | //sapphiregroupPeerNameBlue = #8caaee 93 | peerAvatarRedTop = #ef9f76 94 | peerAvatarRedBottom = #ea999c 95 | peerAvatarOrangeTop = #e5c890 96 | peerAvatarOrangeBottom = #ef9f76 97 | peerAvatarVioletTop = #babbf1 98 | peerAvatarVioletBottom = #babbf1 99 | peerAvatarGreenTop = #a6d189 100 | peerAvatarGreenBottom = #a6d189 101 | peerAvatarCyanTop = #81c8be 102 | peerAvatarCyanBottom = #81c8be 103 | peerAvatarBlueTop = #99d1db 104 | peerAvatarBlueBottom = #74c7e6 105 | //sapphirepeerAvatarPinkTop = #81c8be 106 | peerAvatarPinkBottom = #ca9ee6 107 | bubbleBackgroundHighlight_incoming = #51576d 108 | bubbleBackgroundHighlight_outgoing = #99d1db 109 | chatDateActive = #414559 110 | c#838ba7Text = #b5bfe2 111 | revealAction_neutral1_background = #8caaee 112 | revealAction_neutral1_foreground = #c6d0f5 113 | revealAction_neutral2_background = #eebebe 114 | revealAction_neutral2_foreground = #c6d0f5 115 | revealAction_destructive_background = #e78284 116 | revealAction_destructive_foreground = #c6d0f5 117 | revealAction_constructive_background = #a6d189 118 | revealAction_constructive_foreground = #c6d0f5 119 | revealAction_accent_background = #8caaee 120 | revealAction_accent_foreground = #c6d0f5 121 | revealAction_warning_background = #eebebe 122 | revealAction_warning_foreground = #c6d0f5 123 | revealAction_inactive_background = #51576d 124 | revealAction_inactive_foreground = #c6d0f5 125 | //Parameter is usually using for minimalistic chat mode, but also works as fallback for bubbles if wallpaper not installed 126 | chatBackground = #414559 127 | listBackground = #414559 128 | l#838ba7Text = #b5bfe2 129 | grayHighlight = #414559 130 | focusAnimationColor = #74c7e6 131 | //sapphirepremium = #ca9ee6 132 | //Parameter only affects bubble chat mode. Available values=none, builtin, hexColor or url to cloud backgound like a t.me/bg/%slug% 133 | wallpaper = t.me/bg/dKs_8KaE6EjOAAAAJdGVJxSR5uU 134 | -------------------------------------------------------------------------------- /src/latte/android: -------------------------------------------------------------------------------- 1 | name: Catppuccin Latte 2 | shortname: ctp_latte 3 | actionBarActionModeDefault: #eff1f5 4 | actionBarActionModeDefaultIcon: #9ca0b0 5 | actionBarActionModeDefaultSelector: #bcc0cc 6 | actionBarActionModeDefaultTop: #00000010 7 | actionBarBrowser: #eff1f5 8 | actionBarDefault: #dce0e8 9 | actionBarDefaultArchived: #dce0e8 10 | actionBarDefaultArchivedIcon: #6c6f85 11 | actionBarDefaultArchivedSearch: #6c6f85 12 | actionBarDefaultArchivedSelector: #7c7f93 13 | actionBarDefaultArchivedTitle: #4c4f69 14 | actionBarDefaultIcon: #6c6f85 15 | actionBarDefaultSearch: #6c6f85 16 | actionBarDefaultSearchArchivedPlaceholder: #dce0e888 17 | actionBarDefaultSearchPlaceholder: #dce0e888 18 | actionBarDefaultSelector: #7c7f93 19 | actionBarDefaultSubmenuBackground: #eff1f5 20 | actionBarDefaultSubmenuItem: #4c4f69 21 | actionBarDefaultSubmenuItemIcon: #6c6f85 22 | actionBarDefaultSubtitle: #8c8fa1 23 | actionBarDefaultTitle: #4c4f69 24 | actionBarTabActiveText: #4c4f69 25 | actionBarTabLine: #4c4f69 26 | actionBarTabSelector: #bcc0cc 27 | actionBarTabUnactiveText: #8c8fa1 28 | actionBarWhiteSelector: #7c7f93 29 | avatar_actionBarIconBlue: #6c6f85 30 | avatar_actionBarSelectorBlue: #7c7f93 31 | avatar_backgroundActionBarBlue: #dce0e8 32 | avatar_backgroundArchived: #8c8fa1 33 | avatar_backgroundArchivedHidden: #8c8fa1 34 | avatar_backgroundBlue: #1e66f5 35 | avatar_backgroundCyan: #179299 36 | avatar_backgroundGreen: #40a02b 37 | avatar_backgroundGroupCreateSpanBlue: #dc8a78 38 | avatar_backgroundInProfileBlue: #dc2286 39 | avatar_backgroundOrange: #fe640b 40 | avatar_backgroundPink: #ea76cb 41 | avatar_backgroundRed: #d20f39 42 | avatar_backgroundSaved: #8839ef 43 | avatar_backgroundViolet: #8839ef 44 | avatar_nameInMessageBlue: #1e66f5 45 | avatar_nameInMessageCyan: #179299 46 | avatar_nameInMessageGreen: #40a02b 47 | avatar_nameInMessageOrange: #fe640b 48 | avatar_nameInMessagePink: #ea76cb 49 | avatar_nameInMessageRed: #d20f39 50 | avatar_nameInMessageViolet: #8839ef 51 | avatar_subtitleInProfileBlue: #8c8fa1 52 | avatar_text: #eff1f5 53 | calls_callReceivedGreenIcon: #40a02b 54 | calls_callReceivedRedIcon: #d20f39 55 | changephoneinfo_image2: #1e66f5 56 | changephoneinfo_image: #4c4f69 57 | chat_addContact: #8839ef 58 | chat_adminSelectedText: #4c4f69 59 | chat_adminText: #4c4f69 60 | chat_attachActiveTab: #1e66f5 61 | chat_attachAudioBackground: #d20f39 62 | chat_attachAudioIcon: #eff1f5 63 | chat_attachCheckBoxBackground: #1e66f5 64 | chat_attachCheckBoxCheck: #eff1f5 65 | chat_attachContactBackground: #df8e1d 66 | chat_attachContactIcon: #eff1f5 67 | chat_attachEmptyImage: #9ca0b0 68 | chat_attachFileBackground: #179299 69 | chat_attachFileIcon: #eff1f5 70 | chat_attachGalleryBackground: #1e66f5 71 | chat_attachGalleryIcon: #eff1f5 72 | chat_attachLocationBackground: #40a02b 73 | chat_attachLocationIcon: #eff1f5 74 | chat_attachMediaBanBackground: #7c7f93 75 | chat_attachMediaBanText: #eff1f5 76 | chat_attachPermissionImage: #eff1f5 77 | chat_attachPermissionMark: #d20f39 78 | chat_attachPermissionText: #6c6f85 79 | chat_attachPhotoBackground: #00000008 80 | chat_attachPollBackground: #df8e1d 81 | chat_attachPollIcon: #eff1f5 82 | chat_attachUnactiveTab: #6c6f85 83 | chat_botButtonText: #eff1f5 84 | chat_botKeyboardButtonBackground: #8839ef 85 | chat_botKeyboardButtonBackgroundPressed: #ea76cb 86 | chat_botKeyboardButtonText: #eff1f5 87 | chat_botProgress: #eff1f5 88 | chat_botSwitchToInlineText: #dc8a78 89 | chat_emojiBottomPanelIcon: #7c7f93 90 | chat_emojiPanelBackground: #dce0e8 91 | chat_emojiPanelBackspace: #7c7f93 92 | chat_emojiPanelBadgeBackground: #1e66f5 93 | chat_emojiPanelBadgeText: #eff1f5 94 | chat_emojiPanelEmptyText: #7c7f93 95 | chat_emojiPanelIcon: #7c7f93 96 | chat_emojiPanelIconSelected: #1e66f5 97 | chat_emojiPanelMasksIcon: #eff1f5 98 | chat_emojiPanelMasksIconSelected: #1e66f5 99 | chat_emojiPanelNewTrending: #1e66f5 100 | chat_emojiPanelShadowLine: #00000012 101 | chat_emojiPanelStickerPackSelector: #acb0be 102 | chat_emojiPanelStickerPackSelectorLine: #acb0be 103 | chat_emojiPanelStickerSetName: #6c6f85 104 | chat_emojiPanelStickerSetNameHighlight: #6c6f85 105 | chat_emojiPanelStickerSetNameIcon: #6c6f85 106 | chat_emojiPanelTrendingDescription: #6c6f85 107 | chat_emojiPanelTrendingTitle: #4c4f69 108 | chat_emojiSearchBackground: #ccd0da 109 | chat_emojiSearchIcon: #6c6f85 110 | chat_fieldOverlayText: #6c6f85 111 | chat_gifSaveHintBackground: #000000CC 112 | chat_gifSaveHintText: #eff1f5 113 | chat_goDownButton: #eff1f5 114 | chat_goDownButtonCounter: #eff1f5 115 | chat_goDownButtonCounterBackground: #40a02b 116 | chat_goDownButtonIcon: #6c6f85 117 | chat_goDownButtonShadow: #000000 118 | chat_inAudioCacheSeekbar: #eff1f53F 119 | chat_inAudioDurationSelectedText: #4c4f69 120 | chat_inAudioDurationText: #6c6f85 121 | chat_inAudioPerfomerSelectedText: #4c4f69 122 | chat_inAudioPerfomerText: #4c4f69 123 | chat_inAudioProgress: #1e66f5 124 | chat_inAudioSeekbar: #9ca0b0 125 | chat_inAudioSeekbarFill: #dc8a78 126 | chat_inAudioSeekbarSelected: #9ca0b0 127 | chat_inAudioSelectedProgress: #dc8a78 128 | chat_inAudioTitleText: #1e66f5 129 | chat_inBubble: #eff1f5 130 | chat_inBubbleSelected: #ccd0da 131 | chat_inBubbleShadow: #00000000 132 | chat_inContactBackground: #40a02b 133 | chat_inContactIcon: #eff1f5 134 | chat_inContactNameText: #40a02b 135 | chat_inContactPhoneSelectedText: #4c4f69 136 | chat_inContactPhoneText: #6c6f85 137 | chat_inDownCall: #40a02b 138 | chat_inFileBackground: #179299 139 | chat_inFileBackgroundSelected: #179299 140 | chat_inFileIcon: #eff1f5 141 | chat_inFileInfoSelectedText: #4c4f69 142 | chat_inFileInfoText: #6c6f85 143 | chat_inFileNameText: #dc8a78 144 | chat_inFileProgress: #6c6f85 145 | chat_inFileProgressSelected: #6c6f85 146 | chat_inFileSelectedIcon: #eff1f5 147 | chat_inForwardedNameText: #8839ef 148 | chat_inInstant: #8839ef 149 | chat_inInstantSelected: #8839ef 150 | chat_inLoader: #4c4f69 151 | chat_inLoaderPhoto: #4c4f69 152 | chat_inLoaderPhotoIcon: #eff1f5 153 | chat_inLoaderPhotoIconSelected: #eff1f5 154 | chat_inLoaderPhotoSelected: #4c4f69 155 | chat_inLoaderSelected: #4c4f69 156 | chat_inLocationBackground: #40a02b 157 | chat_inLocationIcon: #eff1f5 158 | chat_inMediaIcon: #eff1f5 159 | chat_inMediaIconSelected: #eff1f5 160 | chat_inMenu: #9ca0b0 161 | chat_inMenuSelected: #9ca0b0 162 | chat_inPreviewInstantSelectedText: #4c4f69 163 | chat_inPreviewInstantText: #4c4f69 164 | chat_inPreviewLine: #1e66f5 165 | chat_inReplyLine: #dc8a78 166 | chat_inReplyMediaMessageSelectedText: #9ca0b0 167 | chat_inReplyMediaMessageText: #9ca0b0 168 | chat_inReplyMessageText: #9ca0b0 169 | chat_inReplyNameText: #dc8a78 170 | chat_inSentClock: #9ca0b0 171 | chat_inSentClockSelected: #9ca0b0 172 | chat_inSiteNameText: #dc8a78 173 | chat_inTimeSelectedText: #4c4f69 174 | chat_inTimeText: #9ca0b0 175 | chat_inUpCall: #d20f39 176 | chat_inVenueInfoSelectedText: #4c4f69 177 | chat_inVenueInfoText: #4c4f69 178 | chat_inViaBotNameText: #1e66f5 179 | chat_inViews: #4c4f69 180 | chat_inViewsSelected: #4c4f69 181 | chat_inVoiceSeekbar: #9ca0b0 182 | chat_inVoiceSeekbarFill: #4c4f69 183 | chat_inVoiceSeekbarSelected: #9ca0b0 184 | chat_inlineResultIcon: #1e66f5 185 | chat_linkSelectBackground: #1e66f533 186 | chat_lockIcon: #eff1f5 187 | chat_mediaBroadcast: #eff1f5 188 | chat_mediaInfoText: #eff1f5 189 | chat_mediaLoaderPhoto: #00000066 190 | chat_mediaLoaderPhotoIcon: #eff1f5 191 | chat_mediaLoaderPhotoIconSelected: #eff1f5 192 | chat_mediaLoaderPhotoSelected: #0000007F 193 | chat_mediaMenu: #eff1f5 194 | chat_mediaProgress: #eff1f5 195 | chat_mediaSentCheck: #eff1f5 196 | chat_mediaSentClock: #eff1f5 197 | chat_mediaTimeBackground: #00000066 198 | chat_mediaTimeText: #eff1f5 199 | chat_mediaViews: #eff1f5 200 | chat_messageLinkIn: #dc8a78 201 | chat_messageLinkOut: #dc8a78 202 | chat_messagePanelBackground: #eff1f5 203 | chat_messagePanelCancelInlineBot: #9ca0b0 204 | chat_messagePanelCursor: #dc8a78 205 | chat_messagePanelHint: #9ca0b0 206 | chat_messagePanelIcons: #6c6f85 207 | chat_messagePanelPressedSend: #4c4f69 208 | chat_messagePanelSend: #6c6f85 209 | chat_messagePanelShadow: #00000000 210 | chat_messagePanelText: #4c4f69 211 | chat_messagePanelVideoFrame: #8839ef 212 | chat_messagePanelVoiceBackground: #8839ef 213 | chat_messagePanelVoiceDelete: #dce0e8 214 | chat_messagePanelVoiceDuration: #9ca0b0 215 | chat_messagePanelVoicePressed: #eff1f5 216 | chat_messagePanelVoiceShadow: #0000000D 217 | chat_messageTextIn: #4c4f69 218 | chat_messageTextOut: #4c4f69 219 | chat_muteIcon: #9ca0b0 220 | chat_outAudioCacheSeekbar: #eff1f53F 221 | chat_outAudioDurationSelectedText: #4c4f69 222 | chat_outAudioDurationText: #6c6f85 223 | chat_outAudioPerfomerSelectedText: #4c4f69 224 | chat_outAudioPerfomerText: #4c4f69 225 | chat_outAudioProgress: #1e66f5 226 | chat_outAudioSeekbar: #9ca0b0 227 | chat_outAudioSeekbarFill: #dc8a78 228 | chat_outAudioSeekbarSelected: #9ca0b0 229 | chat_outAudioSelectedProgress: #dc8a78 230 | chat_outAudioTitleText: #1e66f5 231 | chat_outBroadcast: #40a02b 232 | chat_outBubble: #e6e9ef 233 | chat_outBubbleSelected: #ccd0da 234 | chat_outBubbleShadow: #00000000 235 | chat_outContactBackground: #40a02b 236 | chat_outContactIcon: #eff1f5 237 | chat_outContactNameText: #40a02b 238 | chat_outContactPhoneSelectedText: #4c4f69 239 | chat_outContactPhoneText: #6c6f85 240 | chat_outFileBackground: #179299 241 | chat_outFileBackgroundSelected: #179299 242 | chat_outFileIcon: #eff1f5 243 | chat_outFileInfoSelectedText: #4c4f69 244 | chat_outFileInfoText: #6c6f85 245 | chat_outFileNameText: #dc8a78 246 | chat_outFileProgress: #6c6f85 247 | chat_outFileProgressSelected: #6c6f85 248 | chat_outFileSelectedIcon: #eff1f5 249 | chat_outForwardedNameText: #8839ef 250 | chat_outInstant: #8839ef 251 | chat_outInstantSelected: #8839ef 252 | chat_outLoader: #4c4f69 253 | chat_outLoaderPhoto: #4c4f69 254 | chat_outLoaderPhotoIcon: #eff1f5 255 | chat_outLoaderPhotoIconSelected: #eff1f5 256 | chat_outLoaderPhotoSelected: #4c4f69 257 | chat_outLoaderSelected: #4c4f69 258 | chat_outLocationBackground: #40a02b 259 | chat_outLocationIcon: #eff1f5 260 | chat_outMediaIcon: #eff1f5 261 | chat_outMediaIconSelected: #eff1f5 262 | chat_outMenu: #9ca0b0 263 | chat_outMenuSelected: #9ca0b0 264 | chat_outPreviewInstantSelectedText: #4c4f69 265 | chat_outPreviewInstantText: #4c4f69 266 | chat_outPreviewLine: #1e66f5 267 | chat_outReplyLine: #dc8a78 268 | chat_outReplyMediaMessageSelectedText: #9ca0b0 269 | chat_outReplyMediaMessageText: #9ca0b0 270 | chat_outReplyMessageText: #9ca0b0 271 | chat_outReplyNameText: #dc8a78 272 | chat_outSentCheck: #9ca0b0 273 | chat_outSentCheckRead: #9ca0b0 274 | chat_outSentCheckReadSelected: #dc8a78 275 | chat_outSentCheckSelected: #dc8a78 276 | chat_outSentClock: #9ca0b0 277 | chat_outSentClockSelected: #9ca0b0 278 | chat_outSiteNameText: #dc8a78 279 | chat_outTimeSelectedText: #4c4f69 280 | chat_outTimeText: #9ca0b0 281 | chat_outUpCall: #40a02b 282 | chat_outVenueInfoSelectedText: #4c4f69 283 | chat_outVenueInfoText: #4c4f69 284 | chat_outViaBotNameText: #1e66f5 285 | chat_outViews: #4c4f69 286 | chat_outViewsSelected: #4c4f69 287 | chat_outVoiceSeekbar: #9ca0b0 288 | chat_outVoiceSeekbarFill: #4c4f69 289 | chat_outVoiceSeekbarSelected: #9ca0b0 290 | chat_previewDurationText: #eff1f5 291 | chat_previewGameText: #eff1f5 292 | chat_recordTime: #4c4f69 293 | chat_recordVoiceCancel: #9ca0b0 294 | chat_recordedVoiceBackground: #8839ef 295 | chat_recordedVoiceDot: #eff1f5 296 | chat_recordedVoicePlayPause: #eff1f5 297 | chat_recordedVoicePlayPausePressed: #eff1f5 298 | chat_recordedVoiceProgress: #9ca0b0 299 | chat_recordedVoiceProgressInner: #4c4f69 300 | chat_replyPanelClose: #9ca0b0 301 | chat_replyPanelIcons: #dc8a78 302 | chat_replyPanelLine: #dc8a78 303 | chat_replyPanelMessage: #4c4f69 304 | chat_replyPanelName: #dc8a78 305 | chat_reportSpam: #e64553 306 | chat_searchPanelIcons: #9ca0b0 307 | chat_searchPanelText: #4c4f69 308 | chat_secretChatStatusText: #9ca0b0 309 | chat_secretTimeText: #4c4f69 310 | chat_secretTimerBackground: #eff1f5CC 311 | chat_secretTimerText: #eff1f5 312 | chat_selectedBackground: #dce0e844 313 | chat_sentError: #e64553 314 | chat_sentErrorIcon: #eff1f5 315 | chat_serviceIcon: #eff1f5 316 | chat_serviceLink: #eff1f5 317 | chat_serviceText: #eff1f5 318 | chat_serviceBackground: #7287fd 319 | chat_shareBackground: #9ca0b066 320 | chat_shareBackgroundSelected: #9ca0b099 321 | chat_status: #40a02b 322 | chat_stickerNameText: #eff1f5 323 | chat_stickerReplyLine: #eff1f5 324 | chat_stickerReplyMessageText: #eff1f5 325 | chat_stickerReplyNameText: #eff1f5 326 | chat_stickerViaBotNameText: #eff1f5 327 | chat_stickersHintPanel: #eff1f5 328 | chat_textSelectBackground: #9ca0b066 329 | chat_topPanelBackground: #e6e9ef 330 | chat_topPanelClose: #6c6f85 331 | chat_topPanelLine: #6c6f85 332 | chat_topPanelMessage: #6c6f85 333 | chat_topPanelTitle: #6c6f85 334 | chat_unreadMessagesStartArrowIcon: #eff1f5 335 | chat_unreadMessagesStartBackground: #8839ef 336 | chat_unreadMessagesStartText: #eff1f5 337 | chats_actionBackground: #40a02b 338 | chats_actionIcon: #eff1f5 339 | chats_actionMessage: #6c6f85 340 | chats_actionPressedBackground: #ea76cb 341 | chats_actionUnreadBackground: #40a02b 342 | chats_actionUnreadIcon: #eff1f5 343 | chats_actionUnreadPressedBackground: #40a02b 344 | chats_archiveBackground: #ccd0da 345 | chats_archiveIcon: #4c4f69 346 | chats_archivePinBackground: #acb0be 347 | chats_archiveText: #4c4f69 348 | chats_attachMessage: #1e66f5 349 | chats_date: #acb0be 350 | chats_draft: #8839ef 351 | chats_mentionIcon: #eff1f5 352 | chats_menuBackground: #eff1f5 353 | chats_menuCloud: #eff1f5 354 | chats_menuCloudBackgroundCats: #1e66f5 355 | chats_menuItemCheck: #dc2286 356 | chats_menuItemIcon: #9ca0b0 357 | chats_menuItemText: #6c6f85 358 | chats_menuName: #4c4f69 359 | chats_menuPhone: #6c6f85 360 | chats_menuPhoneCats: #6c6f85 361 | chats_menuTopBackgroundCats: #dce0e8 362 | chats_message: #4c4f69 363 | chats_messageArchived: #6c6f85 364 | chats_message_threeLines: #6c6f85 365 | chats_muteIcon: #9ca0b0 366 | chats_name: #4c4f69 367 | chats_nameArchived: #6c6f85 368 | chats_nameIcon: #4c4f69 369 | chats_nameMessage: #1e66f5 370 | chats_nameMessageArchived: #1e66f5 371 | chats_nameMessageArchived_threeLines: #1e66f5 372 | chats_nameMessage_threeLines: #1e66f5 373 | chats_onlineCircle: #40a02b 374 | chats_pinnedIcon: #6c6f85 375 | chats_pinnedOverlay: #e6e9ef 376 | chats_secretIcon: #40a02b 377 | chats_secretName: #40a02b 378 | chats_sentCheck: #40a02b 379 | chats_sentClock: #40a02b 380 | chats_sentError: #e64553 381 | chats_sentErrorIcon: #eff1f5 382 | chats_sentReadCheck: #40a02b 383 | chats_tabletSelectedOverlay: #0000000F 384 | chats_unreadCounter: #40a02b 385 | chats_unreadCounterMuted: #9ca0b0 386 | chats_unreadCounterText: #eff1f5 387 | chats_verifiedBackground: #1e66f5 388 | chats_verifiedCheck: #eff1f5 389 | checkbox: #40a02b 390 | checkboxCheck: #eff1f5 391 | checkboxDisabled: #9ca0b0 392 | checkboxSquareBackground: #1e66f5 393 | checkboxSquareCheck: #eff1f5 394 | checkboxSquareDisabled: #9ca0b0 395 | checkboxSquareUnchecked: #6c6f85 396 | contacts_inviteBackground: #40a02b 397 | contacts_inviteText: #eff1f5 398 | contextProgressInner1: #1e66f5 399 | contextProgressInner2: #1e66f5 400 | contextProgressInner3: #9ca0b0 401 | contextProgressInner4: #9ca0b0 402 | contextProgressOuter1: #40a02b 403 | contextProgressOuter2: #eff1f5 404 | contextProgressOuter3: #eff1f5 405 | contextProgressOuter4: #4c4f69 406 | dialogBackground: #eff1f5 407 | dialogBackgroundGray: #dce0e8 408 | dialogBadgeBackground: #1e66f5 409 | dialogBadgeText: #eff1f5 410 | dialogButton: #1e66f5 411 | dialogButtonSelector: #0000000F 412 | dialogCameraIcon: #eff1f5 413 | dialogCheckboxSquareBackground: #1e66f5 414 | dialogCheckboxSquareCheck: #eff1f5 415 | dialogCheckboxSquareDisabled: #9ca0b0 416 | dialogCheckboxSquareUnchecked: #6c6f85 417 | dialogFloatingButton: #1e66f5 418 | dialogFloatingButtonPressed: #1e66f5 419 | dialogFloatingIcon: #eff1f5 420 | dialogGrayLine: #9ca0b0 421 | dialogIcon: #4c4f69 422 | dialogInputField: #6c6f85 423 | dialogInputFieldActivated: #1e66f5 424 | dialogLineProgress: #1e66f5 425 | dialogLineProgressBackground: #9ca0b0 426 | dialogLinkSelection: #1e66f533 427 | dialogProgressCircle: #1e66f5 428 | dialogRadioBackground: #9ca0b0 429 | dialogRadioBackgroundChecked: #1e66f5 430 | dialogRedIcon: #e64553 431 | dialogRoundCheckBox: #1e66f5 432 | dialogRoundCheckBoxCheck: #eff1f5 433 | dialogScrollGlow: #e6e9ef 434 | dialogSearchBackground: #6c6f85 435 | dialogSearchHint: #dce0e8 436 | dialogSearchIcon: #dce0e8 437 | dialogSearchText: #4c4f69 438 | dialogShadowLine: #00000012 439 | dialogTextBlack: #4c4f69 440 | dialogTextBlue2: #1e66f5 441 | dialogTextBlue3: #1e66f5 442 | dialogTextBlue4: #1e66f5 443 | dialogTextBlue: #2F81e66f5CC9 444 | dialogTextGray2: #5c5f77 445 | dialogTextGray3: #5c5f77 446 | dialogTextGray4: #6c6f85 447 | dialogTextGray: #6c6f85 448 | dialogTextHint: #6c6f85 449 | dialogTextLink: #dc8a78 450 | dialogTextRed2: #e64553 451 | dialogTextRed: #e64553 452 | dialogTopBackground: #1e66f5 453 | dialog_inlineProgress: #6c6f85 454 | dialog_inlineProgressBackground: #dce0e8F6 455 | dialog_liveLocationProgress: #1e66f5 456 | divider: #00000000 457 | emptyListPlaceholder: #9ca0b0 458 | fastScrollActive: #1e66f5 459 | fastScrollInactive: #9ca0b0 460 | fastScrollText: #eff1f5 461 | featuredStickers_addButton: #1e66f5 462 | featuredStickers_addButtonPressed: #1e66f5 463 | featuredStickers_addedIcon: #1e66f5 464 | featuredStickers_buttonProgress: #eff1f5 465 | featuredStickers_buttonText: #eff1f5 466 | featuredStickers_delButton: #e64553 467 | featuredStickers_delButtonPressed: #e64553 468 | featuredStickers_unread: #1e66f5 469 | files_folderIcon: #999999 470 | files_folderIconBackground: #bcc0cc 471 | files_iconText: #eff1f5 472 | graySection: #bcc0cc 473 | groupcreate_cursor: #dc8a78 474 | groupcreate_hintText: #9ca0b0 475 | groupcreate_sectionShadow: #00000000 476 | groupcreate_sectionText: #6c6f85 477 | groupcreate_spanBackground: #bcc0cc 478 | groupcreate_spanDelete: #e64553 479 | groupcreate_spanText: #4c4f69 480 | inappPlayerBackground: #e6e9ef 481 | inappPlayerClose: #6c6f85 482 | inappPlayerPerformer: #4c4f69 483 | inappPlayerPlayPause: #1e66f5 484 | inappPlayerTitle: #6c6f85 485 | key_chat_messagePanelVoiceLock: #A4A4A4 486 | key_chat_messagePanelVoiceLockBackground: #eff1f5 487 | key_chat_messagePanelVoiceLockShadow: #000000 488 | key_graySectionText: #7F8991 489 | key_player_progressCachedBackground: #E9EFF5 490 | key_sheet_other: #C9CDD3 491 | key_sheet_scrollUp: #E1E4E8 492 | listSelectorSDK21: #0000000F 493 | location_liveLocationProgress: #359FE5 494 | location_placeLocationBackground: #4CA8EA 495 | location_sendLiveLocationBackground: #FF6464 496 | location_sendLiveLocationIcon: #eff1f5 497 | location_sendLocationBackground: #6DA0D4 498 | location_sendLocationIcon: #eff1f5 499 | login_progressInner: #E1EAF2 500 | login_progressOuter: #62A0D0 501 | musicPicker_buttonBackground: #5CAFEA 502 | musicPicker_buttonIcon: #eff1f5 503 | musicPicker_checkbox: #29B6F7 504 | musicPicker_checkboxCheck: #eff1f5 505 | passport_authorizeBackground: #45ABEF 506 | passport_authorizeBackgroundSelected: #409DDB 507 | passport_authorizeText: #eff1f5 508 | picker_badge: #29B6F7 509 | picker_badgeText: #eff1f5 510 | picker_disabledButton: #999999 511 | picker_enabledButton: #19A7E8 512 | player_actionBar: #eff1f5 513 | player_actionBarItems: #8A8A8A 514 | player_actionBarSelector: #0000000F 515 | player_actionBarSubtitle: #8A8A8A 516 | player_actionBarTitle: #2F3438 517 | player_actionBarTop: #00000099 518 | player_background: #eff1f5 519 | player_button: #333333 520 | player_buttonActive: #4CA8EA 521 | player_placeholder: #A8A8A8 522 | player_placeholderBackground: #F0F0F0 523 | player_progress: #4B9FE3 524 | player_progressBackground: #E9EFF5 525 | player_time: #8C9296 526 | profile_actionBackground: #4c4f69 527 | profile_actionIcon: #eff1f5 528 | profile_actionPressedBackground: #4c4f69 529 | profile_creatorIcon: #1e66f5 530 | profile_status: #9ca0b0 531 | profile_title: #4c4f69 532 | profile_verifiedBackground: #1e66f5 533 | profile_verifiedCheck: #eff1f5 534 | progressCircle: #527DA3 535 | radioBackground: #B3B3B3 536 | radioBackgroundChecked: #37A9F0 537 | returnToCallBackground: #44A1E3 538 | returnToCallText: #eff1f5 539 | sessions_devicesImage: #969696 540 | sharedMedia_actionMode: #4687B3 541 | sharedMedia_linkPlaceholder: #F0F3F5 542 | sharedMedia_linkPlaceholderText: #B7BEC3 543 | sharedMedia_photoPlaceholder: #EDF3F7 544 | sharedMedia_startStopLoadIcon: #36A2EE 545 | stickers_menu: #B6BDC5 546 | stickers_menuSelector: #0000000F 547 | switch2Track: #9ca0b0 548 | switch2TrackChecked: #40a02b 549 | switchTrack: #9ca0b0 550 | switchTrackBlue: #9ca0b0 551 | switchTrackBlueChecked: #40a02b 552 | switchTrackBlueSelector: #404A5317 553 | switchTrackBlueSelectorChecked: #02478121 554 | switchTrackBlueThumb: #eff1f5 555 | switchTrackBlueThumbChecked: #eff1f5 556 | switchTrackChecked: #40a02b 557 | undo_background: #272F38EA 558 | undo_cancelColor: #85CAFF 559 | undo_infoColor: #eff1f5 560 | windowBackgroundCheckText: #eff1f5 561 | windowBackgroundChecked: #1e66f5 562 | windowBackgroundGray: #e6e9ef 563 | windowBackgroundGrayShadow: #00000000 564 | windowBackgroundUnchecked: #9ca0b0 565 | windowBackgroundWhite: #eff1f5 566 | windowBackgroundWhiteBlackText: #4c4f69 567 | windowBackgroundWhiteBlueButton: #1e66f5 568 | windowBackgroundWhiteBlueHeader: #1e66f5 569 | windowBackgroundWhiteBlueIcon: #1e66f5 570 | windowBackgroundWhiteBlueText2: #1e66f5 571 | windowBackgroundWhiteBlueText3: #1e66f5 572 | windowBackgroundWhiteBlueText4: #1e66f5 573 | windowBackgroundWhiteBlueText5: #1e66f5 574 | windowBackgroundWhiteBlueText6: #1e66f5 575 | windowBackgroundWhiteBlueText7: #1e66f5 576 | windowBackgroundWhiteBlueText: #1e66f5 577 | windowBackgroundWhiteGrayIcon: #9ca0b0 578 | windowBackgroundWhiteGrayLine: #98A0A7 579 | windowBackgroundWhiteGrayText2: #6c6f85 580 | windowBackgroundWhiteGrayText3: #6c6f85 581 | windowBackgroundWhiteGrayText4: #6c6f85 582 | windowBackgroundWhiteGrayText5: #6c6f85 583 | windowBackgroundWhiteGrayText6: #6c6f85 584 | windowBackgroundWhiteGrayText7: #6c6f85 585 | windowBackgroundWhiteGrayText8: #6c6f85 586 | windowBackgroundWhiteGrayText: #6c6f85 587 | windowBackgroundWhiteGreenText2: #40a02b 588 | windowBackgroundWhiteGreenText: #40a02b 589 | windowBackgroundWhiteHintText: #98A0A7 590 | windowBackgroundWhiteInputField: #F2F4F5 591 | windowBackgroundWhiteInputFieldActivated: #1e66f5 592 | windowBackgroundWhiteLinkSelection: #dc8a7833 593 | windowBackgroundWhiteLinkText: #dc8a78 594 | windowBackgroundWhiteRedText2: #e64553 595 | windowBackgroundWhiteRedText3: #e64553 596 | windowBackgroundWhiteRedText4: #e64553 597 | windowBackgroundWhiteRedText5: #e64553 598 | windowBackgroundWhiteRedText6: #e64553 599 | windowBackgroundWhiteRedText: #e64553 600 | windowBackgroundWhiteValueText: #1e66f5 601 | -------------------------------------------------------------------------------- /src/latte/ios: -------------------------------------------------------------------------------- 1 | name: Catppuccin Latte 2 | shortname: ctp_latte 3 | dark: true 4 | intro_statusBar: black 5 | intro_primaryText: #4c4f69 6 | intro_accentText: #40a02b 7 | intro_disabledText: #575b55 8 | intro_startButton: #40a02b 9 | intro_dot: #5c5f77 10 | passcode_bg_top: #acb0be 11 | passcode_bg_bottom: #eff1f5 12 | passcode_button: #ccd0da 13 | root_statusBar: black 14 | root_tabBar_background: #ccd0da 15 | root_tabBar_separator: #dce0e8 16 | root_tabBar_icon: #8c8fa1 17 | root_tabBar_selectedIcon: #40a02b 18 | root_tabBar_text: #8c8fa1 19 | root_tabBar_selectedText: #40a02b 20 | root_tabBar_badgeBackground: #d20f39 21 | root_tabBar_badgeStroke: #d20f39 22 | root_tabBar_badgeText: #dce0e8 23 | root_navBar_button: #40a02b 24 | root_navBar_disabledButton: #575b55 25 | root_navBar_primaryText: #4c4f69 26 | root_navBar_secondaryText: #5c5f77 27 | root_navBar_control: #5c5f77 28 | root_navBar_accentText: #40a02b 29 | root_navBar_background: #ccd0da 30 | root_navBar_opaqueBackground: #ccd0da 31 | root_navBar_separator: #dce0e8 32 | root_navBar_badgeFill: #d20f39 33 | root_navBar_badgeStroke: #d20f39 34 | root_navBar_badgeText: #dce0e8 35 | root_navBar_segmentedBg: #eff1f5 36 | root_navBar_segmentedFg: #ccd0da 37 | root_navBar_segmentedText: #4c4f69 38 | root_navBar_segmentedDivider: #4c4f697F 39 | root_searchBar_background: #ccd0da 40 | root_searchBar_accent: #40a02b 41 | root_searchBar_inputFill: #eff1f5 42 | root_searchBar_inputText: #4c4f69 43 | root_searchBar_inputPlaceholderText: #5c5f77 44 | root_searchBar_inputIcon: #5c5f77 45 | root_searchBar_inputClearButton: #5c5f77 46 | root_searchBar_separator: #eff1f5 47 | root_keyboard: dark 48 | list_blocksBg: #eff1f5 49 | list_plainBg: #eff1f5 50 | list_primaryText: #4c4f69 51 | list_secondaryText: #4c4f697F 52 | list_disabledText: #4c4f697F 53 | list_accent: #40a02b 54 | list_highlighted: #40a02b 55 | list_destructive: #d20f39 56 | list_placeholderText: #4c4f697F 57 | list_itemBlocksBg: #ccd0da 58 | list_itemHighlightedBg: #ccd0da 59 | list_blocksSeparator: #dce0e8 60 | list_plainSeparator: #dce0e8 61 | list_disclosureArrow: #4c4f697F 62 | list_sectionHeaderText: #acb0be 63 | list_freeText: #acb0be 64 | list_freeTextError: #d20f39 65 | list_freeTextSuccess: #40a02b 66 | list_freeMonoIcon: #acb0be 67 | list_switch_frame: #4c4f697F 68 | list_switch_handle: #dce0e8 69 | list_switch_content: #40a02b 70 | list_switch_positive: #40a02b 71 | list_switch_negative: #d20f39 72 | list_disclosureActions_neutral1_bg: #40a02b 73 | list_disclosureActions_neutral1_fg: #ffffff 74 | list_disclosureActions_neutral2_bg: #fe640b 75 | list_disclosureActions_neutral2_fg: #ffffff 76 | list_disclosureActions_destructive_bg: #d20f39 77 | list_disclosureActions_destructive_fg: #ffffff 78 | list_disclosureActions_constructive_bg: #40a02b 79 | list_disclosureActions_constructive_fg: #ffffff 80 | list_disclosureActions_accent_bg: #40a02b 81 | list_disclosureActions_accent_fg: #ffffff 82 | list_disclosureActions_warning_bg: #fe640b 83 | list_disclosureActions_warning_fg: #ffffff 84 | list_disclosureActions_inactive_bg: #eff1f5 85 | list_disclosureActions_inactive_fg: #4c4f69 86 | list_check_bg: #40a02b 87 | list_check_stroke: #4c4f697F 88 | list_check_fg: #dce0e8 89 | list_controlSecondary: #4c4f697F 90 | list_freeInputField_bg: #ccd0da 91 | list_freeInputField_stroke: #ccd0da 92 | list_freeInputField_placeholder: #4c4f697F 93 | list_freeInputField_primary: #4c4f69 94 | list_freeInputField_control: #4c4f697F 95 | list_mediaPlaceholder: #eff1f5 96 | list_scrollIndicator: #4c4f697F 97 | list_pageIndicatorInactive: #4c4f6966 98 | list_inputClearButton: #5c5f77 99 | list_itemBarChart_color1: #40a02b 100 | list_itemBarChart_color2: #4c4f697F 101 | list_itemBarChart_color3: #eff1f5 102 | list_itemInputField_bg: #e6e9ef 103 | list_itemInputField_stroke: #e6e9ef 104 | list_itemInputField_placeholder: #8c8fa1 105 | list_itemInputField_primary: #4c4f69 106 | list_itemInputField_control: #8c8fa1 107 | chatList_bg: #eff1f5 108 | chatList_itemSeparator: #dce0e8 109 | chatList_itemBg: #eff1f5 110 | chatList_pinnedItemBg: #ccd0da 111 | chatList_itemHighlightedBg: #ccd0da 112 | chatList_pinnedItemHighlightedBg: #ccd0da 113 | chatList_itemSelectedBg: #ccd0da 114 | chatList_title: #4c4f69 115 | chatList_secretTitle: #40a02b 116 | chatList_dateText: #4c4f697F 117 | chatList_authorName: #4c4f69 118 | chatList_messageText: #4c4f697F 119 | chatList_messageHighlightedText: #4c4f69 120 | chatList_messageDraftText: #d20f39 121 | chatList_checkmark: #40a02b 122 | chatList_pendingIndicator: #4c4f6966 123 | chatList_failedFill: #d20f39 124 | chatList_failedFg: #4c4f69 125 | chatList_muteIcon: #4c4f6966 126 | chatList_unreadBadgeActiveBg: #40a02b 127 | chatList_unreadBadgeActiveText: #dce0e8 128 | chatList_unreadBadgeInactiveBg: #4c4f6966 129 | chatList_unreadBadgeInactiveText: #eff1f5 130 | chatList_reactionBadgeActiveBg: #d20f39 131 | chatList_pinnedBadge: #4c4f697F 132 | chatList_pinnedSearchBar: #eff1f5 133 | chatList_regularSearchBar: #ccd0da 134 | chatList_sectionHeaderBg: #ccd0da 135 | chatList_sectionHeaderText: #4c4f697F 136 | chatList_verifiedIconBg: #40a02b 137 | chatList_verifiedIconFg: #4c4f69 138 | chatList_secretIcon: #40a02b 139 | chatList_pinnedArchiveAvatar_background_top: #1e66f5 140 | chatList_pinnedArchiveAvatar_background_bottom: #1e66f5 141 | chatList_pinnedArchiveAvatar_foreground: #4c4f69 142 | chatList_unpinnedArchiveAvatar_background_top: #acb0be 143 | chatList_unpinnedArchiveAvatar_background_bottom: #acb0be 144 | chatList_unpinnedArchiveAvatar_foreground: #eff1f5 145 | chatList_onlineDot: #40a02b 146 | chat_animateMessageColors: false 147 | chat_message_incoming_bubble_withWp_bg: #ccd0da 148 | chat_message_incoming_bubble_withWp_gradientBg: #ccd0da 149 | chat_message_incoming_bubble_withWp_highlightedBg: #ccd0da 150 | chat_message_incoming_bubble_withWp_stroke: #ccd0da 151 | chat_message_incoming_bubble_withWp_reactionInactiveBg: #4c4f6911 152 | chat_message_incoming_bubble_withWp_reactionInactiveFg: #4c4f69 153 | chat_message_incoming_bubble_withWp_reactionActiveBg: #40a02b 154 | chat_message_incoming_bubble_withWp_reactionActiveFg: #4c4f69 155 | chat_message_incoming_bubble_withWp_reactionInactiveMediaPlaceholder: #dce0e819 156 | chat_message_incoming_bubble_withWp_reactionActiveMediaPlaceholder: #dce0e819 157 | chat_message_incoming_bubble_withoutWp_bg: #ccd0da 158 | chat_message_incoming_bubble_withoutWp_gradientBg: #ccd0da 159 | chat_message_incoming_bubble_withoutWp_highlightedBg: #ccd0da 160 | chat_message_incoming_bubble_withoutWp_stroke: #ccd0da 161 | chat_message_incoming_bubble_withoutWp_reactionInactiveBg: #4c4f6911 162 | chat_message_incoming_bubble_withoutWp_reactionInactiveFg: #4c4f69 163 | chat_message_incoming_bubble_withoutWp_reactionActiveBg: #40a02b 164 | chat_message_incoming_bubble_withoutWp_reactionActiveFg: #4c4f69 165 | chat_message_incoming_bubble_withoutWp_reactionInactiveMediaPlaceholder: #dce0e819 166 | chat_message_incoming_bubble_withoutWp_reactionActiveMediaPlaceholder: #dce0e819 167 | chat_message_incoming_primaryText: #4c4f69 168 | chat_message_incoming_secondaryText: #4c4f697F 169 | chat_message_incoming_linkText: #40a02b 170 | chat_message_incoming_linkHighlight: #40a02b7F 171 | chat_message_incoming_scam: #d20f39 172 | chat_message_incoming_textHighlight: #fe640b 173 | chat_message_incoming_accentText: #40a02b 174 | chat_message_incoming_accentControl: #40a02b 175 | chat_message_incoming_mediaActiveControl: #40a02b 176 | chat_message_incoming_mediaInactiveControl: #40a02b7F 177 | chat_message_incoming_mediaControlInnerBg: #ccd0da 178 | chat_message_incoming_pendingActivity: #4c4f697F 179 | chat_message_incoming_fileTitle: #40a02b 180 | chat_message_incoming_fileDescription: #4c4f697F 181 | chat_message_incoming_fileDuration: #4c4f697F 182 | chat_message_incoming_mediaPlaceholder: #eff1f5 183 | chat_message_incoming_polls_radioButton: #acb0be 184 | chat_message_incoming_polls_radioProgress: #40a02b 185 | chat_message_incoming_polls_highlight: #40a02b1E 186 | chat_message_incoming_polls_separator: #dce0e8 187 | chat_message_incoming_polls_bar: #40a02b 188 | chat_message_incoming_polls_barIconForeground: #4c4f69 189 | chat_message_incoming_polls_barPositive: #40a02b 190 | chat_message_incoming_polls_barNegative: #d20f39 191 | chat_message_incoming_actionButtonsBg_withWp: #eff1f57F 192 | chat_message_incoming_actionButtonsBg_withoutWp: #eff1f57F 193 | chat_message_incoming_actionButtonsStroke_withWp: #9ca0b026 194 | chat_message_incoming_actionButtonsStroke_withoutWp: #9ca0b026 195 | chat_message_incoming_actionButtonsText_withWp: #4c4f69 196 | chat_message_incoming_actionButtonsText_withoutWp: #4c4f69 197 | chat_message_incoming_textSelection: #40a02b33 198 | chat_message_incoming_textSelectionKnob: #40a02b 199 | chat_message_outgoing_bubble_withWp_bg: #40a02b 200 | chat_message_outgoing_bubble_withWp_gradientBg: #40a02b 201 | chat_message_outgoing_bubble_withWp_highlightedBg: #40a02b 202 | chat_message_outgoing_bubble_withWp_stroke: clear 203 | chat_message_outgoing_bubble_withWp_reactionInactiveBg: #4c4f6919 204 | chat_message_outgoing_bubble_withWp_reactionInactiveFg: #4c4f69 205 | chat_message_outgoing_bubble_withWp_reactionActiveBg: #4c4f69 206 | chat_message_outgoing_bubble_withWp_reactionActiveFg: clear 207 | chat_message_outgoing_bubble_withWp_reactionInactiveMediaPlaceholder: #dce0e819 208 | chat_message_outgoing_bubble_withWp_reactionActiveMediaPlaceholder: #dce0e819 209 | chat_message_outgoing_bubble_withoutWp_bg: #40a02b 210 | chat_message_outgoing_bubble_withoutWp_gradientBg: #40a02b 211 | chat_message_outgoing_bubble_withoutWp_highlightedBg: #40a02b 212 | chat_message_outgoing_bubble_withoutWp_stroke: clear 213 | chat_message_outgoing_bubble_withoutWp_reactionInactiveBg: #4c4f6919 214 | chat_message_outgoing_bubble_withoutWp_reactionInactiveFg: #4c4f69 215 | chat_message_outgoing_bubble_withoutWp_reactionActiveBg: #4c4f69 216 | chat_message_outgoing_bubble_withoutWp_reactionActiveFg: clear 217 | chat_message_outgoing_bubble_withoutWp_reactionInactiveMediaPlaceholder: #dce0e819 218 | chat_message_outgoing_bubble_withoutWp_reactionActiveMediaPlaceholder: #dce0e819 219 | chat_message_outgoing_primaryText: #dce0e8 220 | chat_message_outgoing_secondaryText: #dce0e87F 221 | chat_message_outgoing_linkText: #dce0e8 222 | chat_message_outgoing_linkHighlight: #4c4f697F 223 | chat_message_outgoing_scam: #dce0e8 224 | chat_message_outgoing_textHighlight: #fe640b 225 | chat_message_outgoing_accentText: #dce0e8 226 | chat_message_outgoing_accentControl: #dce0e8 227 | chat_message_outgoing_mediaActiveControl: #dce0e8 228 | chat_message_outgoing_mediaInactiveControl: #dce0e87F 229 | chat_message_outgoing_mediaControlInnerBg: #40a02b 230 | chat_message_outgoing_pendingActivity: #dce0e87F 231 | chat_message_outgoing_fileTitle: #dce0e8 232 | chat_message_outgoing_fileDescription: #dce0e87F 233 | chat_message_outgoing_fileDuration: #dce0e87F 234 | chat_message_outgoing_mediaPlaceholder: #acb0be 235 | chat_message_outgoing_polls_radioButton: #dce0e8 236 | chat_message_outgoing_polls_radioProgress: #dce0e8 237 | chat_message_outgoing_polls_highlight: #dce0e81E 238 | chat_message_outgoing_polls_separator: #dce0e8 239 | chat_message_outgoing_polls_bar: #dce0e8 240 | chat_message_outgoing_polls_barIconForeground: clear 241 | chat_message_outgoing_polls_barPositive: #4c4f69 242 | chat_message_outgoing_polls_barNegative: #4c4f69 243 | chat_message_outgoing_actionButtonsBg_withWp: #eff1f57F 244 | chat_message_outgoing_actionButtonsBg_withoutWp: #eff1f57F 245 | chat_message_outgoing_actionButtonsStroke_withWp: #9ca0b026 246 | chat_message_outgoing_actionButtonsStroke_withoutWp: #9ca0b026 247 | chat_message_outgoing_actionButtonsText_withWp: #4c4f69 248 | chat_message_outgoing_actionButtonsText_withoutWp: #4c4f69 249 | chat_message_outgoing_textSelection: #4c4f6933 250 | chat_message_outgoing_textSelectionKnob: #4c4f69 251 | chat_message_freeform_withWp_bg: #ccd0da 252 | chat_message_freeform_withWp_gradientBg: #ccd0da 253 | chat_message_freeform_withWp_highlightedBg: #ccd0da 254 | chat_message_freeform_withWp_stroke: #ccd0da 255 | chat_message_freeform_withWp_reactionInactiveBg: #ccd0daE5 256 | chat_message_freeform_withWp_reactionInactiveFg: #4c4f69 257 | chat_message_freeform_withWp_reactionActiveBg: #1e66f5 258 | chat_message_freeform_withWp_reactionActiveFg: #4c4f69 259 | chat_message_freeform_withWp_reactionInactiveMediaPlaceholder: #dce0e819 260 | chat_message_freeform_withWp_reactionActiveMediaPlaceholder: #dce0e819 261 | chat_message_freeform_withoutWp_bg: #ccd0da 262 | chat_message_freeform_withoutWp_gradientBg: #ccd0da 263 | chat_message_freeform_withoutWp_highlightedBg: #ccd0da 264 | chat_message_freeform_withoutWp_stroke: #ccd0da 265 | chat_message_freeform_withoutWp_reactionInactiveBg: #ccd0daE5 266 | chat_message_freeform_withoutWp_reactionInactiveFg: #4c4f69 267 | chat_message_freeform_withoutWp_reactionActiveBg: #1e66f5 268 | chat_message_freeform_withoutWp_reactionActiveFg: #4c4f69 269 | chat_message_freeform_withoutWp_reactionInactiveMediaPlaceholder: #dce0e819 270 | chat_message_freeform_withoutWp_reactionActiveMediaPlaceholder: #dce0e819 271 | chat_message_infoPrimaryText: #4c4f69 272 | chat_message_infoLinkText: #40a02b 273 | chat_message_outgoingCheck: #dce0e87F 274 | chat_message_mediaDateAndStatusBg: #dce0e84C 275 | chat_message_mediaDateAndStatusText: #4c4f69 276 | chat_message_shareButtonBg_withWp: #eff1f57F 277 | chat_message_shareButtonBg_withoutWp: #eff1f57F 278 | chat_message_shareButtonStroke_withWp: #9ca0b026 279 | chat_message_shareButtonStroke_withoutWp: #9ca0b026 280 | chat_message_shareButtonFg_withWp: #7c7f93 281 | chat_message_shareButtonFg_withoutWp: #7c7f93 282 | chat_message_mediaOverlayControl_bg: #dce0e899 283 | chat_message_mediaOverlayControl_fg: #4c4f69 284 | chat_message_selectionControl_bg: #40a02b 285 | chat_message_selectionControl_stroke: #4c4f69 286 | chat_message_selectionControl_fg: #4c4f69 287 | chat_message_deliveryFailed_bg: #d20f39 288 | chat_message_deliveryFailed_fg: #4c4f69 289 | chat_message_mediaHighlightOverlay: #4c4f6999 290 | chat_message_stickerPlaceholder_withWp: #ccd0da7F 291 | chat_message_stickerPlaceholder_withoutWp: #ccd0da7F 292 | chat_message_stickerPlaceholderShimmer_withWp: #4c4f690C 293 | chat_message_stickerPlaceholderShimmer_withoutWp: #4c4f690C 294 | chat_serviceMessage_components_withDefaultWp_bg: #eff1f5 295 | chat_serviceMessage_components_withDefaultWp_primaryText: #4c4f69 296 | chat_serviceMessage_components_withDefaultWp_linkHighlight: #4c4f691E 297 | chat_serviceMessage_components_withDefaultWp_scam: #d20f39 298 | chat_serviceMessage_components_withDefaultWp_dateFillStatic: #eff1f599 299 | chat_serviceMessage_components_withDefaultWp_dateFillFloat: #eff1f533 300 | chat_serviceMessage_components_withCustomWp_bg: #eff1f5 301 | chat_serviceMessage_components_withCustomWp_primaryText: #4c4f69 302 | chat_serviceMessage_components_withCustomWp_linkHighlight: #4c4f691E 303 | chat_serviceMessage_components_withCustomWp_scam: #d20f39 304 | chat_serviceMessage_components_withCustomWp_dateFillStatic: #eff1f599 305 | chat_serviceMessage_components_withCustomWp_dateFillFloat: #eff1f533 306 | chat_serviceMessage_unreadBarBg: #ccd0da 307 | chat_serviceMessage_unreadBarStroke: #ccd0da 308 | chat_serviceMessage_unreadBarText: #4c4f69 309 | chat_serviceMessage_dateText_withWp: #4c4f69 310 | chat_serviceMessage_dateText_withoutWp: #4c4f69 311 | chat_inputPanel_panelBg: #ccd0da 312 | chat_inputPanel_panelSeparator: #dce0e8 313 | chat_inputPanel_panelControlAccent: #40a02b 314 | chat_inputPanel_panelControl: #4c4f697F 315 | chat_inputPanel_panelControlDisabled: #8c8fa17F 316 | chat_inputPanel_panelControlDestructive: #d20f39 317 | chat_inputPanel_inputBg: #eff1f5 318 | chat_inputPanel_inputStroke: #eff1f5 319 | chat_inputPanel_inputPlaceholder: #4c4f6966 320 | chat_inputPanel_inputText: #4c4f69 321 | chat_inputPanel_inputControl: #4c4f6966 322 | chat_inputPanel_actionControlBg: #40a02b 323 | chat_inputPanel_actionControlFg: #dce0e8 324 | chat_inputPanel_primaryText: #4c4f69 325 | chat_inputPanel_secondaryText: #4c4f697F 326 | chat_inputPanel_mediaRecordDot: #40a02b 327 | chat_inputPanel_mediaRecordControl_button: #40a02b 328 | chat_inputPanel_mediaRecordControl_micLevel: #40a02b33 329 | chat_inputPanel_mediaRecordControl_activeIcon: #4c4f69 330 | chat_inputMediaPanel_panelSeparator: #ccd0da 331 | chat_inputMediaPanel_panelIcon: #4c4f697F 332 | chat_inputMediaPanel_panelHighlightedIconBg: #4c4f691F 333 | chat_inputMediaPanel_panelHighlightedIcon: #4c4f69AC 334 | chat_inputMediaPanel_panelContentVibrantOverlay: #4c4f697F 335 | chat_inputMediaPanel_panelContentControlVibrantOverlay: #4c4f694C 336 | chat_inputMediaPanel_panelContentControlVibrantSelection: #4c4f6919 337 | chat_inputMediaPanel_panelContentControlOpaqueOverlay: #4c4f694C 338 | chat_inputMediaPanel_panelContentControlOpaqueSelection: #4c4f694C 339 | chat_inputMediaPanel_stickersBg: #eff1f5 340 | chat_inputMediaPanel_stickersSectionText: #4c4f697F 341 | chat_inputMediaPanel_stickersSearchBg: #9ca0b0 342 | chat_inputMediaPanel_stickersSearchPlaceholder: #9ca0b0 343 | chat_inputMediaPanel_stickersSearchPrimary: #4c4f69 344 | chat_inputMediaPanel_stickersSearchControl: #9ca0b0 345 | chat_inputMediaPanel_gifsBg: #eff1f5 346 | chat_inputMediaPanel_bg: #eff1f5BF 347 | chat_inputButtonPanel_panelBg: #dce0e8 348 | chat_inputButtonPanel_panelSeparator: #ccd0da 349 | chat_inputButtonPanel_buttonBg: #bcc0cc 350 | chat_inputButtonPanel_buttonStroke: #dce0e8 351 | chat_inputButtonPanel_buttonHighlightedBg: #bcc0ccB2 352 | chat_inputButtonPanel_buttonHighlightedStroke: #dce0e8 353 | chat_inputButtonPanel_buttonText: #4c4f69 354 | chat_historyNav_bg: #ccd0da 355 | chat_historyNav_stroke: #dce0e8 356 | chat_historyNav_fg: #4c4f697F 357 | chat_historyNav_badgeBg: #40a02b 358 | chat_historyNav_badgeStroke: #40a02b 359 | chat_historyNav_badgeText: #4c4f69 360 | actionSheet_dim: #dce0e87F 361 | actionSheet_bgType: dark 362 | actionSheet_opaqueItemBg: #ccd0da 363 | actionSheet_itemBg: #ccd0daCC 364 | actionSheet_opaqueItemHighlightedBg: #ccd0da 365 | actionSheet_itemHighlightedBg: #ccd0da33 366 | actionSheet_opaqueItemSeparator: #eff1f5 367 | actionSheet_standardActionText: #40a02b 368 | actionSheet_destructiveActionText: #d20f39 369 | actionSheet_disabledActionText: #4c4f697F 370 | actionSheet_primaryText: #4c4f69 371 | actionSheet_secondaryText: #4c4f697F 372 | actionSheet_controlAccent: #40a02b 373 | actionSheet_inputBg: #eff1f5 374 | actionSheet_inputHollowBg: #eff1f5 375 | actionSheet_inputBorder: #eff1f5 376 | actionSheet_inputPlaceholder: #5c5f77 377 | actionSheet_inputText: #4c4f69 378 | actionSheet_inputClearButton: #5c5f77 379 | actionSheet_checkContent: #dce0e8 380 | contextMenu_dim: #dce0e899 381 | contextMenu_background: #ccd0daC6 382 | contextMenu_itemSeparator: #4c4f6926 383 | contextMenu_sectionSeparator: #dce0e833 384 | contextMenu_itemBg: #dce0e800 385 | contextMenu_itemHighlightedBg: #4c4f6926 386 | contextMenu_primary: #4c4f69 387 | contextMenu_secondary: #4c4f697F 388 | contextMenu_destructive: #d20f39 389 | notification_bg: #ccd0da 390 | notification_primaryText: #4c4f69 391 | notification_expanded_bgType: dark 392 | notification_expanded_navBar_background: #ccd0da 393 | notification_expanded_navBar_primaryText: #4c4f69 394 | notification_expanded_navBar_control: #40a02b 395 | notification_expanded_navBar_separator: #dce0e8 396 | chart_labels: #6c6f8599 397 | chart_helperLines: #8c8fa159 398 | chart_strongLines: #8c8fa159 399 | chart_barStrongLines: #6c6f8572 400 | chart_detailsText: #4c4f69 401 | chart_detailsArrow: #4c4f69 402 | chart_detailsView: #e6e9ef 403 | chart_rangeViewFrame: #bcc0cc 404 | chart_rangeViewMarker: #4c4f69 405 | -------------------------------------------------------------------------------- /src/latte/macos: -------------------------------------------------------------------------------- 1 | //metadata 2 | 3 | name = Catppuccin Latte 4 | shortname = ctp_latte 5 | isDark = 0 6 | tinted = 1 7 | 8 | //Variables 9 | 10 | parent = light 11 | copyright = Catppuccin 12 | basicAccent = #1e66f5 13 | background = #eff1f5 14 | text = #4c4f69 15 | grayText = #5c5f77 16 | link = #74c7e6 17 | accent = #1e66f5 18 | redUI = #d20f39 19 | greenUI = #40a02b 20 | blackTransparent = #dce0e8 21 | grayTransparent = #ccd0da99 22 | grayUI = #eff1f5 23 | darkGrayText = #6c6f85 24 | accentSelect = #04a5e5 25 | selectText = #04a5e5 26 | border = #ccd0da 27 | grayBackground = #bcc0cc 28 | grayForeground = #bcc0cc 29 | grayIcon = #40a02b 30 | accentIcon = #e64553 31 | badgeMuted = #8c8fa1 32 | badge = #e64553 33 | monospacedCodeBubble_outgoing = #4c4f69 34 | indicatorColor = #4c4f69 35 | selectMessage = #eff1f5 36 | monospacedPre = #1e66f5 37 | monospacedCode = #1e66f5 38 | monospacedPreBubble_incoming = #4c4f69 39 | monospacedPreBubble_outgoing = #4c4f69 40 | monospacedCodeBubble_incoming = #4c4f69 41 | selectTextBubble_incoming = #40a02b 42 | selectTextBubble_outgoing = #04a5e5 43 | bubbleBackground_incoming = #ccd0da 44 | bubbleBackgroundTop_outgoing = #eff1f5 45 | bubbleBackgroundBottom_outgoing = #eff1f5 46 | bubbleBorder_incoming = #ccd0da 47 | bubbleBorder_outgoing = #eff1f5 48 | grayTextBubble_incoming = #5c5f77 49 | grayTextBubble_outgoing = #4c4f69 50 | grayIconBubble_incoming = #5c5f77 51 | grayIconBubble_outgoing = #5c5f77 52 | accentIconBubble_incoming = #5c5f77 53 | accentIconBubble_outgoing = #4c4f69CC 54 | linkBubble_incoming = #74c7e6 55 | //sapphirelinkBubble_outgoing = #74c7e6 56 | //sapphire #4c4f69_incoming = #4c4f69 #4c4f69_outgoing = #4c4f69 57 | selectMessageBubble = #bcc0cc 58 | fileActivityBackground = #1e66f5CC 59 | fileActivityForeground = #4c4f69 60 | fileActivityBackgroundBubble_incoming = #5c5f77 61 | fileActivityBackgroundBubble_outgoing = #4c4f69 62 | fileActivityForegroundBubble_incoming = #bcc0cc 63 | fileActivityForegroundBubble_outgoing = #04a5e5 64 | waveformBackground = #5c5f77B3 65 | waveformForeground = #1e66f5CC 66 | waveformBackgroundBubble_incoming = #5c5f77 67 | waveformBackgroundBubble_outgoing = #5c5f77 68 | waveformForegroundBubble_incoming = #4c4f69 69 | waveformForegroundBubble_outgoing = #4c4f69 70 | webPreviewActivity = #74c7e6 71 | //sapphirewebPreviewActivityBubble_incoming = #4c4f69 72 | webPreviewActivityBubble_outgoing = #4c4f69 73 | redBubble_incoming = #d20f39 74 | redBubble_outgoing = #d20f39 75 | greenBubble_incoming = #40a02b 76 | greenBubble_outgoing = #40a02b 77 | chatReplyTitle = #74c7e6 78 | //sapphirechatReplyTextEnabled = #4c4f69 79 | c#8c8fa1yTextDisabled = #5c5f77 80 | chatReplyTitleBubble_incoming = #4c4f69 81 | chatReplyTitleBubble_outgoing = #4c4f69 82 | chatReplyTextEnabledBubble_incoming = #4c4f69 83 | chatReplyTextEnabledBubble_outgoing = #4c4f69 84 | c#8c8fa1yTextDisabledBuboming = #5c5f77 85 | c#8c8fa1yTextDisabledBubgoing = #5c5f77 86 | groupPeerNameRed = #d20f39 87 | groupPeerNameOrange = #fe640b 88 | groupPeerNameViolet = #8839ef 89 | groupPeerNameGreen = #179299 90 | groupPeerNameCyan = #179299 91 | groupPeerNameLightBlue = #74c7e6 92 | //sapphiregroupPeerNameBlue = #1e66f5 93 | peerAvatarRedTop = #fe640b 94 | peerAvatarRedBottom = #e64553 95 | peerAvatarOrangeTop = #df8e1d 96 | peerAvatarOrangeBottom = #fe640b 97 | peerAvatarVioletTop = #7287fd 98 | peerAvatarVioletBottom = #7287fd 99 | peerAvatarGreenTop = #40a02b 100 | peerAvatarGreenBottom = #40a02b 101 | peerAvatarCyanTop = #179299 102 | peerAvatarCyanBottom = #179299 103 | peerAvatarBlueTop = #04a5e5 104 | peerAvatarBlueBottom = #74c7e6 105 | //sapphirepeerAvatarPinkTop = #179299 106 | peerAvatarPinkBottom = #8839ef 107 | bubbleBackgroundHighlight_incoming = #bcc0cc 108 | bubbleBackgroundHighlight_outgoing = #04a5e5 109 | chatDateActive = #ccd0da 110 | c#8c8fa1Text = #5c5f77 111 | revealAction_neutral1_background = #1e66f5 112 | revealAction_neutral1_foreground = #4c4f69 113 | revealAction_neutral2_background = #dd7878 114 | revealAction_neutral2_foreground = #4c4f69 115 | revealAction_destructive_background = #d20f39 116 | revealAction_destructive_foreground = #4c4f69 117 | revealAction_constructive_background = #40a02b 118 | revealAction_constructive_foreground = #4c4f69 119 | revealAction_accent_background = #1e66f5 120 | revealAction_accent_foreground = #4c4f69 121 | revealAction_warning_background = #dd7878 122 | revealAction_warning_foreground = #4c4f69 123 | revealAction_inactive_background = #bcc0cc 124 | revealAction_inactive_foreground = #4c4f69 125 | //Parameter is usually using for minimalistic chat mode, but also works as fallback for bubbles if wallpaper not installed 126 | chatBackground = #ccd0da 127 | listBackground = #ccd0da 128 | l#8c8fa1Text = #5c5f77 129 | grayHighlight = #ccd0da 130 | focusAnimationColor = #74c7e6 131 | //sapphirepremium = #8839ef 132 | //Parameter only affects bubble chat mode. Available values=none, builtin, hexColor or url to cloud backgound like a t.me/bg/%slug% 133 | wallpaper = t.me/bg/dKs_8KaE6EjOAAAAJdGVJxSR5uU 134 | -------------------------------------------------------------------------------- /src/macchiato/android: -------------------------------------------------------------------------------- 1 | name: Catppuccin Macchiato 2 | shortname: ctp_macchiato 3 | dark: true 4 | actionBarActionModeDefault: #24273a 5 | actionBarActionModeDefaultIcon: #6e738d 6 | actionBarActionModeDefaultSelector: #494d64 7 | actionBarActionModeDefaultTop: #00000010 8 | actionBarBrowser: #24273a 9 | actionBarDefault: #181926 10 | actionBarDefaultArchived: #181926 11 | actionBarDefaultArchivedIcon: #a5adcb 12 | actionBarDefaultArchivedSearch: #a5adcb 13 | actionBarDefaultArchivedSelector: #939ab7 14 | actionBarDefaultArchivedTitle: #cad3f5 15 | actionBarDefaultIcon: #a5adcb 16 | actionBarDefaultSearch: #a5adcb 17 | actionBarDefaultSearchArchivedPlaceholder: #18192688 18 | actionBarDefaultSearchPlaceholder: #18192688 19 | actionBarDefaultSelector: #939ab7 20 | actionBarDefaultSubmenuBackground: #24273a 21 | actionBarDefaultSubmenuItem: #cad3f5 22 | actionBarDefaultSubmenuItemIcon: #a5adcb 23 | actionBarDefaultSubtitle: #8087a2 24 | actionBarDefaultTitle: #cad3f5 25 | actionBarTabActiveText: #cad3f5 26 | actionBarTabLine: #cad3f5 27 | actionBarTabSelector: #494d64 28 | actionBarTabUnactiveText: #8087a2 29 | actionBarWhiteSelector: #939ab7 30 | avatar_actionBarIconBlue: #a5adcb 31 | avatar_actionBarSelectorBlue: #939ab7 32 | avatar_backgroundActionBarBlue: #181926 33 | avatar_backgroundArchived: #8087a2 34 | avatar_backgroundArchivedHidden: #8087a2 35 | avatar_backgroundBlue: #8aadf4 36 | avatar_backgroundCyan: #8bd5ca 37 | avatar_backgroundGreen: #a6da95 38 | avatar_backgroundGroupCreateSpanBlue: #f4dbd6 39 | avatar_backgroundInProfileBlue: #dc2286 40 | avatar_backgroundOrange: #f5a97f 41 | avatar_backgroundPink: #f5bde6 42 | avatar_backgroundRed: #ed8796 43 | avatar_backgroundSaved: #c6a0f6 44 | avatar_backgroundViolet: #c6a0f6 45 | avatar_nameInMessageBlue: #8aadf4 46 | avatar_nameInMessageCyan: #8bd5ca 47 | avatar_nameInMessageGreen: #a6da95 48 | avatar_nameInMessageOrange: #f5a97f 49 | avatar_nameInMessagePink: #f5bde6 50 | avatar_nameInMessageRed: #ed8796 51 | avatar_nameInMessageViolet: #c6a0f6 52 | avatar_subtitleInProfileBlue: #8087a2 53 | avatar_text: #24273a 54 | calls_callReceivedGreenIcon: #a6da95 55 | calls_callReceivedRedIcon: #ed8796 56 | changephoneinfo_image2: #8aadf4 57 | changephoneinfo_image: #cad3f5 58 | chat_addContact: #c6a0f6 59 | chat_adminSelectedText: #cad3f5 60 | chat_adminText: #cad3f5 61 | chat_attachActiveTab: #8aadf4 62 | chat_attachAudioBackground: #ed8796 63 | chat_attachAudioIcon: #24273a 64 | chat_attachCheckBoxBackground: #8aadf4 65 | chat_attachCheckBoxCheck: #24273a 66 | chat_attachContactBackground: #eed49f 67 | chat_attachContactIcon: #24273a 68 | chat_attachEmptyImage: #6e738d 69 | chat_attachFileBackground: #8bd5ca 70 | chat_attachFileIcon: #24273a 71 | chat_attachGalleryBackground: #8aadf4 72 | chat_attachGalleryIcon: #24273a 73 | chat_attachLocationBackground: #a6da95 74 | chat_attachLocationIcon: #24273a 75 | chat_attachMediaBanBackground: #939ab7 76 | chat_attachMediaBanText: #24273a 77 | chat_attachPermissionImage: #24273a 78 | chat_attachPermissionMark: #ed8796 79 | chat_attachPermissionText: #a5adcb 80 | chat_attachPhotoBackground: #00000008 81 | chat_attachPollBackground: #eed49f 82 | chat_attachPollIcon: #24273a 83 | chat_attachUnactiveTab: #a5adcb 84 | chat_botButtonText: #24273a 85 | chat_botKeyboardButtonBackground: #c6a0f6 86 | chat_botKeyboardButtonBackgroundPressed: #f5bde6 87 | chat_botKeyboardButtonText: #24273a 88 | chat_botProgress: #24273a 89 | chat_botSwitchToInlineText: #f4dbd6 90 | chat_emojiBottomPanelIcon: #939ab7 91 | chat_emojiPanelBackground: #181926 92 | chat_emojiPanelBackspace: #939ab7 93 | chat_emojiPanelBadgeBackground: #8aadf4 94 | chat_emojiPanelBadgeText: #24273a 95 | chat_emojiPanelEmptyText: #939ab7 96 | chat_emojiPanelIcon: #939ab7 97 | chat_emojiPanelIconSelected: #8aadf4 98 | chat_emojiPanelMasksIcon: #24273a 99 | chat_emojiPanelMasksIconSelected: #8aadf4 100 | chat_emojiPanelNewTrending: #8aadf4 101 | chat_emojiPanelShadowLine: #00000012 102 | chat_emojiPanelStickerPackSelector: #5b6078 103 | chat_emojiPanelStickerPackSelectorLine: #5b6078 104 | chat_emojiPanelStickerSetName: #a5adcb 105 | chat_emojiPanelStickerSetNameHighlight: #a5adcb 106 | chat_emojiPanelStickerSetNameIcon: #a5adcb 107 | chat_emojiPanelTrendingDescription: #a5adcb 108 | chat_emojiPanelTrendingTitle: #cad3f5 109 | chat_emojiSearchBackground: #363a4f 110 | chat_emojiSearchIcon: #a5adcb 111 | chat_fieldOverlayText: #a5adcb 112 | chat_gifSaveHintBackground: #000000CC 113 | chat_gifSaveHintText: #24273a 114 | chat_goDownButton: #24273a 115 | chat_goDownButtonCounter: #24273a 116 | chat_goDownButtonCounterBackground: #a6da95 117 | chat_goDownButtonIcon: #a5adcb 118 | chat_goDownButtonShadow: #000000 119 | chat_inAudioCacheSeekbar: #24273a3F 120 | chat_inAudioDurationSelectedText: #cad3f5 121 | chat_inAudioDurationText: #a5adcb 122 | chat_inAudioPerfomerSelectedText: #cad3f5 123 | chat_inAudioPerfomerText: #cad3f5 124 | chat_inAudioProgress: #8aadf4 125 | chat_inAudioSeekbar: #6e738d 126 | chat_inAudioSeekbarFill: #f4dbd6 127 | chat_inAudioSeekbarSelected: #6e738d 128 | chat_inAudioSelectedProgress: #f4dbd6 129 | chat_inAudioTitleText: #8aadf4 130 | chat_inBubble: #24273a 131 | chat_inBubbleSelected: #363a4f 132 | chat_inBubbleShadow: #00000000 133 | chat_inContactBackground: #a6da95 134 | chat_inContactIcon: #24273a 135 | chat_inContactNameText: #a6da95 136 | chat_inContactPhoneSelectedText: #cad3f5 137 | chat_inContactPhoneText: #a5adcb 138 | chat_inDownCall: #a6da95 139 | chat_inFileBackground: #8bd5ca 140 | chat_inFileBackgroundSelected: #8bd5ca 141 | chat_inFileIcon: #24273a 142 | chat_inFileInfoSelectedText: #cad3f5 143 | chat_inFileInfoText: #a5adcb 144 | chat_inFileNameText: #f4dbd6 145 | chat_inFileProgress: #a5adcb 146 | chat_inFileProgressSelected: #a5adcb 147 | chat_inFileSelectedIcon: #24273a 148 | chat_inForwardedNameText: #c6a0f6 149 | chat_inInstant: #c6a0f6 150 | chat_inInstantSelected: #c6a0f6 151 | chat_inLoader: #cad3f5 152 | chat_inLoaderPhoto: #cad3f5 153 | chat_inLoaderPhotoIcon: #24273a 154 | chat_inLoaderPhotoIconSelected: #24273a 155 | chat_inLoaderPhotoSelected: #cad3f5 156 | chat_inLoaderSelected: #cad3f5 157 | chat_inLocationBackground: #a6da95 158 | chat_inLocationIcon: #24273a 159 | chat_inMediaIcon: #24273a 160 | chat_inMediaIconSelected: #24273a 161 | chat_inMenu: #6e738d 162 | chat_inMenuSelected: #6e738d 163 | chat_inPreviewInstantSelectedText: #cad3f5 164 | chat_inPreviewInstantText: #cad3f5 165 | chat_inPreviewLine: #8aadf4 166 | chat_inReplyLine: #f4dbd6 167 | chat_inReplyMediaMessageSelectedText: #6e738d 168 | chat_inReplyMediaMessageText: #6e738d 169 | chat_inReplyMessageText: #6e738d 170 | chat_inReplyNameText: #f4dbd6 171 | chat_inSentClock: #6e738d 172 | chat_inSentClockSelected: #6e738d 173 | chat_inSiteNameText: #f4dbd6 174 | chat_inTimeSelectedText: #cad3f5 175 | chat_inTimeText: #6e738d 176 | chat_inUpCall: #ed8796 177 | chat_inVenueInfoSelectedText: #cad3f5 178 | chat_inVenueInfoText: #cad3f5 179 | chat_inViaBotNameText: #8aadf4 180 | chat_inViews: #cad3f5 181 | chat_inViewsSelected: #cad3f5 182 | chat_inVoiceSeekbar: #6e738d 183 | chat_inVoiceSeekbarFill: #cad3f5 184 | chat_inVoiceSeekbarSelected: #6e738d 185 | chat_inlineResultIcon: #8aadf4 186 | chat_linkSelectBackground: #8aadf433 187 | chat_lockIcon: #24273a 188 | chat_mediaBroadcast: #24273a 189 | chat_mediaInfoText: #24273a 190 | chat_mediaLoaderPhoto: #00000066 191 | chat_mediaLoaderPhotoIcon: #24273a 192 | chat_mediaLoaderPhotoIconSelected: #24273a 193 | chat_mediaLoaderPhotoSelected: #0000007F 194 | chat_mediaMenu: #24273a 195 | chat_mediaProgress: #24273a 196 | chat_mediaSentCheck: #24273a 197 | chat_mediaSentClock: #24273a 198 | chat_mediaTimeBackground: #00000066 199 | chat_mediaTimeText: #24273a 200 | chat_mediaViews: #24273a 201 | chat_messageLinkIn: #f4dbd6 202 | chat_messageLinkOut: #f4dbd6 203 | chat_messagePanelBackground: #24273a 204 | chat_messagePanelCancelInlineBot: #6e738d 205 | chat_messagePanelCursor: #f4dbd6 206 | chat_messagePanelHint: #6e738d 207 | chat_messagePanelIcons: #a5adcb 208 | chat_messagePanelPressedSend: #cad3f5 209 | chat_messagePanelSend: #a5adcb 210 | chat_messagePanelShadow: #00000000 211 | chat_messagePanelText: #cad3f5 212 | chat_messagePanelVideoFrame: #c6a0f6 213 | chat_messagePanelVoiceBackground: #c6a0f6 214 | chat_messagePanelVoiceDelete: #181926 215 | chat_messagePanelVoiceDuration: #6e738d 216 | chat_messagePanelVoicePressed: #24273a 217 | chat_messagePanelVoiceShadow: #0000000D 218 | chat_messageTextIn: #cad3f5 219 | chat_messageTextOut: #cad3f5 220 | chat_muteIcon: #6e738d 221 | chat_outAudioCacheSeekbar: #24273a3F 222 | chat_outAudioDurationSelectedText: #cad3f5 223 | chat_outAudioDurationText: #a5adcb 224 | chat_outAudioPerfomerSelectedText: #cad3f5 225 | chat_outAudioPerfomerText: #cad3f5 226 | chat_outAudioProgress: #8aadf4 227 | chat_outAudioSeekbar: #6e738d 228 | chat_outAudioSeekbarFill: #f4dbd6 229 | chat_outAudioSeekbarSelected: #6e738d 230 | chat_outAudioSelectedProgress: #f4dbd6 231 | chat_outAudioTitleText: #8aadf4 232 | chat_outBroadcast: #a6da95 233 | chat_outBubble: #1e2030 234 | chat_outBubbleSelected: #363a4f 235 | chat_outBubbleShadow: #00000000 236 | chat_outContactBackground: #a6da95 237 | chat_outContactIcon: #24273a 238 | chat_outContactNameText: #a6da95 239 | chat_outContactPhoneSelectedText: #cad3f5 240 | chat_outContactPhoneText: #a5adcb 241 | chat_outFileBackground: #8bd5ca 242 | chat_outFileBackgroundSelected: #8bd5ca 243 | chat_outFileIcon: #24273a 244 | chat_outFileInfoSelectedText: #cad3f5 245 | chat_outFileInfoText: #a5adcb 246 | chat_outFileNameText: #f4dbd6 247 | chat_outFileProgress: #a5adcb 248 | chat_outFileProgressSelected: #a5adcb 249 | chat_outFileSelectedIcon: #24273a 250 | chat_outForwardedNameText: #c6a0f6 251 | chat_outInstant: #c6a0f6 252 | chat_outInstantSelected: #c6a0f6 253 | chat_outLoader: #cad3f5 254 | chat_outLoaderPhoto: #cad3f5 255 | chat_outLoaderPhotoIcon: #24273a 256 | chat_outLoaderPhotoIconSelected: #24273a 257 | chat_outLoaderPhotoSelected: #cad3f5 258 | chat_outLoaderSelected: #cad3f5 259 | chat_outLocationBackground: #a6da95 260 | chat_outLocationIcon: #24273a 261 | chat_outMediaIcon: #24273a 262 | chat_outMediaIconSelected: #24273a 263 | chat_outMenu: #6e738d 264 | chat_outMenuSelected: #6e738d 265 | chat_outPreviewInstantSelectedText: #cad3f5 266 | chat_outPreviewInstantText: #cad3f5 267 | chat_outPreviewLine: #8aadf4 268 | chat_outReplyLine: #f4dbd6 269 | chat_outReplyMediaMessageSelectedText: #6e738d 270 | chat_outReplyMediaMessageText: #6e738d 271 | chat_outReplyMessageText: #6e738d 272 | chat_outReplyNameText: #f4dbd6 273 | chat_outSentCheck: #6e738d 274 | chat_outSentCheckRead: #6e738d 275 | chat_outSentCheckReadSelected: #f4dbd6 276 | chat_outSentCheckSelected: #f4dbd6 277 | chat_outSentClock: #6e738d 278 | chat_outSentClockSelected: #6e738d 279 | chat_outSiteNameText: #f4dbd6 280 | chat_outTimeSelectedText: #cad3f5 281 | chat_outTimeText: #6e738d 282 | chat_outUpCall: #a6da95 283 | chat_outVenueInfoSelectedText: #cad3f5 284 | chat_outVenueInfoText: #cad3f5 285 | chat_outViaBotNameText: #8aadf4 286 | chat_outViews: #cad3f5 287 | chat_outViewsSelected: #cad3f5 288 | chat_outVoiceSeekbar: #6e738d 289 | chat_outVoiceSeekbarFill: #cad3f5 290 | chat_outVoiceSeekbarSelected: #6e738d 291 | chat_previewDurationText: #24273a 292 | chat_previewGameText: #24273a 293 | chat_recordTime: #cad3f5 294 | chat_recordVoiceCancel: #6e738d 295 | chat_recordedVoiceBackground: #c6a0f6 296 | chat_recordedVoiceDot: #24273a 297 | chat_recordedVoicePlayPause: #24273a 298 | chat_recordedVoicePlayPausePressed: #24273a 299 | chat_recordedVoiceProgress: #6e738d 300 | chat_recordedVoiceProgressInner: #cad3f5 301 | chat_replyPanelClose: #6e738d 302 | chat_replyPanelIcons: #f4dbd6 303 | chat_replyPanelLine: #f4dbd6 304 | chat_replyPanelMessage: #cad3f5 305 | chat_replyPanelName: #f4dbd6 306 | chat_reportSpam: #ee99a0 307 | chat_searchPanelIcons: #6e738d 308 | chat_searchPanelText: #cad3f5 309 | chat_secretChatStatusText: #6e738d 310 | chat_secretTimeText: #cad3f5 311 | chat_secretTimerBackground: #24273aCC 312 | chat_secretTimerText: #24273a 313 | chat_selectedBackground: #18192644 314 | chat_sentError: #ee99a0 315 | chat_sentErrorIcon: #24273a 316 | chat_serviceIcon: #24273a 317 | chat_serviceLink: #24273a 318 | chat_serviceText: #24273a 319 | chat_serviceBackground: #b7bdf8 320 | chat_shareBackground: #6e738d66 321 | chat_shareBackgroundSelected: #6e738d99 322 | chat_status: #a6da95 323 | chat_stickerNameText: #24273a 324 | chat_stickerReplyLine: #24273a 325 | chat_stickerReplyMessageText: #24273a 326 | chat_stickerReplyNameText: #24273a 327 | chat_stickerViaBotNameText: #24273a 328 | chat_stickersHintPanel: #24273a 329 | chat_textSelectBackground: #6e738d66 330 | chat_topPanelBackground: #1e2030 331 | chat_topPanelClose: #a5adcb 332 | chat_topPanelLine: #a5adcb 333 | chat_topPanelMessage: #a5adcb 334 | chat_topPanelTitle: #a5adcb 335 | chat_unreadMessagesStartArrowIcon: #24273a 336 | chat_unreadMessagesStartBackground: #c6a0f6 337 | chat_unreadMessagesStartText: #24273a 338 | chats_actionBackground: #a6da95 339 | chats_actionIcon: #24273a 340 | chats_actionMessage: #a5adcb 341 | chats_actionPressedBackground: #f5bde6 342 | chats_actionUnreadBackground: #a6da95 343 | chats_actionUnreadIcon: #24273a 344 | chats_actionUnreadPressedBackground: #a6da95 345 | chats_archiveBackground: #363a4f 346 | chats_archiveIcon: #cad3f5 347 | chats_archivePinBackground: #5b6078 348 | chats_archiveText: #cad3f5 349 | chats_attachMessage: #8aadf4 350 | chats_date: #5b6078 351 | chats_draft: #c6a0f6 352 | chats_mentionIcon: #24273a 353 | chats_menuBackground: #24273a 354 | chats_menuCloud: #24273a 355 | chats_menuCloudBackgroundCats: #8aadf4 356 | chats_menuItemCheck: #dc2286 357 | chats_menuItemIcon: #6e738d 358 | chats_menuItemText: #a5adcb 359 | chats_menuName: #cad3f5 360 | chats_menuPhone: #a5adcb 361 | chats_menuPhoneCats: #a5adcb 362 | chats_menuTopBackgroundCats: #181926 363 | chats_message: #cad3f5 364 | chats_messageArchived: #a5adcb 365 | chats_message_threeLines: #a5adcb 366 | chats_muteIcon: #6e738d 367 | chats_name: #cad3f5 368 | chats_nameArchived: #a5adcb 369 | chats_nameIcon: #cad3f5 370 | chats_nameMessage: #8aadf4 371 | chats_nameMessageArchived: #8aadf4 372 | chats_nameMessageArchived_threeLines: #8aadf4 373 | chats_nameMessage_threeLines: #8aadf4 374 | chats_onlineCircle: #a6da95 375 | chats_pinnedIcon: #a5adcb 376 | chats_pinnedOverlay: #1e2030 377 | chats_secretIcon: #a6da95 378 | chats_secretName: #a6da95 379 | chats_sentCheck: #a6da95 380 | chats_sentClock: #a6da95 381 | chats_sentError: #ee99a0 382 | chats_sentErrorIcon: #24273a 383 | chats_sentReadCheck: #a6da95 384 | chats_tabletSelectedOverlay: #0000000F 385 | chats_unreadCounter: #a6da95 386 | chats_unreadCounterMuted: #6e738d 387 | chats_unreadCounterText: #24273a 388 | chats_verifiedBackground: #8aadf4 389 | chats_verifiedCheck: #24273a 390 | checkbox: #a6da95 391 | checkboxCheck: #24273a 392 | checkboxDisabled: #6e738d 393 | checkboxSquareBackground: #8aadf4 394 | checkboxSquareCheck: #24273a 395 | checkboxSquareDisabled: #6e738d 396 | checkboxSquareUnchecked: #a5adcb 397 | contacts_inviteBackground: #a6da95 398 | contacts_inviteText: #24273a 399 | contextProgressInner1: #8aadf4 400 | contextProgressInner2: #8aadf4 401 | contextProgressInner3: #6e738d 402 | contextProgressInner4: #6e738d 403 | contextProgressOuter1: #a6da95 404 | contextProgressOuter2: #24273a 405 | contextProgressOuter3: #24273a 406 | contextProgressOuter4: #cad3f5 407 | dialogBackground: #24273a 408 | dialogBackgroundGray: #181926 409 | dialogBadgeBackground: #8aadf4 410 | dialogBadgeText: #24273a 411 | dialogButton: #8aadf4 412 | dialogButtonSelector: #0000000F 413 | dialogCameraIcon: #24273a 414 | dialogCheckboxSquareBackground: #8aadf4 415 | dialogCheckboxSquareCheck: #24273a 416 | dialogCheckboxSquareDisabled: #6e738d 417 | dialogCheckboxSquareUnchecked: #a5adcb 418 | dialogFloatingButton: #8aadf4 419 | dialogFloatingButtonPressed: #8aadf4 420 | dialogFloatingIcon: #24273a 421 | dialogGrayLine: #6e738d 422 | dialogIcon: #cad3f5 423 | dialogInputField: #a5adcb 424 | dialogInputFieldActivated: #8aadf4 425 | dialogLineProgress: #8aadf4 426 | dialogLineProgressBackground: #6e738d 427 | dialogLinkSelection: #8aadf433 428 | dialogProgressCircle: #8aadf4 429 | dialogRadioBackground: #6e738d 430 | dialogRadioBackgroundChecked: #8aadf4 431 | dialogRedIcon: #ee99a0 432 | dialogRoundCheckBox: #8aadf4 433 | dialogRoundCheckBoxCheck: #24273a 434 | dialogScrollGlow: #1e2030 435 | dialogSearchBackground: #a5adcb 436 | dialogSearchHint: #181926 437 | dialogSearchIcon: #181926 438 | dialogSearchText: #cad3f5 439 | dialogShadowLine: #00000012 440 | dialogTextBlack: #cad3f5 441 | dialogTextBlue2: #8aadf4 442 | dialogTextBlue3: #8aadf4 443 | dialogTextBlue4: #8aadf4 444 | dialogTextBlue: #2F81e66f5CC9 445 | dialogTextGray2: #b8c0e0 446 | dialogTextGray3: #b8c0e0 447 | dialogTextGray4: #a5adcb 448 | dialogTextGray: #a5adcb 449 | dialogTextHint: #a5adcb 450 | dialogTextLink: #f4dbd6 451 | dialogTextRed2: #ee99a0 452 | dialogTextRed: #ee99a0 453 | dialogTopBackground: #8aadf4 454 | dialog_inlineProgress: #a5adcb 455 | dialog_inlineProgressBackground: #181926F6 456 | dialog_liveLocationProgress: #8aadf4 457 | divider: #00000000 458 | emptyListPlaceholder: #6e738d 459 | fastScrollActive: #8aadf4 460 | fastScrollInactive: #6e738d 461 | fastScrollText: #24273a 462 | featuredStickers_addButton: #8aadf4 463 | featuredStickers_addButtonPressed: #8aadf4 464 | featuredStickers_addedIcon: #8aadf4 465 | featuredStickers_buttonProgress: #24273a 466 | featuredStickers_buttonText: #24273a 467 | featuredStickers_delButton: #ee99a0 468 | featuredStickers_delButtonPressed: #ee99a0 469 | featuredStickers_unread: #8aadf4 470 | files_folderIcon: #999999 471 | files_folderIconBackground: #494d64 472 | files_iconText: #24273a 473 | graySection: #494d64 474 | groupcreate_cursor: #f4dbd6 475 | groupcreate_hintText: #6e738d 476 | groupcreate_sectionShadow: #00000000 477 | groupcreate_sectionText: #a5adcb 478 | groupcreate_spanBackground: #494d64 479 | groupcreate_spanDelete: #ee99a0 480 | groupcreate_spanText: #cad3f5 481 | inappPlayerBackground: #1e2030 482 | inappPlayerClose: #a5adcb 483 | inappPlayerPerformer: #cad3f5 484 | inappPlayerPlayPause: #8aadf4 485 | inappPlayerTitle: #a5adcb 486 | key_chat_messagePanelVoiceLock: #A4A4A4 487 | key_chat_messagePanelVoiceLockBackground: #24273a 488 | key_chat_messagePanelVoiceLockShadow: #000000 489 | key_graySectionText: #7F8991 490 | key_player_progressCachedBackground: #E9EFF5 491 | key_sheet_other: #C9CDD3 492 | key_sheet_scrollUp: #E1E4E8 493 | listSelectorSDK21: #0000000F 494 | location_liveLocationProgress: #359FE5 495 | location_placeLocationBackground: #4CA8EA 496 | location_sendLiveLocationBackground: #FF6464 497 | location_sendLiveLocationIcon: #24273a 498 | location_sendLocationBackground: #6DA0D4 499 | location_sendLocationIcon: #24273a 500 | login_progressInner: #E1EAF2 501 | login_progressOuter: #62A0D0 502 | musicPicker_buttonBackground: #5CAFEA 503 | musicPicker_buttonIcon: #24273a 504 | musicPicker_checkbox: #29B6F7 505 | musicPicker_checkboxCheck: #24273a 506 | passport_authorizeBackground: #45ABEF 507 | passport_authorizeBackgroundSelected: #409DDB 508 | passport_authorizeText: #24273a 509 | picker_badge: #29B6F7 510 | picker_badgeText: #24273a 511 | picker_disabledButton: #999999 512 | picker_enabledButton: #19A7E8 513 | player_actionBar: #24273a 514 | player_actionBarItems: #8A8A8A 515 | player_actionBarSelector: #0000000F 516 | player_actionBarSubtitle: #8A8A8A 517 | player_actionBarTitle: #2F3438 518 | player_actionBarTop: #00000099 519 | player_background: #24273a 520 | player_button: #333333 521 | player_buttonActive: #4CA8EA 522 | player_placeholder: #A8A8A8 523 | player_placeholderBackground: #F0F0F0 524 | player_progress: #4B9FE3 525 | player_progressBackground: #E9EFF5 526 | player_time: #8C9296 527 | profile_actionBackground: #cad3f5 528 | profile_actionIcon: #24273a 529 | profile_actionPressedBackground: #cad3f5 530 | profile_creatorIcon: #8aadf4 531 | profile_status: #6e738d 532 | profile_title: #cad3f5 533 | profile_verifiedBackground: #8aadf4 534 | profile_verifiedCheck: #24273a 535 | progressCircle: #527DA3 536 | radioBackground: #B3B3B3 537 | radioBackgroundChecked: #37A9F0 538 | returnToCallBackground: #44A1E3 539 | returnToCallText: #24273a 540 | sessions_devicesImage: #969696 541 | sharedMedia_actionMode: #4687B3 542 | sharedMedia_linkPlaceholder: #F0F3F5 543 | sharedMedia_linkPlaceholderText: #B7BEC3 544 | sharedMedia_photoPlaceholder: #EDF3F7 545 | sharedMedia_startStopLoadIcon: #36A2EE 546 | stickers_menu: #B6BDC5 547 | stickers_menuSelector: #0000000F 548 | switch2Track: #6e738d 549 | switch2TrackChecked: #a6da95 550 | switchTrack: #6e738d 551 | switchTrackBlue: #6e738d 552 | switchTrackBlueChecked: #a6da95 553 | switchTrackBlueSelector: #404A5317 554 | switchTrackBlueSelectorChecked: #02478121 555 | switchTrackBlueThumb: #24273a 556 | switchTrackBlueThumbChecked: #24273a 557 | switchTrackChecked: #a6da95 558 | undo_background: #272F38EA 559 | undo_cancelColor: #85CAFF 560 | undo_infoColor: #24273a 561 | windowBackgroundCheckText: #24273a 562 | windowBackgroundChecked: #8aadf4 563 | windowBackgroundGray: #1e2030 564 | windowBackgroundGrayShadow: #00000000 565 | windowBackgroundUnchecked: #6e738d 566 | windowBackgroundWhite: #24273a 567 | windowBackgroundWhiteBlackText: #cad3f5 568 | windowBackgroundWhiteBlueButton: #8aadf4 569 | windowBackgroundWhiteBlueHeader: #8aadf4 570 | windowBackgroundWhiteBlueIcon: #8aadf4 571 | windowBackgroundWhiteBlueText2: #8aadf4 572 | windowBackgroundWhiteBlueText3: #8aadf4 573 | windowBackgroundWhiteBlueText4: #8aadf4 574 | windowBackgroundWhiteBlueText5: #8aadf4 575 | windowBackgroundWhiteBlueText6: #8aadf4 576 | windowBackgroundWhiteBlueText7: #8aadf4 577 | windowBackgroundWhiteBlueText: #8aadf4 578 | windowBackgroundWhiteGrayIcon: #6e738d 579 | windowBackgroundWhiteGrayLine: #98A0A7 580 | windowBackgroundWhiteGrayText2: #a5adcb 581 | windowBackgroundWhiteGrayText3: #a5adcb 582 | windowBackgroundWhiteGrayText4: #a5adcb 583 | windowBackgroundWhiteGrayText5: #a5adcb 584 | windowBackgroundWhiteGrayText6: #a5adcb 585 | windowBackgroundWhiteGrayText7: #a5adcb 586 | windowBackgroundWhiteGrayText8: #a5adcb 587 | windowBackgroundWhiteGrayText: #a5adcb 588 | windowBackgroundWhiteGreenText2: #a6da95 589 | windowBackgroundWhiteGreenText: #a6da95 590 | windowBackgroundWhiteHintText: #98A0A7 591 | windowBackgroundWhiteInputField: #F2F4F5 592 | windowBackgroundWhiteInputFieldActivated: #8aadf4 593 | windowBackgroundWhiteLinkSelection: #f4dbd633 594 | windowBackgroundWhiteLinkText: #f4dbd6 595 | windowBackgroundWhiteRedText2: #ee99a0 596 | windowBackgroundWhiteRedText3: #ee99a0 597 | windowBackgroundWhiteRedText4: #ee99a0 598 | windowBackgroundWhiteRedText5: #ee99a0 599 | windowBackgroundWhiteRedText6: #ee99a0 600 | windowBackgroundWhiteRedText: #ee99a0 601 | windowBackgroundWhiteValueText: #8aadf4 602 | -------------------------------------------------------------------------------- /src/macchiato/ios: -------------------------------------------------------------------------------- 1 | name: Catppuccin Macchiato 2 | shortname: ctp_macchiato 3 | dark: true 4 | intro_statusBar: white 5 | intro_primaryText: #cad3f5 6 | intro_accentText: #a6da95 7 | intro_disabledText: #575b55 8 | intro_startButton: #a6da95 9 | intro_dot: #b8c0e0 10 | passcode_bg_top: #5b6078 11 | passcode_bg_bottom: #24273a 12 | passcode_button: #363a4f 13 | root_statusBar: white 14 | root_tabBar_background: #363a4f 15 | root_tabBar_separator: #181926 16 | root_tabBar_icon: #8087a2 17 | root_tabBar_selectedIcon: #a6da95 18 | root_tabBar_text: #8087a2 19 | root_tabBar_selectedText: #a6da95 20 | root_tabBar_badgeBackground: #ed8796 21 | root_tabBar_badgeStroke: #ed8796 22 | root_tabBar_badgeText: #181926 23 | root_navBar_button: #a6da95 24 | root_navBar_disabledButton: #575b55 25 | root_navBar_primaryText: #cad3f5 26 | root_navBar_secondaryText: #b8c0e0 27 | root_navBar_control: #b8c0e0 28 | root_navBar_accentText: #a6da95 29 | root_navBar_background: #363a4f 30 | root_navBar_opaqueBackground: #363a4f 31 | root_navBar_separator: #181926 32 | root_navBar_badgeFill: #ed8796 33 | root_navBar_badgeStroke: #ed8796 34 | root_navBar_badgeText: #181926 35 | root_navBar_segmentedBg: #24273a 36 | root_navBar_segmentedFg: #363a4f 37 | root_navBar_segmentedText: #cad3f5 38 | root_navBar_segmentedDivider: #cad3f57F 39 | root_searchBar_background: #363a4f 40 | root_searchBar_accent: #a6da95 41 | root_searchBar_inputFill: #24273a 42 | root_searchBar_inputText: #cad3f5 43 | root_searchBar_inputPlaceholderText: #b8c0e0 44 | root_searchBar_inputIcon: #b8c0e0 45 | root_searchBar_inputClearButton: #b8c0e0 46 | root_searchBar_separator: #24273a 47 | root_keyboard: dark 48 | list_blocksBg: #24273a 49 | list_plainBg: #24273a 50 | list_primaryText: #cad3f5 51 | list_secondaryText: #cad3f57F 52 | list_disabledText: #cad3f57F 53 | list_accent: #a6da95 54 | list_highlighted: #a6da95 55 | list_destructive: #ed8796 56 | list_placeholderText: #cad3f57F 57 | list_itemBlocksBg: #363a4f 58 | list_itemHighlightedBg: #363a4f 59 | list_blocksSeparator: #181926 60 | list_plainSeparator: #181926 61 | list_disclosureArrow: #cad3f57F 62 | list_sectionHeaderText: #5b6078 63 | list_freeText: #5b6078 64 | list_freeTextError: #ed8796 65 | list_freeTextSuccess: #a6da95 66 | list_freeMonoIcon: #5b6078 67 | list_switch_frame: #cad3f57F 68 | list_switch_handle: #181926 69 | list_switch_content: #a6da95 70 | list_switch_positive: #a6da95 71 | list_switch_negative: #ed8796 72 | list_disclosureActions_neutral1_bg: #a6da95 73 | list_disclosureActions_neutral1_fg: #ffffff 74 | list_disclosureActions_neutral2_bg: #f5a97f 75 | list_disclosureActions_neutral2_fg: #ffffff 76 | list_disclosureActions_destructive_bg: #ed8796 77 | list_disclosureActions_destructive_fg: #ffffff 78 | list_disclosureActions_constructive_bg: #a6da95 79 | list_disclosureActions_constructive_fg: #ffffff 80 | list_disclosureActions_accent_bg: #a6da95 81 | list_disclosureActions_accent_fg: #ffffff 82 | list_disclosureActions_warning_bg: #f5a97f 83 | list_disclosureActions_warning_fg: #ffffff 84 | list_disclosureActions_inactive_bg: #24273a 85 | list_disclosureActions_inactive_fg: #cad3f5 86 | list_check_bg: #a6da95 87 | list_check_stroke: #cad3f57F 88 | list_check_fg: #181926 89 | list_controlSecondary: #cad3f57F 90 | list_freeInputField_bg: #363a4f 91 | list_freeInputField_stroke: #363a4f 92 | list_freeInputField_placeholder: #cad3f57F 93 | list_freeInputField_primary: #cad3f5 94 | list_freeInputField_control: #cad3f57F 95 | list_mediaPlaceholder: #24273a 96 | list_scrollIndicator: #cad3f57F 97 | list_pageIndicatorInactive: #cad3f566 98 | list_inputClearButton: #b8c0e0 99 | list_itemBarChart_color1: #a6da95 100 | list_itemBarChart_color2: #cad3f57F 101 | list_itemBarChart_color3: #24273a 102 | list_itemInputField_bg: #1e2030 103 | list_itemInputField_stroke: #1e2030 104 | list_itemInputField_placeholder: #8087a2 105 | list_itemInputField_primary: #cad3f5 106 | list_itemInputField_control: #8087a2 107 | chatList_bg: #24273a 108 | chatList_itemSeparator: #181926 109 | chatList_itemBg: #24273a 110 | chatList_pinnedItemBg: #363a4f 111 | chatList_itemHighlightedBg: #363a4f 112 | chatList_pinnedItemHighlightedBg: #363a4f 113 | chatList_itemSelectedBg: #363a4f 114 | chatList_title: #cad3f5 115 | chatList_secretTitle: #a6da95 116 | chatList_dateText: #cad3f57F 117 | chatList_authorName: #cad3f5 118 | chatList_messageText: #cad3f57F 119 | chatList_messageHighlightedText: #cad3f5 120 | chatList_messageDraftText: #ed8796 121 | chatList_checkmark: #a6da95 122 | chatList_pendingIndicator: #cad3f566 123 | chatList_failedFill: #ed8796 124 | chatList_failedFg: #cad3f5 125 | chatList_muteIcon: #cad3f566 126 | chatList_unreadBadgeActiveBg: #a6da95 127 | chatList_unreadBadgeActiveText: #181926 128 | chatList_unreadBadgeInactiveBg: #cad3f566 129 | chatList_unreadBadgeInactiveText: #24273a 130 | chatList_reactionBadgeActiveBg: #ed8796 131 | chatList_pinnedBadge: #cad3f57F 132 | chatList_pinnedSearchBar: #24273a 133 | chatList_regularSearchBar: #363a4f 134 | chatList_sectionHeaderBg: #363a4f 135 | chatList_sectionHeaderText: #cad3f57F 136 | chatList_verifiedIconBg: #a6da95 137 | chatList_verifiedIconFg: #cad3f5 138 | chatList_secretIcon: #a6da95 139 | chatList_pinnedArchiveAvatar_background_top: #8aadf4 140 | chatList_pinnedArchiveAvatar_background_bottom: #8aadf4 141 | chatList_pinnedArchiveAvatar_foreground: #cad3f5 142 | chatList_unpinnedArchiveAvatar_background_top: #5b6078 143 | chatList_unpinnedArchiveAvatar_background_bottom: #5b6078 144 | chatList_unpinnedArchiveAvatar_foreground: #24273a 145 | chatList_onlineDot: #a6da95 146 | chat_animateMessageColors: false 147 | chat_message_incoming_bubble_withWp_bg: #363a4f 148 | chat_message_incoming_bubble_withWp_gradientBg: #363a4f 149 | chat_message_incoming_bubble_withWp_highlightedBg: #363a4f 150 | chat_message_incoming_bubble_withWp_stroke: #363a4f 151 | chat_message_incoming_bubble_withWp_reactionInactiveBg: #cad3f511 152 | chat_message_incoming_bubble_withWp_reactionInactiveFg: #cad3f5 153 | chat_message_incoming_bubble_withWp_reactionActiveBg: #a6da95 154 | chat_message_incoming_bubble_withWp_reactionActiveFg: #cad3f5 155 | chat_message_incoming_bubble_withWp_reactionInactiveMediaPlaceholder: #18192619 156 | chat_message_incoming_bubble_withWp_reactionActiveMediaPlaceholder: #18192619 157 | chat_message_incoming_bubble_withoutWp_bg: #363a4f 158 | chat_message_incoming_bubble_withoutWp_gradientBg: #363a4f 159 | chat_message_incoming_bubble_withoutWp_highlightedBg: #363a4f 160 | chat_message_incoming_bubble_withoutWp_stroke: #363a4f 161 | chat_message_incoming_bubble_withoutWp_reactionInactiveBg: #cad3f511 162 | chat_message_incoming_bubble_withoutWp_reactionInactiveFg: #cad3f5 163 | chat_message_incoming_bubble_withoutWp_reactionActiveBg: #a6da95 164 | chat_message_incoming_bubble_withoutWp_reactionActiveFg: #cad3f5 165 | chat_message_incoming_bubble_withoutWp_reactionInactiveMediaPlaceholder: #18192619 166 | chat_message_incoming_bubble_withoutWp_reactionActiveMediaPlaceholder: #18192619 167 | chat_message_incoming_primaryText: #cad3f5 168 | chat_message_incoming_secondaryText: #cad3f57F 169 | chat_message_incoming_linkText: #a6da95 170 | chat_message_incoming_linkHighlight: #a6da957F 171 | chat_message_incoming_scam: #ed8796 172 | chat_message_incoming_textHighlight: #f5a97f 173 | chat_message_incoming_accentText: #a6da95 174 | chat_message_incoming_accentControl: #a6da95 175 | chat_message_incoming_mediaActiveControl: #a6da95 176 | chat_message_incoming_mediaInactiveControl: #a6da957F 177 | chat_message_incoming_mediaControlInnerBg: #363a4f 178 | chat_message_incoming_pendingActivity: #cad3f57F 179 | chat_message_incoming_fileTitle: #a6da95 180 | chat_message_incoming_fileDescription: #cad3f57F 181 | chat_message_incoming_fileDuration: #cad3f57F 182 | chat_message_incoming_mediaPlaceholder: #24273a 183 | chat_message_incoming_polls_radioButton: #5b6078 184 | chat_message_incoming_polls_radioProgress: #a6da95 185 | chat_message_incoming_polls_highlight: #a6da951E 186 | chat_message_incoming_polls_separator: #181926 187 | chat_message_incoming_polls_bar: #a6da95 188 | chat_message_incoming_polls_barIconForeground: #cad3f5 189 | chat_message_incoming_polls_barPositive: #a6da95 190 | chat_message_incoming_polls_barNegative: #ed8796 191 | chat_message_incoming_actionButtonsBg_withWp: #24273a7F 192 | chat_message_incoming_actionButtonsBg_withoutWp: #24273a7F 193 | chat_message_incoming_actionButtonsStroke_withWp: #6e738d26 194 | chat_message_incoming_actionButtonsStroke_withoutWp: #6e738d26 195 | chat_message_incoming_actionButtonsText_withWp: #cad3f5 196 | chat_message_incoming_actionButtonsText_withoutWp: #cad3f5 197 | chat_message_incoming_textSelection: #a6da9533 198 | chat_message_incoming_textSelectionKnob: #a6da95 199 | chat_message_outgoing_bubble_withWp_bg: #a6da95 200 | chat_message_outgoing_bubble_withWp_gradientBg: #a6da95 201 | chat_message_outgoing_bubble_withWp_highlightedBg: #a6da95 202 | chat_message_outgoing_bubble_withWp_stroke: clear 203 | chat_message_outgoing_bubble_withWp_reactionInactiveBg: #cad3f519 204 | chat_message_outgoing_bubble_withWp_reactionInactiveFg: #cad3f5 205 | chat_message_outgoing_bubble_withWp_reactionActiveBg: #cad3f5 206 | chat_message_outgoing_bubble_withWp_reactionActiveFg: clear 207 | chat_message_outgoing_bubble_withWp_reactionInactiveMediaPlaceholder: #18192619 208 | chat_message_outgoing_bubble_withWp_reactionActiveMediaPlaceholder: #18192619 209 | chat_message_outgoing_bubble_withoutWp_bg: #a6da95 210 | chat_message_outgoing_bubble_withoutWp_gradientBg: #a6da95 211 | chat_message_outgoing_bubble_withoutWp_highlightedBg: #a6da95 212 | chat_message_outgoing_bubble_withoutWp_stroke: clear 213 | chat_message_outgoing_bubble_withoutWp_reactionInactiveBg: #cad3f519 214 | chat_message_outgoing_bubble_withoutWp_reactionInactiveFg: #cad3f5 215 | chat_message_outgoing_bubble_withoutWp_reactionActiveBg: #cad3f5 216 | chat_message_outgoing_bubble_withoutWp_reactionActiveFg: clear 217 | chat_message_outgoing_bubble_withoutWp_reactionInactiveMediaPlaceholder: #18192619 218 | chat_message_outgoing_bubble_withoutWp_reactionActiveMediaPlaceholder: #18192619 219 | chat_message_outgoing_primaryText: #181926 220 | chat_message_outgoing_secondaryText: #1819267F 221 | chat_message_outgoing_linkText: #181926 222 | chat_message_outgoing_linkHighlight: #cad3f57F 223 | chat_message_outgoing_scam: #181926 224 | chat_message_outgoing_textHighlight: #f5a97f 225 | chat_message_outgoing_accentText: #181926 226 | chat_message_outgoing_accentControl: #181926 227 | chat_message_outgoing_mediaActiveControl: #181926 228 | chat_message_outgoing_mediaInactiveControl: #1819267F 229 | chat_message_outgoing_mediaControlInnerBg: #a6da95 230 | chat_message_outgoing_pendingActivity: #1819267F 231 | chat_message_outgoing_fileTitle: #181926 232 | chat_message_outgoing_fileDescription: #1819267F 233 | chat_message_outgoing_fileDuration: #1819267F 234 | chat_message_outgoing_mediaPlaceholder: #5b6078 235 | chat_message_outgoing_polls_radioButton: #181926 236 | chat_message_outgoing_polls_radioProgress: #181926 237 | chat_message_outgoing_polls_highlight: #1819261E 238 | chat_message_outgoing_polls_separator: #181926 239 | chat_message_outgoing_polls_bar: #181926 240 | chat_message_outgoing_polls_barIconForeground: clear 241 | chat_message_outgoing_polls_barPositive: #cad3f5 242 | chat_message_outgoing_polls_barNegative: #cad3f5 243 | chat_message_outgoing_actionButtonsBg_withWp: #24273a7F 244 | chat_message_outgoing_actionButtonsBg_withoutWp: #24273a7F 245 | chat_message_outgoing_actionButtonsStroke_withWp: #6e738d26 246 | chat_message_outgoing_actionButtonsStroke_withoutWp: #6e738d26 247 | chat_message_outgoing_actionButtonsText_withWp: #cad3f5 248 | chat_message_outgoing_actionButtonsText_withoutWp: #cad3f5 249 | chat_message_outgoing_textSelection: #cad3f533 250 | chat_message_outgoing_textSelectionKnob: #cad3f5 251 | chat_message_freeform_withWp_bg: #363a4f 252 | chat_message_freeform_withWp_gradientBg: #363a4f 253 | chat_message_freeform_withWp_highlightedBg: #363a4f 254 | chat_message_freeform_withWp_stroke: #363a4f 255 | chat_message_freeform_withWp_reactionInactiveBg: #363a4fE5 256 | chat_message_freeform_withWp_reactionInactiveFg: #cad3f5 257 | chat_message_freeform_withWp_reactionActiveBg: #8aadf4 258 | chat_message_freeform_withWp_reactionActiveFg: #cad3f5 259 | chat_message_freeform_withWp_reactionInactiveMediaPlaceholder: #18192619 260 | chat_message_freeform_withWp_reactionActiveMediaPlaceholder: #18192619 261 | chat_message_freeform_withoutWp_bg: #363a4f 262 | chat_message_freeform_withoutWp_gradientBg: #363a4f 263 | chat_message_freeform_withoutWp_highlightedBg: #363a4f 264 | chat_message_freeform_withoutWp_stroke: #363a4f 265 | chat_message_freeform_withoutWp_reactionInactiveBg: #363a4fE5 266 | chat_message_freeform_withoutWp_reactionInactiveFg: #cad3f5 267 | chat_message_freeform_withoutWp_reactionActiveBg: #8aadf4 268 | chat_message_freeform_withoutWp_reactionActiveFg: #cad3f5 269 | chat_message_freeform_withoutWp_reactionInactiveMediaPlaceholder: #18192619 270 | chat_message_freeform_withoutWp_reactionActiveMediaPlaceholder: #18192619 271 | chat_message_infoPrimaryText: #cad3f5 272 | chat_message_infoLinkText: #a6da95 273 | chat_message_outgoingCheck: #1819267F 274 | chat_message_mediaDateAndStatusBg: #1819264C 275 | chat_message_mediaDateAndStatusText: #cad3f5 276 | chat_message_shareButtonBg_withWp: #24273a7F 277 | chat_message_shareButtonBg_withoutWp: #24273a7F 278 | chat_message_shareButtonStroke_withWp: #6e738d26 279 | chat_message_shareButtonStroke_withoutWp: #6e738d26 280 | chat_message_shareButtonFg_withWp: #939ab7 281 | chat_message_shareButtonFg_withoutWp: #939ab7 282 | chat_message_mediaOverlayControl_bg: #18192699 283 | chat_message_mediaOverlayControl_fg: #cad3f5 284 | chat_message_selectionControl_bg: #a6da95 285 | chat_message_selectionControl_stroke: #cad3f5 286 | chat_message_selectionControl_fg: #cad3f5 287 | chat_message_deliveryFailed_bg: #ed8796 288 | chat_message_deliveryFailed_fg: #cad3f5 289 | chat_message_mediaHighlightOverlay: #cad3f599 290 | chat_message_stickerPlaceholder_withWp: #363a4f7F 291 | chat_message_stickerPlaceholder_withoutWp: #363a4f7F 292 | chat_message_stickerPlaceholderShimmer_withWp: #cad3f50C 293 | chat_message_stickerPlaceholderShimmer_withoutWp: #cad3f50C 294 | chat_serviceMessage_components_withDefaultWp_bg: #24273a 295 | chat_serviceMessage_components_withDefaultWp_primaryText: #cad3f5 296 | chat_serviceMessage_components_withDefaultWp_linkHighlight: #cad3f51E 297 | chat_serviceMessage_components_withDefaultWp_scam: #ed8796 298 | chat_serviceMessage_components_withDefaultWp_dateFillStatic: #24273a99 299 | chat_serviceMessage_components_withDefaultWp_dateFillFloat: #24273a33 300 | chat_serviceMessage_components_withCustomWp_bg: #24273a 301 | chat_serviceMessage_components_withCustomWp_primaryText: #cad3f5 302 | chat_serviceMessage_components_withCustomWp_linkHighlight: #cad3f51E 303 | chat_serviceMessage_components_withCustomWp_scam: #ed8796 304 | chat_serviceMessage_components_withCustomWp_dateFillStatic: #24273a99 305 | chat_serviceMessage_components_withCustomWp_dateFillFloat: #24273a33 306 | chat_serviceMessage_unreadBarBg: #363a4f 307 | chat_serviceMessage_unreadBarStroke: #363a4f 308 | chat_serviceMessage_unreadBarText: #cad3f5 309 | chat_serviceMessage_dateText_withWp: #cad3f5 310 | chat_serviceMessage_dateText_withoutWp: #cad3f5 311 | chat_inputPanel_panelBg: #363a4f 312 | chat_inputPanel_panelSeparator: #181926 313 | chat_inputPanel_panelControlAccent: #a6da95 314 | chat_inputPanel_panelControl: #cad3f57F 315 | chat_inputPanel_panelControlDisabled: #8087a27F 316 | chat_inputPanel_panelControlDestructive: #ed8796 317 | chat_inputPanel_inputBg: #24273a 318 | chat_inputPanel_inputStroke: #24273a 319 | chat_inputPanel_inputPlaceholder: #cad3f566 320 | chat_inputPanel_inputText: #cad3f5 321 | chat_inputPanel_inputControl: #cad3f566 322 | chat_inputPanel_actionControlBg: #a6da95 323 | chat_inputPanel_actionControlFg: #181926 324 | chat_inputPanel_primaryText: #cad3f5 325 | chat_inputPanel_secondaryText: #cad3f57F 326 | chat_inputPanel_mediaRecordDot: #a6da95 327 | chat_inputPanel_mediaRecordControl_button: #a6da95 328 | chat_inputPanel_mediaRecordControl_micLevel: #a6da9533 329 | chat_inputPanel_mediaRecordControl_activeIcon: #cad3f5 330 | chat_inputMediaPanel_panelSeparator: #363a4f 331 | chat_inputMediaPanel_panelIcon: #cad3f57F 332 | chat_inputMediaPanel_panelHighlightedIconBg: #cad3f51F 333 | chat_inputMediaPanel_panelHighlightedIcon: #cad3f5AC 334 | chat_inputMediaPanel_panelContentVibrantOverlay: #cad3f57F 335 | chat_inputMediaPanel_panelContentControlVibrantOverlay: #cad3f54C 336 | chat_inputMediaPanel_panelContentControlVibrantSelection: #cad3f519 337 | chat_inputMediaPanel_panelContentControlOpaqueOverlay: #cad3f54C 338 | chat_inputMediaPanel_panelContentControlOpaqueSelection: #cad3f54C 339 | chat_inputMediaPanel_stickersBg: #24273a 340 | chat_inputMediaPanel_stickersSectionText: #cad3f57F 341 | chat_inputMediaPanel_stickersSearchBg: #6e738d 342 | chat_inputMediaPanel_stickersSearchPlaceholder: #6e738d 343 | chat_inputMediaPanel_stickersSearchPrimary: #cad3f5 344 | chat_inputMediaPanel_stickersSearchControl: #6e738d 345 | chat_inputMediaPanel_gifsBg: #24273a 346 | chat_inputMediaPanel_bg: #24273aBF 347 | chat_inputButtonPanel_panelBg: #181926 348 | chat_inputButtonPanel_panelSeparator: #363a4f 349 | chat_inputButtonPanel_buttonBg: #494d64 350 | chat_inputButtonPanel_buttonStroke: #181926 351 | chat_inputButtonPanel_buttonHighlightedBg: #494d64B2 352 | chat_inputButtonPanel_buttonHighlightedStroke: #181926 353 | chat_inputButtonPanel_buttonText: #cad3f5 354 | chat_historyNav_bg: #363a4f 355 | chat_historyNav_stroke: #181926 356 | chat_historyNav_fg: #cad3f57F 357 | chat_historyNav_badgeBg: #a6da95 358 | chat_historyNav_badgeStroke: #a6da95 359 | chat_historyNav_badgeText: #cad3f5 360 | actionSheet_dim: #1819267F 361 | actionSheet_bgType: dark 362 | actionSheet_opaqueItemBg: #363a4f 363 | actionSheet_itemBg: #363a4fCC 364 | actionSheet_opaqueItemHighlightedBg: #363a4f 365 | actionSheet_itemHighlightedBg: #363a4f33 366 | actionSheet_opaqueItemSeparator: #24273a 367 | actionSheet_standardActionText: #a6da95 368 | actionSheet_destructiveActionText: #ed8796 369 | actionSheet_disabledActionText: #cad3f57F 370 | actionSheet_primaryText: #cad3f5 371 | actionSheet_secondaryText: #cad3f57F 372 | actionSheet_controlAccent: #a6da95 373 | actionSheet_inputBg: #24273a 374 | actionSheet_inputHollowBg: #24273a 375 | actionSheet_inputBorder: #24273a 376 | actionSheet_inputPlaceholder: #b8c0e0 377 | actionSheet_inputText: #cad3f5 378 | actionSheet_inputClearButton: #b8c0e0 379 | actionSheet_checkContent: #181926 380 | contextMenu_dim: #18192699 381 | contextMenu_background: #363a4fC6 382 | contextMenu_itemSeparator: #cad3f526 383 | contextMenu_sectionSeparator: #18192633 384 | contextMenu_itemBg: #18192600 385 | contextMenu_itemHighlightedBg: #cad3f526 386 | contextMenu_primary: #cad3f5 387 | contextMenu_secondary: #cad3f57F 388 | contextMenu_destructive: #ed8796 389 | notification_bg: #363a4f 390 | notification_primaryText: #cad3f5 391 | notification_expanded_bgType: dark 392 | notification_expanded_navBar_background: #363a4f 393 | notification_expanded_navBar_primaryText: #cad3f5 394 | notification_expanded_navBar_control: #a6da95 395 | notification_expanded_navBar_separator: #181926 396 | chart_labels: #a5adcb99 397 | chart_helperLines: #8087a259 398 | chart_strongLines: #8087a259 399 | chart_barStrongLines: #a5adcb72 400 | chart_detailsText: #cad3f5 401 | chart_detailsArrow: #cad3f5 402 | chart_detailsView: #1e2030 403 | chart_rangeViewFrame: #494d64 404 | chart_rangeViewMarker: #cad3f5 405 | -------------------------------------------------------------------------------- /src/macchiato/macos: -------------------------------------------------------------------------------- 1 | //metadata 2 | 3 | name = Catppuccin Macchiato 4 | shortname = ctp_macchiato 5 | isDark = 1 6 | tinted = 1 7 | 8 | //Variables 9 | 10 | parent = dark 11 | copyright = Catppuccin 12 | basicAccent = #8aadf4 13 | background = #24273a 14 | text = #cad3f5 15 | grayText = #b8c0e0 16 | link = #74c7e6 17 | accent = #8aadf4 18 | redUI = #ed8796 19 | greenUI = #a6da95 20 | blackTransparent = #181926 21 | grayTransparent = #363a4f99 22 | grayUI = #24273a 23 | darkGrayText = #a5adcb 24 | accentSelect = #91d7e3 25 | selectText = #91d7e3 26 | border = #363a4f 27 | grayBackground = #494d64 28 | grayForeground = #494d64 29 | grayIcon = #a6da95 30 | accentIcon = #ee99a0 31 | badgeMuted = #8087a2 32 | badge = #ee99a0 33 | monospacedCodeBubble_outgoing = #cad3f5 34 | indicatorColor = #cad3f5 35 | selectMessage = #24273a 36 | monospacedPre = #8aadf4 37 | monospacedCode = #8aadf4 38 | monospacedPreBubble_incoming = #cad3f5 39 | monospacedPreBubble_outgoing = #cad3f5 40 | monospacedCodeBubble_incoming = #cad3f5 41 | selectTextBubble_incoming = #a6da95 42 | selectTextBubble_outgoing = #91d7e3 43 | bubbleBackground_incoming = #363a4f 44 | bubbleBackgroundTop_outgoing = #24273a 45 | bubbleBackgroundBottom_outgoing = #24273a 46 | bubbleBorder_incoming = #363a4f 47 | bubbleBorder_outgoing = #24273a 48 | grayTextBubble_incoming = #b8c0e0 49 | grayTextBubble_outgoing = #cad3f5 50 | grayIconBubble_incoming = #b8c0e0 51 | grayIconBubble_outgoing = #b8c0e0 52 | accentIconBubble_incoming = #b8c0e0 53 | accentIconBubble_outgoing = #cad3f5CC 54 | linkBubble_incoming = #74c7e6 55 | //sapphirelinkBubble_outgoing = #74c7e6 56 | //sapphire #cad3f5_incoming = #cad3f5 #cad3f5_outgoing = #cad3f5 57 | selectMessageBubble = #494d64 58 | fileActivityBackground = #8aadf4CC 59 | fileActivityForeground = #cad3f5 60 | fileActivityBackgroundBubble_incoming = #b8c0e0 61 | fileActivityBackgroundBubble_outgoing = #cad3f5 62 | fileActivityForegroundBubble_incoming = #494d64 63 | fileActivityForegroundBubble_outgoing = #91d7e3 64 | waveformBackground = #b8c0e0B3 65 | waveformForeground = #8aadf4CC 66 | waveformBackgroundBubble_incoming = #b8c0e0 67 | waveformBackgroundBubble_outgoing = #b8c0e0 68 | waveformForegroundBubble_incoming = #cad3f5 69 | waveformForegroundBubble_outgoing = #cad3f5 70 | webPreviewActivity = #74c7e6 71 | //sapphirewebPreviewActivityBubble_incoming = #cad3f5 72 | webPreviewActivityBubble_outgoing = #cad3f5 73 | redBubble_incoming = #ed8796 74 | redBubble_outgoing = #ed8796 75 | greenBubble_incoming = #a6da95 76 | greenBubble_outgoing = #a6da95 77 | chatReplyTitle = #74c7e6 78 | //sapphirechatReplyTextEnabled = #cad3f5 79 | c#8087a2yTextDisabled = #b8c0e0 80 | chatReplyTitleBubble_incoming = #cad3f5 81 | chatReplyTitleBubble_outgoing = #cad3f5 82 | chatReplyTextEnabledBubble_incoming = #cad3f5 83 | chatReplyTextEnabledBubble_outgoing = #cad3f5 84 | c#8087a2yTextDisabledBuboming = #b8c0e0 85 | c#8087a2yTextDisabledBubgoing = #b8c0e0 86 | groupPeerNameRed = #ed8796 87 | groupPeerNameOrange = #f5a97f 88 | groupPeerNameViolet = #c6a0f6 89 | groupPeerNameGreen = #8bd5ca 90 | groupPeerNameCyan = #8bd5ca 91 | groupPeerNameLightBlue = #74c7e6 92 | //sapphiregroupPeerNameBlue = #8aadf4 93 | peerAvatarRedTop = #f5a97f 94 | peerAvatarRedBottom = #ee99a0 95 | peerAvatarOrangeTop = #eed49f 96 | peerAvatarOrangeBottom = #f5a97f 97 | peerAvatarVioletTop = #b7bdf8 98 | peerAvatarVioletBottom = #b7bdf8 99 | peerAvatarGreenTop = #a6da95 100 | peerAvatarGreenBottom = #a6da95 101 | peerAvatarCyanTop = #8bd5ca 102 | peerAvatarCyanBottom = #8bd5ca 103 | peerAvatarBlueTop = #91d7e3 104 | peerAvatarBlueBottom = #74c7e6 105 | //sapphirepeerAvatarPinkTop = #8bd5ca 106 | peerAvatarPinkBottom = #c6a0f6 107 | bubbleBackgroundHighlight_incoming = #494d64 108 | bubbleBackgroundHighlight_outgoing = #91d7e3 109 | chatDateActive = #363a4f 110 | c#8087a2Text = #b8c0e0 111 | revealAction_neutral1_background = #8aadf4 112 | revealAction_neutral1_foreground = #cad3f5 113 | revealAction_neutral2_background = #f0c6c6 114 | revealAction_neutral2_foreground = #cad3f5 115 | revealAction_destructive_background = #ed8796 116 | revealAction_destructive_foreground = #cad3f5 117 | revealAction_constructive_background = #a6da95 118 | revealAction_constructive_foreground = #cad3f5 119 | revealAction_accent_background = #8aadf4 120 | revealAction_accent_foreground = #cad3f5 121 | revealAction_warning_background = #f0c6c6 122 | revealAction_warning_foreground = #cad3f5 123 | revealAction_inactive_background = #494d64 124 | revealAction_inactive_foreground = #cad3f5 125 | //Parameter is usually using for minimalistic chat mode, but also works as fallback for bubbles if wallpaper not installed 126 | chatBackground = #363a4f 127 | listBackground = #363a4f 128 | l#8087a2Text = #b8c0e0 129 | grayHighlight = #363a4f 130 | focusAnimationColor = #74c7e6 131 | //sapphirepremium = #c6a0f6 132 | //Parameter only affects bubble chat mode. Available values=none, builtin, hexColor or url to cloud backgound like a t.me/bg/%slug% 133 | wallpaper = t.me/bg/dKs_8KaE6EjOAAAAJdGVJxSR5uU 134 | -------------------------------------------------------------------------------- /src/mocha/android: -------------------------------------------------------------------------------- 1 | name: Catppuccin Mocha 2 | shortname: ctp_mocha 3 | dark: true 4 | actionBarActionModeDefault: #1e1e2e 5 | actionBarActionModeDefaultIcon: #6c7086 6 | actionBarActionModeDefaultSelector: #45475a 7 | actionBarActionModeDefaultTop: #00000010 8 | actionBarBrowser: #1e1e2e 9 | actionBarDefault: #11111b 10 | actionBarDefaultArchived: #11111b 11 | actionBarDefaultArchivedIcon: #a6adc8 12 | actionBarDefaultArchivedSearch: #a6adc8 13 | actionBarDefaultArchivedSelector: #9399b2 14 | actionBarDefaultArchivedTitle: #cdd6f4 15 | actionBarDefaultIcon: #a6adc8 16 | actionBarDefaultSearch: #a6adc8 17 | actionBarDefaultSearchArchivedPlaceholder: #11111b88 18 | actionBarDefaultSearchPlaceholder: #11111b88 19 | actionBarDefaultSelector: #9399b2 20 | actionBarDefaultSubmenuBackground: #1e1e2e 21 | actionBarDefaultSubmenuItem: #cdd6f4 22 | actionBarDefaultSubmenuItemIcon: #a6adc8 23 | actionBarDefaultSubtitle: #7f849c 24 | actionBarDefaultTitle: #cdd6f4 25 | actionBarTabActiveText: #cdd6f4 26 | actionBarTabLine: #cdd6f4 27 | actionBarTabSelector: #45475a 28 | actionBarTabUnactiveText: #7f849c 29 | actionBarWhiteSelector: #9399b2 30 | avatar_actionBarIconBlue: #a6adc8 31 | avatar_actionBarSelectorBlue: #9399b2 32 | avatar_backgroundActionBarBlue: #11111b 33 | avatar_backgroundArchived: #7f849c 34 | avatar_backgroundArchivedHidden: #7f849c 35 | avatar_backgroundBlue: #89b4fa 36 | avatar_backgroundCyan: #94e2d5 37 | avatar_backgroundGreen: #a6e3a1 38 | avatar_backgroundGroupCreateSpanBlue: #f5e0dc 39 | avatar_backgroundInProfileBlue: #dc2286 40 | avatar_backgroundOrange: #fab387 41 | avatar_backgroundPink: #f5c2e7 42 | avatar_backgroundRed: #f38ba8 43 | avatar_backgroundSaved: #cba6f7 44 | avatar_backgroundViolet: #cba6f7 45 | avatar_nameInMessageBlue: #89b4fa 46 | avatar_nameInMessageCyan: #94e2d5 47 | avatar_nameInMessageGreen: #a6e3a1 48 | avatar_nameInMessageOrange: #fab387 49 | avatar_nameInMessagePink: #f5c2e7 50 | avatar_nameInMessageRed: #f38ba8 51 | avatar_nameInMessageViolet: #cba6f7 52 | avatar_subtitleInProfileBlue: #7f849c 53 | avatar_text: #1e1e2e 54 | calls_callReceivedGreenIcon: #a6e3a1 55 | calls_callReceivedRedIcon: #f38ba8 56 | changephoneinfo_image2: #89b4fa 57 | changephoneinfo_image: #cdd6f4 58 | chat_addContact: #cba6f7 59 | chat_adminSelectedText: #cdd6f4 60 | chat_adminText: #cdd6f4 61 | chat_attachActiveTab: #89b4fa 62 | chat_attachAudioBackground: #f38ba8 63 | chat_attachAudioIcon: #1e1e2e 64 | chat_attachCheckBoxBackground: #89b4fa 65 | chat_attachCheckBoxCheck: #1e1e2e 66 | chat_attachContactBackground: #f9e2af 67 | chat_attachContactIcon: #1e1e2e 68 | chat_attachEmptyImage: #6c7086 69 | chat_attachFileBackground: #94e2d5 70 | chat_attachFileIcon: #1e1e2e 71 | chat_attachGalleryBackground: #89b4fa 72 | chat_attachGalleryIcon: #1e1e2e 73 | chat_attachLocationBackground: #a6e3a1 74 | chat_attachLocationIcon: #1e1e2e 75 | chat_attachMediaBanBackground: #9399b2 76 | chat_attachMediaBanText: #1e1e2e 77 | chat_attachPermissionImage: #1e1e2e 78 | chat_attachPermissionMark: #f38ba8 79 | chat_attachPermissionText: #a6adc8 80 | chat_attachPhotoBackground: #00000008 81 | chat_attachPollBackground: #f9e2af 82 | chat_attachPollIcon: #1e1e2e 83 | chat_attachUnactiveTab: #a6adc8 84 | chat_botButtonText: #1e1e2e 85 | chat_botKeyboardButtonBackground: #cba6f7 86 | chat_botKeyboardButtonBackgroundPressed: #f5c2e7 87 | chat_botKeyboardButtonText: #1e1e2e 88 | chat_botProgress: #1e1e2e 89 | chat_botSwitchToInlineText: #f5e0dc 90 | chat_emojiBottomPanelIcon: #9399b2 91 | chat_emojiPanelBackground: #11111b 92 | chat_emojiPanelBackspace: #9399b2 93 | chat_emojiPanelBadgeBackground: #89b4fa 94 | chat_emojiPanelBadgeText: #1e1e2e 95 | chat_emojiPanelEmptyText: #9399b2 96 | chat_emojiPanelIcon: #9399b2 97 | chat_emojiPanelIconSelected: #89b4fa 98 | chat_emojiPanelMasksIcon: #1e1e2e 99 | chat_emojiPanelMasksIconSelected: #89b4fa 100 | chat_emojiPanelNewTrending: #89b4fa 101 | chat_emojiPanelShadowLine: #00000012 102 | chat_emojiPanelStickerPackSelector: #585b70 103 | chat_emojiPanelStickerPackSelectorLine: #585b70 104 | chat_emojiPanelStickerSetName: #a6adc8 105 | chat_emojiPanelStickerSetNameHighlight: #a6adc8 106 | chat_emojiPanelStickerSetNameIcon: #a6adc8 107 | chat_emojiPanelTrendingDescription: #a6adc8 108 | chat_emojiPanelTrendingTitle: #cdd6f4 109 | chat_emojiSearchBackground: #313244 110 | chat_emojiSearchIcon: #a6adc8 111 | chat_fieldOverlayText: #a6adc8 112 | chat_gifSaveHintBackground: #000000CC 113 | chat_gifSaveHintText: #1e1e2e 114 | chat_goDownButton: #1e1e2e 115 | chat_goDownButtonCounter: #1e1e2e 116 | chat_goDownButtonCounterBackground: #a6e3a1 117 | chat_goDownButtonIcon: #a6adc8 118 | chat_goDownButtonShadow: #000000 119 | chat_inAudioCacheSeekbar: #1e1e2e3F 120 | chat_inAudioDurationSelectedText: #cdd6f4 121 | chat_inAudioDurationText: #a6adc8 122 | chat_inAudioPerfomerSelectedText: #cdd6f4 123 | chat_inAudioPerfomerText: #cdd6f4 124 | chat_inAudioProgress: #89b4fa 125 | chat_inAudioSeekbar: #6c7086 126 | chat_inAudioSeekbarFill: #f5e0dc 127 | chat_inAudioSeekbarSelected: #6c7086 128 | chat_inAudioSelectedProgress: #f5e0dc 129 | chat_inAudioTitleText: #89b4fa 130 | chat_inBubble: #1e1e2e 131 | chat_inBubbleSelected: #313244 132 | chat_inBubbleShadow: #00000000 133 | chat_inContactBackground: #a6e3a1 134 | chat_inContactIcon: #1e1e2e 135 | chat_inContactNameText: #a6e3a1 136 | chat_inContactPhoneSelectedText: #cdd6f4 137 | chat_inContactPhoneText: #a6adc8 138 | chat_inDownCall: #a6e3a1 139 | chat_inFileBackground: #94e2d5 140 | chat_inFileBackgroundSelected: #94e2d5 141 | chat_inFileIcon: #1e1e2e 142 | chat_inFileInfoSelectedText: #cdd6f4 143 | chat_inFileInfoText: #a6adc8 144 | chat_inFileNameText: #f5e0dc 145 | chat_inFileProgress: #a6adc8 146 | chat_inFileProgressSelected: #a6adc8 147 | chat_inFileSelectedIcon: #1e1e2e 148 | chat_inForwardedNameText: #cba6f7 149 | chat_inInstant: #cba6f7 150 | chat_inInstantSelected: #cba6f7 151 | chat_inLoader: #cdd6f4 152 | chat_inLoaderPhoto: #cdd6f4 153 | chat_inLoaderPhotoIcon: #1e1e2e 154 | chat_inLoaderPhotoIconSelected: #1e1e2e 155 | chat_inLoaderPhotoSelected: #cdd6f4 156 | chat_inLoaderSelected: #cdd6f4 157 | chat_inLocationBackground: #a6e3a1 158 | chat_inLocationIcon: #1e1e2e 159 | chat_inMediaIcon: #1e1e2e 160 | chat_inMediaIconSelected: #1e1e2e 161 | chat_inMenu: #6c7086 162 | chat_inMenuSelected: #6c7086 163 | chat_inPreviewInstantSelectedText: #cdd6f4 164 | chat_inPreviewInstantText: #cdd6f4 165 | chat_inPreviewLine: #89b4fa 166 | chat_inReplyLine: #f5e0dc 167 | chat_inReplyMediaMessageSelectedText: #6c7086 168 | chat_inReplyMediaMessageText: #6c7086 169 | chat_inReplyMessageText: #6c7086 170 | chat_inReplyNameText: #f5e0dc 171 | chat_inSentClock: #6c7086 172 | chat_inSentClockSelected: #6c7086 173 | chat_inSiteNameText: #f5e0dc 174 | chat_inTimeSelectedText: #cdd6f4 175 | chat_inTimeText: #6c7086 176 | chat_inUpCall: #f38ba8 177 | chat_inVenueInfoSelectedText: #cdd6f4 178 | chat_inVenueInfoText: #cdd6f4 179 | chat_inViaBotNameText: #89b4fa 180 | chat_inViews: #cdd6f4 181 | chat_inViewsSelected: #cdd6f4 182 | chat_inVoiceSeekbar: #6c7086 183 | chat_inVoiceSeekbarFill: #cdd6f4 184 | chat_inVoiceSeekbarSelected: #6c7086 185 | chat_inlineResultIcon: #89b4fa 186 | chat_linkSelectBackground: #89b4fa33 187 | chat_lockIcon: #1e1e2e 188 | chat_mediaBroadcast: #1e1e2e 189 | chat_mediaInfoText: #1e1e2e 190 | chat_mediaLoaderPhoto: #00000066 191 | chat_mediaLoaderPhotoIcon: #1e1e2e 192 | chat_mediaLoaderPhotoIconSelected: #1e1e2e 193 | chat_mediaLoaderPhotoSelected: #0000007F 194 | chat_mediaMenu: #1e1e2e 195 | chat_mediaProgress: #1e1e2e 196 | chat_mediaSentCheck: #1e1e2e 197 | chat_mediaSentClock: #1e1e2e 198 | chat_mediaTimeBackground: #00000066 199 | chat_mediaTimeText: #1e1e2e 200 | chat_mediaViews: #1e1e2e 201 | chat_messageLinkIn: #f5e0dc 202 | chat_messageLinkOut: #f5e0dc 203 | chat_messagePanelBackground: #1e1e2e 204 | chat_messagePanelCancelInlineBot: #6c7086 205 | chat_messagePanelCursor: #f5e0dc 206 | chat_messagePanelHint: #6c7086 207 | chat_messagePanelIcons: #a6adc8 208 | chat_messagePanelPressedSend: #cdd6f4 209 | chat_messagePanelSend: #a6adc8 210 | chat_messagePanelShadow: #00000000 211 | chat_messagePanelText: #cdd6f4 212 | chat_messagePanelVideoFrame: #cba6f7 213 | chat_messagePanelVoiceBackground: #cba6f7 214 | chat_messagePanelVoiceDelete: #11111b 215 | chat_messagePanelVoiceDuration: #6c7086 216 | chat_messagePanelVoicePressed: #1e1e2e 217 | chat_messagePanelVoiceShadow: #0000000D 218 | chat_messageTextIn: #cdd6f4 219 | chat_messageTextOut: #cdd6f4 220 | chat_muteIcon: #6c7086 221 | chat_outAudioCacheSeekbar: #1e1e2e3F 222 | chat_outAudioDurationSelectedText: #cdd6f4 223 | chat_outAudioDurationText: #a6adc8 224 | chat_outAudioPerfomerSelectedText: #cdd6f4 225 | chat_outAudioPerfomerText: #cdd6f4 226 | chat_outAudioProgress: #89b4fa 227 | chat_outAudioSeekbar: #6c7086 228 | chat_outAudioSeekbarFill: #f5e0dc 229 | chat_outAudioSeekbarSelected: #6c7086 230 | chat_outAudioSelectedProgress: #f5e0dc 231 | chat_outAudioTitleText: #89b4fa 232 | chat_outBroadcast: #a6e3a1 233 | chat_outBubble: #181825 234 | chat_outBubbleSelected: #313244 235 | chat_outBubbleShadow: #00000000 236 | chat_outContactBackground: #a6e3a1 237 | chat_outContactIcon: #1e1e2e 238 | chat_outContactNameText: #a6e3a1 239 | chat_outContactPhoneSelectedText: #cdd6f4 240 | chat_outContactPhoneText: #a6adc8 241 | chat_outFileBackground: #94e2d5 242 | chat_outFileBackgroundSelected: #94e2d5 243 | chat_outFileIcon: #1e1e2e 244 | chat_outFileInfoSelectedText: #cdd6f4 245 | chat_outFileInfoText: #a6adc8 246 | chat_outFileNameText: #f5e0dc 247 | chat_outFileProgress: #a6adc8 248 | chat_outFileProgressSelected: #a6adc8 249 | chat_outFileSelectedIcon: #1e1e2e 250 | chat_outForwardedNameText: #cba6f7 251 | chat_outInstant: #cba6f7 252 | chat_outInstantSelected: #cba6f7 253 | chat_outLoader: #cdd6f4 254 | chat_outLoaderPhoto: #cdd6f4 255 | chat_outLoaderPhotoIcon: #1e1e2e 256 | chat_outLoaderPhotoIconSelected: #1e1e2e 257 | chat_outLoaderPhotoSelected: #cdd6f4 258 | chat_outLoaderSelected: #cdd6f4 259 | chat_outLocationBackground: #a6e3a1 260 | chat_outLocationIcon: #1e1e2e 261 | chat_outMediaIcon: #1e1e2e 262 | chat_outMediaIconSelected: #1e1e2e 263 | chat_outMenu: #6c7086 264 | chat_outMenuSelected: #6c7086 265 | chat_outPreviewInstantSelectedText: #cdd6f4 266 | chat_outPreviewInstantText: #cdd6f4 267 | chat_outPreviewLine: #89b4fa 268 | chat_outReplyLine: #f5e0dc 269 | chat_outReplyMediaMessageSelectedText: #6c7086 270 | chat_outReplyMediaMessageText: #6c7086 271 | chat_outReplyMessageText: #6c7086 272 | chat_outReplyNameText: #f5e0dc 273 | chat_outSentCheck: #6c7086 274 | chat_outSentCheckRead: #6c7086 275 | chat_outSentCheckReadSelected: #f5e0dc 276 | chat_outSentCheckSelected: #f5e0dc 277 | chat_outSentClock: #6c7086 278 | chat_outSentClockSelected: #6c7086 279 | chat_outSiteNameText: #f5e0dc 280 | chat_outTimeSelectedText: #cdd6f4 281 | chat_outTimeText: #6c7086 282 | chat_outUpCall: #a6e3a1 283 | chat_outVenueInfoSelectedText: #cdd6f4 284 | chat_outVenueInfoText: #cdd6f4 285 | chat_outViaBotNameText: #89b4fa 286 | chat_outViews: #cdd6f4 287 | chat_outViewsSelected: #cdd6f4 288 | chat_outVoiceSeekbar: #6c7086 289 | chat_outVoiceSeekbarFill: #cdd6f4 290 | chat_outVoiceSeekbarSelected: #6c7086 291 | chat_previewDurationText: #1e1e2e 292 | chat_previewGameText: #1e1e2e 293 | chat_recordTime: #cdd6f4 294 | chat_recordVoiceCancel: #6c7086 295 | chat_recordedVoiceBackground: #cba6f7 296 | chat_recordedVoiceDot: #1e1e2e 297 | chat_recordedVoicePlayPause: #1e1e2e 298 | chat_recordedVoicePlayPausePressed: #1e1e2e 299 | chat_recordedVoiceProgress: #6c7086 300 | chat_recordedVoiceProgressInner: #cdd6f4 301 | chat_replyPanelClose: #6c7086 302 | chat_replyPanelIcons: #f5e0dc 303 | chat_replyPanelLine: #f5e0dc 304 | chat_replyPanelMessage: #cdd6f4 305 | chat_replyPanelName: #f5e0dc 306 | chat_reportSpam: #eba0ac 307 | chat_searchPanelIcons: #6c7086 308 | chat_searchPanelText: #cdd6f4 309 | chat_secretChatStatusText: #6c7086 310 | chat_secretTimeText: #cdd6f4 311 | chat_secretTimerBackground: #1e1e2eCC 312 | chat_secretTimerText: #1e1e2e 313 | chat_selectedBackground: #11111b44 314 | chat_sentError: #eba0ac 315 | chat_sentErrorIcon: #1e1e2e 316 | chat_serviceIcon: #1e1e2e 317 | chat_serviceLink: #1e1e2e 318 | chat_serviceText: #1e1e2e 319 | chat_serviceBackground: #b4befe 320 | chat_shareBackground: #6c708666 321 | chat_shareBackgroundSelected: #6c708699 322 | chat_status: #a6e3a1 323 | chat_stickerNameText: #1e1e2e 324 | chat_stickerReplyLine: #1e1e2e 325 | chat_stickerReplyMessageText: #1e1e2e 326 | chat_stickerReplyNameText: #1e1e2e 327 | chat_stickerViaBotNameText: #1e1e2e 328 | chat_stickersHintPanel: #1e1e2e 329 | chat_textSelectBackground: #6c708666 330 | chat_topPanelBackground: #181825 331 | chat_topPanelClose: #a6adc8 332 | chat_topPanelLine: #a6adc8 333 | chat_topPanelMessage: #a6adc8 334 | chat_topPanelTitle: #a6adc8 335 | chat_unreadMessagesStartArrowIcon: #1e1e2e 336 | chat_unreadMessagesStartBackground: #cba6f7 337 | chat_unreadMessagesStartText: #1e1e2e 338 | chats_actionBackground: #a6e3a1 339 | chats_actionIcon: #1e1e2e 340 | chats_actionMessage: #a6adc8 341 | chats_actionPressedBackground: #f5c2e7 342 | chats_actionUnreadBackground: #a6e3a1 343 | chats_actionUnreadIcon: #1e1e2e 344 | chats_actionUnreadPressedBackground: #a6e3a1 345 | chats_archiveBackground: #313244 346 | chats_archiveIcon: #cdd6f4 347 | chats_archivePinBackground: #585b70 348 | chats_archiveText: #cdd6f4 349 | chats_attachMessage: #89b4fa 350 | chats_date: #585b70 351 | chats_draft: #cba6f7 352 | chats_mentionIcon: #1e1e2e 353 | chats_menuBackground: #1e1e2e 354 | chats_menuCloud: #1e1e2e 355 | chats_menuCloudBackgroundCats: #89b4fa 356 | chats_menuItemCheck: #dc2286 357 | chats_menuItemIcon: #6c7086 358 | chats_menuItemText: #a6adc8 359 | chats_menuName: #cdd6f4 360 | chats_menuPhone: #a6adc8 361 | chats_menuPhoneCats: #a6adc8 362 | chats_menuTopBackgroundCats: #11111b 363 | chats_message: #cdd6f4 364 | chats_messageArchived: #a6adc8 365 | chats_message_threeLines: #a6adc8 366 | chats_muteIcon: #6c7086 367 | chats_name: #cdd6f4 368 | chats_nameArchived: #a6adc8 369 | chats_nameIcon: #cdd6f4 370 | chats_nameMessage: #89b4fa 371 | chats_nameMessageArchived: #89b4fa 372 | chats_nameMessageArchived_threeLines: #89b4fa 373 | chats_nameMessage_threeLines: #89b4fa 374 | chats_onlineCircle: #a6e3a1 375 | chats_pinnedIcon: #a6adc8 376 | chats_pinnedOverlay: #181825 377 | chats_secretIcon: #a6e3a1 378 | chats_secretName: #a6e3a1 379 | chats_sentCheck: #a6e3a1 380 | chats_sentClock: #a6e3a1 381 | chats_sentError: #eba0ac 382 | chats_sentErrorIcon: #1e1e2e 383 | chats_sentReadCheck: #a6e3a1 384 | chats_tabletSelectedOverlay: #0000000F 385 | chats_unreadCounter: #a6e3a1 386 | chats_unreadCounterMuted: #6c7086 387 | chats_unreadCounterText: #1e1e2e 388 | chats_verifiedBackground: #89b4fa 389 | chats_verifiedCheck: #1e1e2e 390 | checkbox: #a6e3a1 391 | checkboxCheck: #1e1e2e 392 | checkboxDisabled: #6c7086 393 | checkboxSquareBackground: #89b4fa 394 | checkboxSquareCheck: #1e1e2e 395 | checkboxSquareDisabled: #6c7086 396 | checkboxSquareUnchecked: #a6adc8 397 | contacts_inviteBackground: #a6e3a1 398 | contacts_inviteText: #1e1e2e 399 | contextProgressInner1: #89b4fa 400 | contextProgressInner2: #89b4fa 401 | contextProgressInner3: #6c7086 402 | contextProgressInner4: #6c7086 403 | contextProgressOuter1: #a6e3a1 404 | contextProgressOuter2: #1e1e2e 405 | contextProgressOuter3: #1e1e2e 406 | contextProgressOuter4: #cdd6f4 407 | dialogBackground: #1e1e2e 408 | dialogBackgroundGray: #11111b 409 | dialogBadgeBackground: #89b4fa 410 | dialogBadgeText: #1e1e2e 411 | dialogButton: #89b4fa 412 | dialogButtonSelector: #0000000F 413 | dialogCameraIcon: #1e1e2e 414 | dialogCheckboxSquareBackground: #89b4fa 415 | dialogCheckboxSquareCheck: #1e1e2e 416 | dialogCheckboxSquareDisabled: #6c7086 417 | dialogCheckboxSquareUnchecked: #a6adc8 418 | dialogFloatingButton: #89b4fa 419 | dialogFloatingButtonPressed: #89b4fa 420 | dialogFloatingIcon: #1e1e2e 421 | dialogGrayLine: #6c7086 422 | dialogIcon: #cdd6f4 423 | dialogInputField: #a6adc8 424 | dialogInputFieldActivated: #89b4fa 425 | dialogLineProgress: #89b4fa 426 | dialogLineProgressBackground: #6c7086 427 | dialogLinkSelection: #89b4fa33 428 | dialogProgressCircle: #89b4fa 429 | dialogRadioBackground: #6c7086 430 | dialogRadioBackgroundChecked: #89b4fa 431 | dialogRedIcon: #eba0ac 432 | dialogRoundCheckBox: #89b4fa 433 | dialogRoundCheckBoxCheck: #1e1e2e 434 | dialogScrollGlow: #181825 435 | dialogSearchBackground: #a6adc8 436 | dialogSearchHint: #11111b 437 | dialogSearchIcon: #11111b 438 | dialogSearchText: #cdd6f4 439 | dialogShadowLine: #00000012 440 | dialogTextBlack: #cdd6f4 441 | dialogTextBlue2: #89b4fa 442 | dialogTextBlue3: #89b4fa 443 | dialogTextBlue4: #89b4fa 444 | dialogTextBlue: #2F81e66f5CC9 445 | dialogTextGray2: #bac2de 446 | dialogTextGray3: #bac2de 447 | dialogTextGray4: #a6adc8 448 | dialogTextGray: #a6adc8 449 | dialogTextHint: #a6adc8 450 | dialogTextLink: #f5e0dc 451 | dialogTextRed2: #eba0ac 452 | dialogTextRed: #eba0ac 453 | dialogTopBackground: #89b4fa 454 | dialog_inlineProgress: #a6adc8 455 | dialog_inlineProgressBackground: #11111bF6 456 | dialog_liveLocationProgress: #89b4fa 457 | divider: #00000000 458 | emptyListPlaceholder: #6c7086 459 | fastScrollActive: #89b4fa 460 | fastScrollInactive: #6c7086 461 | fastScrollText: #1e1e2e 462 | featuredStickers_addButton: #89b4fa 463 | featuredStickers_addButtonPressed: #89b4fa 464 | featuredStickers_addedIcon: #89b4fa 465 | featuredStickers_buttonProgress: #1e1e2e 466 | featuredStickers_buttonText: #1e1e2e 467 | featuredStickers_delButton: #eba0ac 468 | featuredStickers_delButtonPressed: #eba0ac 469 | featuredStickers_unread: #89b4fa 470 | files_folderIcon: #999999 471 | files_folderIconBackground: #45475a 472 | files_iconText: #1e1e2e 473 | graySection: #45475a 474 | groupcreate_cursor: #f5e0dc 475 | groupcreate_hintText: #6c7086 476 | groupcreate_sectionShadow: #00000000 477 | groupcreate_sectionText: #a6adc8 478 | groupcreate_spanBackground: #45475a 479 | groupcreate_spanDelete: #eba0ac 480 | groupcreate_spanText: #cdd6f4 481 | inappPlayerBackground: #181825 482 | inappPlayerClose: #a6adc8 483 | inappPlayerPerformer: #cdd6f4 484 | inappPlayerPlayPause: #89b4fa 485 | inappPlayerTitle: #a6adc8 486 | key_chat_messagePanelVoiceLock: #A4A4A4 487 | key_chat_messagePanelVoiceLockBackground: #1e1e2e 488 | key_chat_messagePanelVoiceLockShadow: #000000 489 | key_graySectionText: #7F8991 490 | key_player_progressCachedBackground: #E9EFF5 491 | key_sheet_other: #C9CDD3 492 | key_sheet_scrollUp: #E1E4E8 493 | listSelectorSDK21: #0000000F 494 | location_liveLocationProgress: #359FE5 495 | location_placeLocationBackground: #4CA8EA 496 | location_sendLiveLocationBackground: #FF6464 497 | location_sendLiveLocationIcon: #1e1e2e 498 | location_sendLocationBackground: #6DA0D4 499 | location_sendLocationIcon: #1e1e2e 500 | login_progressInner: #E1EAF2 501 | login_progressOuter: #62A0D0 502 | musicPicker_buttonBackground: #5CAFEA 503 | musicPicker_buttonIcon: #1e1e2e 504 | musicPicker_checkbox: #29B6F7 505 | musicPicker_checkboxCheck: #1e1e2e 506 | passport_authorizeBackground: #45ABEF 507 | passport_authorizeBackgroundSelected: #409DDB 508 | passport_authorizeText: #1e1e2e 509 | picker_badge: #29B6F7 510 | picker_badgeText: #1e1e2e 511 | picker_disabledButton: #999999 512 | picker_enabledButton: #19A7E8 513 | player_actionBar: #1e1e2e 514 | player_actionBarItems: #8A8A8A 515 | player_actionBarSelector: #0000000F 516 | player_actionBarSubtitle: #8A8A8A 517 | player_actionBarTitle: #2F3438 518 | player_actionBarTop: #00000099 519 | player_background: #1e1e2e 520 | player_button: #333333 521 | player_buttonActive: #4CA8EA 522 | player_placeholder: #A8A8A8 523 | player_placeholderBackground: #F0F0F0 524 | player_progress: #4B9FE3 525 | player_progressBackground: #E9EFF5 526 | player_time: #8C9296 527 | profile_actionBackground: #cdd6f4 528 | profile_actionIcon: #1e1e2e 529 | profile_actionPressedBackground: #cdd6f4 530 | profile_creatorIcon: #89b4fa 531 | profile_status: #6c7086 532 | profile_title: #cdd6f4 533 | profile_verifiedBackground: #89b4fa 534 | profile_verifiedCheck: #1e1e2e 535 | progressCircle: #527DA3 536 | radioBackground: #B3B3B3 537 | radioBackgroundChecked: #37A9F0 538 | returnToCallBackground: #44A1E3 539 | returnToCallText: #1e1e2e 540 | sessions_devicesImage: #969696 541 | sharedMedia_actionMode: #4687B3 542 | sharedMedia_linkPlaceholder: #F0F3F5 543 | sharedMedia_linkPlaceholderText: #B7BEC3 544 | sharedMedia_photoPlaceholder: #EDF3F7 545 | sharedMedia_startStopLoadIcon: #36A2EE 546 | stickers_menu: #B6BDC5 547 | stickers_menuSelector: #0000000F 548 | switch2Track: #6c7086 549 | switch2TrackChecked: #a6e3a1 550 | switchTrack: #6c7086 551 | switchTrackBlue: #6c7086 552 | switchTrackBlueChecked: #a6e3a1 553 | switchTrackBlueSelector: #404A5317 554 | switchTrackBlueSelectorChecked: #02478121 555 | switchTrackBlueThumb: #1e1e2e 556 | switchTrackBlueThumbChecked: #1e1e2e 557 | switchTrackChecked: #a6e3a1 558 | undo_background: #272F38EA 559 | undo_cancelColor: #85CAFF 560 | undo_infoColor: #1e1e2e 561 | windowBackgroundCheckText: #1e1e2e 562 | windowBackgroundChecked: #89b4fa 563 | windowBackgroundGray: #181825 564 | windowBackgroundGrayShadow: #00000000 565 | windowBackgroundUnchecked: #6c7086 566 | windowBackgroundWhite: #1e1e2e 567 | windowBackgroundWhiteBlackText: #cdd6f4 568 | windowBackgroundWhiteBlueButton: #89b4fa 569 | windowBackgroundWhiteBlueHeader: #89b4fa 570 | windowBackgroundWhiteBlueIcon: #89b4fa 571 | windowBackgroundWhiteBlueText2: #89b4fa 572 | windowBackgroundWhiteBlueText3: #89b4fa 573 | windowBackgroundWhiteBlueText4: #89b4fa 574 | windowBackgroundWhiteBlueText5: #89b4fa 575 | windowBackgroundWhiteBlueText6: #89b4fa 576 | windowBackgroundWhiteBlueText7: #89b4fa 577 | windowBackgroundWhiteBlueText: #89b4fa 578 | windowBackgroundWhiteGrayIcon: #6c7086 579 | windowBackgroundWhiteGrayLine: #98A0A7 580 | windowBackgroundWhiteGrayText2: #a6adc8 581 | windowBackgroundWhiteGrayText3: #a6adc8 582 | windowBackgroundWhiteGrayText4: #a6adc8 583 | windowBackgroundWhiteGrayText5: #a6adc8 584 | windowBackgroundWhiteGrayText6: #a6adc8 585 | windowBackgroundWhiteGrayText7: #a6adc8 586 | windowBackgroundWhiteGrayText8: #a6adc8 587 | windowBackgroundWhiteGrayText: #a6adc8 588 | windowBackgroundWhiteGreenText2: #a6e3a1 589 | windowBackgroundWhiteGreenText: #a6e3a1 590 | windowBackgroundWhiteHintText: #98A0A7 591 | windowBackgroundWhiteInputField: #F2F4F5 592 | windowBackgroundWhiteInputFieldActivated: #89b4fa 593 | windowBackgroundWhiteLinkSelection: #f5e0dc33 594 | windowBackgroundWhiteLinkText: #f5e0dc 595 | windowBackgroundWhiteRedText2: #eba0ac 596 | windowBackgroundWhiteRedText3: #eba0ac 597 | windowBackgroundWhiteRedText4: #eba0ac 598 | windowBackgroundWhiteRedText5: #eba0ac 599 | windowBackgroundWhiteRedText6: #eba0ac 600 | windowBackgroundWhiteRedText: #eba0ac 601 | windowBackgroundWhiteValueText: #89b4fa 602 | -------------------------------------------------------------------------------- /src/mocha/ios: -------------------------------------------------------------------------------- 1 | name: Catppuccin Mocha 2 | shortname: ctp_mocha 3 | dark: true 4 | intro_statusBar: white 5 | intro_primaryText: #cdd6f4 6 | intro_accentText: #a6e3a1 7 | intro_disabledText: #575b55 8 | intro_startButton: #a6e3a1 9 | intro_dot: #bac2de 10 | passcode_bg_top: #585b70 11 | passcode_bg_bottom: #1e1e2e 12 | passcode_button: #313244 13 | root_statusBar: white 14 | root_tabBar_background: #313244 15 | root_tabBar_separator: #11111b 16 | root_tabBar_icon: #7f849c 17 | root_tabBar_selectedIcon: #a6e3a1 18 | root_tabBar_text: #7f849c 19 | root_tabBar_selectedText: #a6e3a1 20 | root_tabBar_badgeBackground: #f38ba8 21 | root_tabBar_badgeStroke: #f38ba8 22 | root_tabBar_badgeText: #11111b 23 | root_navBar_button: #a6e3a1 24 | root_navBar_disabledButton: #575b55 25 | root_navBar_primaryText: #cdd6f4 26 | root_navBar_secondaryText: #bac2de 27 | root_navBar_control: #bac2de 28 | root_navBar_accentText: #a6e3a1 29 | root_navBar_background: #313244 30 | root_navBar_opaqueBackground: #313244 31 | root_navBar_separator: #11111b 32 | root_navBar_badgeFill: #f38ba8 33 | root_navBar_badgeStroke: #f38ba8 34 | root_navBar_badgeText: #11111b 35 | root_navBar_segmentedBg: #1e1e2e 36 | root_navBar_segmentedFg: #313244 37 | root_navBar_segmentedText: #cdd6f4 38 | root_navBar_segmentedDivider: #cdd6f47F 39 | root_searchBar_background: #313244 40 | root_searchBar_accent: #a6e3a1 41 | root_searchBar_inputFill: #1e1e2e 42 | root_searchBar_inputText: #cdd6f4 43 | root_searchBar_inputPlaceholderText: #bac2de 44 | root_searchBar_inputIcon: #bac2de 45 | root_searchBar_inputClearButton: #bac2de 46 | root_searchBar_separator: #1e1e2e 47 | root_keyboard: dark 48 | list_blocksBg: #1e1e2e 49 | list_plainBg: #1e1e2e 50 | list_primaryText: #cdd6f4 51 | list_secondaryText: #cdd6f47F 52 | list_disabledText: #cdd6f47F 53 | list_accent: #a6e3a1 54 | list_highlighted: #a6e3a1 55 | list_destructive: #f38ba8 56 | list_placeholderText: #cdd6f47F 57 | list_itemBlocksBg: #313244 58 | list_itemHighlightedBg: #313244 59 | list_blocksSeparator: #11111b 60 | list_plainSeparator: #11111b 61 | list_disclosureArrow: #cdd6f47F 62 | list_sectionHeaderText: #585b70 63 | list_freeText: #585b70 64 | list_freeTextError: #f38ba8 65 | list_freeTextSuccess: #a6e3a1 66 | list_freeMonoIcon: #585b70 67 | list_switch_frame: #cdd6f47F 68 | list_switch_handle: #11111b 69 | list_switch_content: #a6e3a1 70 | list_switch_positive: #a6e3a1 71 | list_switch_negative: #f38ba8 72 | list_disclosureActions_neutral1_bg: #a6e3a1 73 | list_disclosureActions_neutral1_fg: #ffffff 74 | list_disclosureActions_neutral2_bg: #fab387 75 | list_disclosureActions_neutral2_fg: #ffffff 76 | list_disclosureActions_destructive_bg: #f38ba8 77 | list_disclosureActions_destructive_fg: #ffffff 78 | list_disclosureActions_constructive_bg: #a6e3a1 79 | list_disclosureActions_constructive_fg: #ffffff 80 | list_disclosureActions_accent_bg: #a6e3a1 81 | list_disclosureActions_accent_fg: #ffffff 82 | list_disclosureActions_warning_bg: #fab387 83 | list_disclosureActions_warning_fg: #ffffff 84 | list_disclosureActions_inactive_bg: #1e1e2e 85 | list_disclosureActions_inactive_fg: #cdd6f4 86 | list_check_bg: #a6e3a1 87 | list_check_stroke: #cdd6f47F 88 | list_check_fg: #11111b 89 | list_controlSecondary: #cdd6f47F 90 | list_freeInputField_bg: #313244 91 | list_freeInputField_stroke: #313244 92 | list_freeInputField_placeholder: #cdd6f47F 93 | list_freeInputField_primary: #cdd6f4 94 | list_freeInputField_control: #cdd6f47F 95 | list_mediaPlaceholder: #1e1e2e 96 | list_scrollIndicator: #cdd6f47F 97 | list_pageIndicatorInactive: #cdd6f466 98 | list_inputClearButton: #bac2de 99 | list_itemBarChart_color1: #a6e3a1 100 | list_itemBarChart_color2: #cdd6f47F 101 | list_itemBarChart_color3: #1e1e2e 102 | list_itemInputField_bg: #181825 103 | list_itemInputField_stroke: #181825 104 | list_itemInputField_placeholder: #7f849c 105 | list_itemInputField_primary: #cdd6f4 106 | list_itemInputField_control: #7f849c 107 | chatList_bg: #1e1e2e 108 | chatList_itemSeparator: #11111b 109 | chatList_itemBg: #1e1e2e 110 | chatList_pinnedItemBg: #313244 111 | chatList_itemHighlightedBg: #313244 112 | chatList_pinnedItemHighlightedBg: #313244 113 | chatList_itemSelectedBg: #313244 114 | chatList_title: #cdd6f4 115 | chatList_secretTitle: #a6e3a1 116 | chatList_dateText: #cdd6f47F 117 | chatList_authorName: #cdd6f4 118 | chatList_messageText: #cdd6f47F 119 | chatList_messageHighlightedText: #cdd6f4 120 | chatList_messageDraftText: #f38ba8 121 | chatList_checkmark: #a6e3a1 122 | chatList_pendingIndicator: #cdd6f466 123 | chatList_failedFill: #f38ba8 124 | chatList_failedFg: #cdd6f4 125 | chatList_muteIcon: #cdd6f466 126 | chatList_unreadBadgeActiveBg: #a6e3a1 127 | chatList_unreadBadgeActiveText: #11111b 128 | chatList_unreadBadgeInactiveBg: #cdd6f466 129 | chatList_unreadBadgeInactiveText: #1e1e2e 130 | chatList_reactionBadgeActiveBg: #f38ba8 131 | chatList_pinnedBadge: #cdd6f47F 132 | chatList_pinnedSearchBar: #1e1e2e 133 | chatList_regularSearchBar: #313244 134 | chatList_sectionHeaderBg: #313244 135 | chatList_sectionHeaderText: #cdd6f47F 136 | chatList_verifiedIconBg: #a6e3a1 137 | chatList_verifiedIconFg: #cdd6f4 138 | chatList_secretIcon: #a6e3a1 139 | chatList_pinnedArchiveAvatar_background_top: #89b4fa 140 | chatList_pinnedArchiveAvatar_background_bottom: #89b4fa 141 | chatList_pinnedArchiveAvatar_foreground: #cdd6f4 142 | chatList_unpinnedArchiveAvatar_background_top: #585b70 143 | chatList_unpinnedArchiveAvatar_background_bottom: #585b70 144 | chatList_unpinnedArchiveAvatar_foreground: #1e1e2e 145 | chatList_onlineDot: #a6e3a1 146 | chat_animateMessageColors: false 147 | chat_message_incoming_bubble_withWp_bg: #313244 148 | chat_message_incoming_bubble_withWp_gradientBg: #313244 149 | chat_message_incoming_bubble_withWp_highlightedBg: #313244 150 | chat_message_incoming_bubble_withWp_stroke: #313244 151 | chat_message_incoming_bubble_withWp_reactionInactiveBg: #cdd6f411 152 | chat_message_incoming_bubble_withWp_reactionInactiveFg: #cdd6f4 153 | chat_message_incoming_bubble_withWp_reactionActiveBg: #a6e3a1 154 | chat_message_incoming_bubble_withWp_reactionActiveFg: #cdd6f4 155 | chat_message_incoming_bubble_withWp_reactionInactiveMediaPlaceholder: #11111b19 156 | chat_message_incoming_bubble_withWp_reactionActiveMediaPlaceholder: #11111b19 157 | chat_message_incoming_bubble_withoutWp_bg: #313244 158 | chat_message_incoming_bubble_withoutWp_gradientBg: #313244 159 | chat_message_incoming_bubble_withoutWp_highlightedBg: #313244 160 | chat_message_incoming_bubble_withoutWp_stroke: #313244 161 | chat_message_incoming_bubble_withoutWp_reactionInactiveBg: #cdd6f411 162 | chat_message_incoming_bubble_withoutWp_reactionInactiveFg: #cdd6f4 163 | chat_message_incoming_bubble_withoutWp_reactionActiveBg: #a6e3a1 164 | chat_message_incoming_bubble_withoutWp_reactionActiveFg: #cdd6f4 165 | chat_message_incoming_bubble_withoutWp_reactionInactiveMediaPlaceholder: #11111b19 166 | chat_message_incoming_bubble_withoutWp_reactionActiveMediaPlaceholder: #11111b19 167 | chat_message_incoming_primaryText: #cdd6f4 168 | chat_message_incoming_secondaryText: #cdd6f47F 169 | chat_message_incoming_linkText: #a6e3a1 170 | chat_message_incoming_linkHighlight: #a6e3a17F 171 | chat_message_incoming_scam: #f38ba8 172 | chat_message_incoming_textHighlight: #fab387 173 | chat_message_incoming_accentText: #a6e3a1 174 | chat_message_incoming_accentControl: #a6e3a1 175 | chat_message_incoming_mediaActiveControl: #a6e3a1 176 | chat_message_incoming_mediaInactiveControl: #a6e3a17F 177 | chat_message_incoming_mediaControlInnerBg: #313244 178 | chat_message_incoming_pendingActivity: #cdd6f47F 179 | chat_message_incoming_fileTitle: #a6e3a1 180 | chat_message_incoming_fileDescription: #cdd6f47F 181 | chat_message_incoming_fileDuration: #cdd6f47F 182 | chat_message_incoming_mediaPlaceholder: #1e1e2e 183 | chat_message_incoming_polls_radioButton: #585b70 184 | chat_message_incoming_polls_radioProgress: #a6e3a1 185 | chat_message_incoming_polls_highlight: #a6e3a11E 186 | chat_message_incoming_polls_separator: #11111b 187 | chat_message_incoming_polls_bar: #a6e3a1 188 | chat_message_incoming_polls_barIconForeground: #cdd6f4 189 | chat_message_incoming_polls_barPositive: #a6e3a1 190 | chat_message_incoming_polls_barNegative: #f38ba8 191 | chat_message_incoming_actionButtonsBg_withWp: #1e1e2e7F 192 | chat_message_incoming_actionButtonsBg_withoutWp: #1e1e2e7F 193 | chat_message_incoming_actionButtonsStroke_withWp: #6c708626 194 | chat_message_incoming_actionButtonsStroke_withoutWp: #6c708626 195 | chat_message_incoming_actionButtonsText_withWp: #cdd6f4 196 | chat_message_incoming_actionButtonsText_withoutWp: #cdd6f4 197 | chat_message_incoming_textSelection: #a6e3a133 198 | chat_message_incoming_textSelectionKnob: #a6e3a1 199 | chat_message_outgoing_bubble_withWp_bg: #a6e3a1 200 | chat_message_outgoing_bubble_withWp_gradientBg: #a6e3a1 201 | chat_message_outgoing_bubble_withWp_highlightedBg: #a6e3a1 202 | chat_message_outgoing_bubble_withWp_stroke: clear 203 | chat_message_outgoing_bubble_withWp_reactionInactiveBg: #cdd6f419 204 | chat_message_outgoing_bubble_withWp_reactionInactiveFg: #cdd6f4 205 | chat_message_outgoing_bubble_withWp_reactionActiveBg: #cdd6f4 206 | chat_message_outgoing_bubble_withWp_reactionActiveFg: clear 207 | chat_message_outgoing_bubble_withWp_reactionInactiveMediaPlaceholder: #11111b19 208 | chat_message_outgoing_bubble_withWp_reactionActiveMediaPlaceholder: #11111b19 209 | chat_message_outgoing_bubble_withoutWp_bg: #a6e3a1 210 | chat_message_outgoing_bubble_withoutWp_gradientBg: #a6e3a1 211 | chat_message_outgoing_bubble_withoutWp_highlightedBg: #a6e3a1 212 | chat_message_outgoing_bubble_withoutWp_stroke: clear 213 | chat_message_outgoing_bubble_withoutWp_reactionInactiveBg: #cdd6f419 214 | chat_message_outgoing_bubble_withoutWp_reactionInactiveFg: #cdd6f4 215 | chat_message_outgoing_bubble_withoutWp_reactionActiveBg: #cdd6f4 216 | chat_message_outgoing_bubble_withoutWp_reactionActiveFg: clear 217 | chat_message_outgoing_bubble_withoutWp_reactionInactiveMediaPlaceholder: #11111b19 218 | chat_message_outgoing_bubble_withoutWp_reactionActiveMediaPlaceholder: #11111b19 219 | chat_message_outgoing_primaryText: #11111b 220 | chat_message_outgoing_secondaryText: #11111b7F 221 | chat_message_outgoing_linkText: #11111b 222 | chat_message_outgoing_linkHighlight: #cdd6f47F 223 | chat_message_outgoing_scam: #11111b 224 | chat_message_outgoing_textHighlight: #fab387 225 | chat_message_outgoing_accentText: #11111b 226 | chat_message_outgoing_accentControl: #11111b 227 | chat_message_outgoing_mediaActiveControl: #11111b 228 | chat_message_outgoing_mediaInactiveControl: #11111b7F 229 | chat_message_outgoing_mediaControlInnerBg: #a6e3a1 230 | chat_message_outgoing_pendingActivity: #11111b7F 231 | chat_message_outgoing_fileTitle: #11111b 232 | chat_message_outgoing_fileDescription: #11111b7F 233 | chat_message_outgoing_fileDuration: #11111b7F 234 | chat_message_outgoing_mediaPlaceholder: #585b70 235 | chat_message_outgoing_polls_radioButton: #11111b 236 | chat_message_outgoing_polls_radioProgress: #11111b 237 | chat_message_outgoing_polls_highlight: #11111b1E 238 | chat_message_outgoing_polls_separator: #11111b 239 | chat_message_outgoing_polls_bar: #11111b 240 | chat_message_outgoing_polls_barIconForeground: clear 241 | chat_message_outgoing_polls_barPositive: #cdd6f4 242 | chat_message_outgoing_polls_barNegative: #cdd6f4 243 | chat_message_outgoing_actionButtonsBg_withWp: #1e1e2e7F 244 | chat_message_outgoing_actionButtonsBg_withoutWp: #1e1e2e7F 245 | chat_message_outgoing_actionButtonsStroke_withWp: #6c708626 246 | chat_message_outgoing_actionButtonsStroke_withoutWp: #6c708626 247 | chat_message_outgoing_actionButtonsText_withWp: #cdd6f4 248 | chat_message_outgoing_actionButtonsText_withoutWp: #cdd6f4 249 | chat_message_outgoing_textSelection: #cdd6f433 250 | chat_message_outgoing_textSelectionKnob: #cdd6f4 251 | chat_message_freeform_withWp_bg: #313244 252 | chat_message_freeform_withWp_gradientBg: #313244 253 | chat_message_freeform_withWp_highlightedBg: #313244 254 | chat_message_freeform_withWp_stroke: #313244 255 | chat_message_freeform_withWp_reactionInactiveBg: #313244E5 256 | chat_message_freeform_withWp_reactionInactiveFg: #cdd6f4 257 | chat_message_freeform_withWp_reactionActiveBg: #89b4fa 258 | chat_message_freeform_withWp_reactionActiveFg: #cdd6f4 259 | chat_message_freeform_withWp_reactionInactiveMediaPlaceholder: #11111b19 260 | chat_message_freeform_withWp_reactionActiveMediaPlaceholder: #11111b19 261 | chat_message_freeform_withoutWp_bg: #313244 262 | chat_message_freeform_withoutWp_gradientBg: #313244 263 | chat_message_freeform_withoutWp_highlightedBg: #313244 264 | chat_message_freeform_withoutWp_stroke: #313244 265 | chat_message_freeform_withoutWp_reactionInactiveBg: #313244E5 266 | chat_message_freeform_withoutWp_reactionInactiveFg: #cdd6f4 267 | chat_message_freeform_withoutWp_reactionActiveBg: #89b4fa 268 | chat_message_freeform_withoutWp_reactionActiveFg: #cdd6f4 269 | chat_message_freeform_withoutWp_reactionInactiveMediaPlaceholder: #11111b19 270 | chat_message_freeform_withoutWp_reactionActiveMediaPlaceholder: #11111b19 271 | chat_message_infoPrimaryText: #cdd6f4 272 | chat_message_infoLinkText: #a6e3a1 273 | chat_message_outgoingCheck: #11111b7F 274 | chat_message_mediaDateAndStatusBg: #11111b4C 275 | chat_message_mediaDateAndStatusText: #cdd6f4 276 | chat_message_shareButtonBg_withWp: #1e1e2e7F 277 | chat_message_shareButtonBg_withoutWp: #1e1e2e7F 278 | chat_message_shareButtonStroke_withWp: #6c708626 279 | chat_message_shareButtonStroke_withoutWp: #6c708626 280 | chat_message_shareButtonFg_withWp: #9399b2 281 | chat_message_shareButtonFg_withoutWp: #9399b2 282 | chat_message_mediaOverlayControl_bg: #11111b99 283 | chat_message_mediaOverlayControl_fg: #cdd6f4 284 | chat_message_selectionControl_bg: #a6e3a1 285 | chat_message_selectionControl_stroke: #cdd6f4 286 | chat_message_selectionControl_fg: #cdd6f4 287 | chat_message_deliveryFailed_bg: #f38ba8 288 | chat_message_deliveryFailed_fg: #cdd6f4 289 | chat_message_mediaHighlightOverlay: #cdd6f499 290 | chat_message_stickerPlaceholder_withWp: #3132447F 291 | chat_message_stickerPlaceholder_withoutWp: #3132447F 292 | chat_message_stickerPlaceholderShimmer_withWp: #cdd6f40C 293 | chat_message_stickerPlaceholderShimmer_withoutWp: #cdd6f40C 294 | chat_serviceMessage_components_withDefaultWp_bg: #1e1e2e 295 | chat_serviceMessage_components_withDefaultWp_primaryText: #cdd6f4 296 | chat_serviceMessage_components_withDefaultWp_linkHighlight: #cdd6f41E 297 | chat_serviceMessage_components_withDefaultWp_scam: #f38ba8 298 | chat_serviceMessage_components_withDefaultWp_dateFillStatic: #1e1e2e99 299 | chat_serviceMessage_components_withDefaultWp_dateFillFloat: #1e1e2e33 300 | chat_serviceMessage_components_withCustomWp_bg: #1e1e2e 301 | chat_serviceMessage_components_withCustomWp_primaryText: #cdd6f4 302 | chat_serviceMessage_components_withCustomWp_linkHighlight: #cdd6f41E 303 | chat_serviceMessage_components_withCustomWp_scam: #f38ba8 304 | chat_serviceMessage_components_withCustomWp_dateFillStatic: #1e1e2e99 305 | chat_serviceMessage_components_withCustomWp_dateFillFloat: #1e1e2e33 306 | chat_serviceMessage_unreadBarBg: #313244 307 | chat_serviceMessage_unreadBarStroke: #313244 308 | chat_serviceMessage_unreadBarText: #cdd6f4 309 | chat_serviceMessage_dateText_withWp: #cdd6f4 310 | chat_serviceMessage_dateText_withoutWp: #cdd6f4 311 | chat_inputPanel_panelBg: #313244 312 | chat_inputPanel_panelSeparator: #11111b 313 | chat_inputPanel_panelControlAccent: #a6e3a1 314 | chat_inputPanel_panelControl: #cdd6f47F 315 | chat_inputPanel_panelControlDisabled: #7f849c7F 316 | chat_inputPanel_panelControlDestructive: #f38ba8 317 | chat_inputPanel_inputBg: #1e1e2e 318 | chat_inputPanel_inputStroke: #1e1e2e 319 | chat_inputPanel_inputPlaceholder: #cdd6f466 320 | chat_inputPanel_inputText: #cdd6f4 321 | chat_inputPanel_inputControl: #cdd6f466 322 | chat_inputPanel_actionControlBg: #a6e3a1 323 | chat_inputPanel_actionControlFg: #11111b 324 | chat_inputPanel_primaryText: #cdd6f4 325 | chat_inputPanel_secondaryText: #cdd6f47F 326 | chat_inputPanel_mediaRecordDot: #a6e3a1 327 | chat_inputPanel_mediaRecordControl_button: #a6e3a1 328 | chat_inputPanel_mediaRecordControl_micLevel: #a6e3a133 329 | chat_inputPanel_mediaRecordControl_activeIcon: #cdd6f4 330 | chat_inputMediaPanel_panelSeparator: #313244 331 | chat_inputMediaPanel_panelIcon: #cdd6f47F 332 | chat_inputMediaPanel_panelHighlightedIconBg: #cdd6f41F 333 | chat_inputMediaPanel_panelHighlightedIcon: #cdd6f4AC 334 | chat_inputMediaPanel_panelContentVibrantOverlay: #cdd6f47F 335 | chat_inputMediaPanel_panelContentControlVibrantOverlay: #cdd6f44C 336 | chat_inputMediaPanel_panelContentControlVibrantSelection: #cdd6f419 337 | chat_inputMediaPanel_panelContentControlOpaqueOverlay: #cdd6f44C 338 | chat_inputMediaPanel_panelContentControlOpaqueSelection: #cdd6f44C 339 | chat_inputMediaPanel_stickersBg: #1e1e2e 340 | chat_inputMediaPanel_stickersSectionText: #cdd6f47F 341 | chat_inputMediaPanel_stickersSearchBg: #6c7086 342 | chat_inputMediaPanel_stickersSearchPlaceholder: #6c7086 343 | chat_inputMediaPanel_stickersSearchPrimary: #cdd6f4 344 | chat_inputMediaPanel_stickersSearchControl: #6c7086 345 | chat_inputMediaPanel_gifsBg: #1e1e2e 346 | chat_inputMediaPanel_bg: #1e1e2eBF 347 | chat_inputButtonPanel_panelBg: #11111b 348 | chat_inputButtonPanel_panelSeparator: #313244 349 | chat_inputButtonPanel_buttonBg: #45475a 350 | chat_inputButtonPanel_buttonStroke: #11111b 351 | chat_inputButtonPanel_buttonHighlightedBg: #45475aB2 352 | chat_inputButtonPanel_buttonHighlightedStroke: #11111b 353 | chat_inputButtonPanel_buttonText: #cdd6f4 354 | chat_historyNav_bg: #313244 355 | chat_historyNav_stroke: #11111b 356 | chat_historyNav_fg: #cdd6f47F 357 | chat_historyNav_badgeBg: #a6e3a1 358 | chat_historyNav_badgeStroke: #a6e3a1 359 | chat_historyNav_badgeText: #cdd6f4 360 | actionSheet_dim: #11111b7F 361 | actionSheet_bgType: dark 362 | actionSheet_opaqueItemBg: #313244 363 | actionSheet_itemBg: #313244CC 364 | actionSheet_opaqueItemHighlightedBg: #313244 365 | actionSheet_itemHighlightedBg: #31324433 366 | actionSheet_opaqueItemSeparator: #1e1e2e 367 | actionSheet_standardActionText: #a6e3a1 368 | actionSheet_destructiveActionText: #f38ba8 369 | actionSheet_disabledActionText: #cdd6f47F 370 | actionSheet_primaryText: #cdd6f4 371 | actionSheet_secondaryText: #cdd6f47F 372 | actionSheet_controlAccent: #a6e3a1 373 | actionSheet_inputBg: #1e1e2e 374 | actionSheet_inputHollowBg: #1e1e2e 375 | actionSheet_inputBorder: #1e1e2e 376 | actionSheet_inputPlaceholder: #bac2de 377 | actionSheet_inputText: #cdd6f4 378 | actionSheet_inputClearButton: #bac2de 379 | actionSheet_checkContent: #11111b 380 | contextMenu_dim: #11111b99 381 | contextMenu_background: #313244C6 382 | contextMenu_itemSeparator: #cdd6f426 383 | contextMenu_sectionSeparator: #11111b33 384 | contextMenu_itemBg: #11111b00 385 | contextMenu_itemHighlightedBg: #cdd6f426 386 | contextMenu_primary: #cdd6f4 387 | contextMenu_secondary: #cdd6f47F 388 | contextMenu_destructive: #f38ba8 389 | notification_bg: #313244 390 | notification_primaryText: #cdd6f4 391 | notification_expanded_bgType: dark 392 | notification_expanded_navBar_background: #313244 393 | notification_expanded_navBar_primaryText: #cdd6f4 394 | notification_expanded_navBar_control: #a6e3a1 395 | notification_expanded_navBar_separator: #11111b 396 | chart_labels: #a6adc899 397 | chart_helperLines: #7f849c59 398 | chart_strongLines: #7f849c59 399 | chart_barStrongLines: #a6adc872 400 | chart_detailsText: #cdd6f4 401 | chart_detailsArrow: #cdd6f4 402 | chart_detailsView: #181825 403 | chart_rangeViewFrame: #45475a 404 | chart_rangeViewMarker: #cdd6f4 405 | -------------------------------------------------------------------------------- /src/mocha/macos: -------------------------------------------------------------------------------- 1 | //metadata 2 | 3 | name = Catppuccin Mocha 4 | shortname = ctp_mocha 5 | isDark = 1 6 | tinted = 1 7 | 8 | //Variables 9 | 10 | parent = dark 11 | copyright = Catppuccin 12 | basicAccent = #89b4fa 13 | background = #1e1e2e 14 | text = #cdd6f4 15 | grayText = #bac2de 16 | link = #74c7e6 17 | accent = #89b4fa 18 | redUI = #f38ba8 19 | greenUI = #a6e3a1 20 | blackTransparent = #11111b 21 | grayTransparent = #31324499 22 | grayUI = #1e1e2e 23 | darkGrayText = #a6adc8 24 | accentSelect = #89dceb 25 | selectText = #89dceb 26 | border = #313244 27 | grayBackground = #45475a 28 | grayForeground = #45475a 29 | grayIcon = #a6e3a1 30 | accentIcon = #eba0ac 31 | badgeMuted = #7f849c 32 | badge = #eba0ac 33 | monospacedCodeBubble_outgoing = #cdd6f4 34 | indicatorColor = #cdd6f4 35 | selectMessage = #1e1e2e 36 | monospacedPre = #89b4fa 37 | monospacedCode = #89b4fa 38 | monospacedPreBubble_incoming = #cdd6f4 39 | monospacedPreBubble_outgoing = #cdd6f4 40 | monospacedCodeBubble_incoming = #cdd6f4 41 | selectTextBubble_incoming = #a6e3a1 42 | selectTextBubble_outgoing = #89dceb 43 | bubbleBackground_incoming = #313244 44 | bubbleBackgroundTop_outgoing = #1e1e2e 45 | bubbleBackgroundBottom_outgoing = #1e1e2e 46 | bubbleBorder_incoming = #313244 47 | bubbleBorder_outgoing = #1e1e2e 48 | grayTextBubble_incoming = #bac2de 49 | grayTextBubble_outgoing = #cdd6f4 50 | grayIconBubble_incoming = #bac2de 51 | grayIconBubble_outgoing = #bac2de 52 | accentIconBubble_incoming = #bac2de 53 | accentIconBubble_outgoing = #cdd6f4CC 54 | linkBubble_incoming = #74c7e6 55 | //sapphirelinkBubble_outgoing = #74c7e6 56 | //sapphire #cdd6f4_incoming = #cdd6f4 #cdd6f4_outgoing = #cdd6f4 57 | selectMessageBubble = #45475a 58 | fileActivityBackground = #89b4faCC 59 | fileActivityForeground = #cdd6f4 60 | fileActivityBackgroundBubble_incoming = #bac2de 61 | fileActivityBackgroundBubble_outgoing = #cdd6f4 62 | fileActivityForegroundBubble_incoming = #45475a 63 | fileActivityForegroundBubble_outgoing = #89dceb 64 | waveformBackground = #bac2deB3 65 | waveformForeground = #89b4faCC 66 | waveformBackgroundBubble_incoming = #bac2de 67 | waveformBackgroundBubble_outgoing = #bac2de 68 | waveformForegroundBubble_incoming = #cdd6f4 69 | waveformForegroundBubble_outgoing = #cdd6f4 70 | webPreviewActivity = #74c7e6 71 | //sapphirewebPreviewActivityBubble_incoming = #cdd6f4 72 | webPreviewActivityBubble_outgoing = #cdd6f4 73 | redBubble_incoming = #f38ba8 74 | redBubble_outgoing = #f38ba8 75 | greenBubble_incoming = #a6e3a1 76 | greenBubble_outgoing = #a6e3a1 77 | chatReplyTitle = #74c7e6 78 | //sapphirechatReplyTextEnabled = #cdd6f4 79 | c#7f849cyTextDisabled = #bac2de 80 | chatReplyTitleBubble_incoming = #cdd6f4 81 | chatReplyTitleBubble_outgoing = #cdd6f4 82 | chatReplyTextEnabledBubble_incoming = #cdd6f4 83 | chatReplyTextEnabledBubble_outgoing = #cdd6f4 84 | c#7f849cyTextDisabledBuboming = #bac2de 85 | c#7f849cyTextDisabledBubgoing = #bac2de 86 | groupPeerNameRed = #f38ba8 87 | groupPeerNameOrange = #fab387 88 | groupPeerNameViolet = #cba6f7 89 | groupPeerNameGreen = #94e2d5 90 | groupPeerNameCyan = #94e2d5 91 | groupPeerNameLightBlue = #74c7e6 92 | //sapphiregroupPeerNameBlue = #89b4fa 93 | peerAvatarRedTop = #fab387 94 | peerAvatarRedBottom = #eba0ac 95 | peerAvatarOrangeTop = #f9e2af 96 | peerAvatarOrangeBottom = #fab387 97 | peerAvatarVioletTop = #b4befe 98 | peerAvatarVioletBottom = #b4befe 99 | peerAvatarGreenTop = #a6e3a1 100 | peerAvatarGreenBottom = #a6e3a1 101 | peerAvatarCyanTop = #94e2d5 102 | peerAvatarCyanBottom = #94e2d5 103 | peerAvatarBlueTop = #89dceb 104 | peerAvatarBlueBottom = #74c7e6 105 | //sapphirepeerAvatarPinkTop = #94e2d5 106 | peerAvatarPinkBottom = #cba6f7 107 | bubbleBackgroundHighlight_incoming = #45475a 108 | bubbleBackgroundHighlight_outgoing = #89dceb 109 | chatDateActive = #313244 110 | c#7f849cText = #bac2de 111 | revealAction_neutral1_background = #89b4fa 112 | revealAction_neutral1_foreground = #cdd6f4 113 | revealAction_neutral2_background = #f2cdcd 114 | revealAction_neutral2_foreground = #cdd6f4 115 | revealAction_destructive_background = #f38ba8 116 | revealAction_destructive_foreground = #cdd6f4 117 | revealAction_constructive_background = #a6e3a1 118 | revealAction_constructive_foreground = #cdd6f4 119 | revealAction_accent_background = #89b4fa 120 | revealAction_accent_foreground = #cdd6f4 121 | revealAction_warning_background = #f2cdcd 122 | revealAction_warning_foreground = #cdd6f4 123 | revealAction_inactive_background = #45475a 124 | revealAction_inactive_foreground = #cdd6f4 125 | //Parameter is usually using for minimalistic chat mode, but also works as fallback for bubbles if wallpaper not installed 126 | chatBackground = #313244 127 | listBackground = #313244 128 | l#7f849cText = #bac2de 129 | grayHighlight = #313244 130 | focusAnimationColor = #74c7e6 131 | //sapphirepremium = #cba6f7 132 | //Parameter only affects bubble chat mode. Available values=none, builtin, hexColor or url to cloud backgound like a t.me/bg/%slug% 133 | wallpaper = t.me/bg/dKs_8KaE6EjOAAAAJdGVJxSR5uU 134 | --------------------------------------------------------------------------------