├── .editorconfig ├── .github └── workflows │ └── release-version.yml ├── .gitignore ├── LICENSE ├── README.md ├── dev ├── extended_colorschemes.png ├── extended_colorschemes.psd ├── extractor.js └── theme_image.psd ├── manifest.json ├── package.json ├── snippets ├── custom-rainbow-colors.css ├── extended-colorschemes.css ├── fastppuccin-colorful-frames.css └── fastppuccin-rainbow-folders.css ├── theme.css ├── theme_image.png ├── theme_image_big.png ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | insert_final_newline = true 8 | indent_style = tab 9 | indent_size = 4 10 | tab_width = 4 -------------------------------------------------------------------------------- /.github/workflows/release-version.yml: -------------------------------------------------------------------------------- 1 | name: Publish new theme version 2 | 3 | on: 4 | push: 5 | # Sequence of patterns matched against refs/tags 6 | tags: 7 | - "*" # Push events to matching any tag format, i.e. 1.0, 20.15.10 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - uses: actions/checkout@v3 15 | - name: Bundle 16 | id: bundle 17 | run: | 18 | ls 19 | echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)" 20 | - name: Create Release 21 | id: create_release 22 | uses: actions/create-release@v1 23 | env: 24 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 | VERSION: ${{ github.ref }} 26 | with: 27 | tag_name: ${{ github.ref }} 28 | release_name: ${{ github.ref }} 29 | draft: false 30 | prerelease: false 31 | - name: Upload manifest.json 32 | id: upload-manifest 33 | uses: actions/upload-release-asset@v1 34 | env: 35 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 36 | with: 37 | upload_url: ${{ steps.create_release.outputs.upload_url }} 38 | asset_path: ./manifest.json 39 | asset_name: manifest.json 40 | asset_content_type: application/json 41 | - name: Upload theme.css 42 | id: upload-css 43 | uses: actions/upload-release-asset@v1 44 | env: 45 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 46 | with: 47 | upload_url: ${{ steps.create_release.outputs.upload_url }} 48 | asset_path: ./theme.css 49 | asset_name: theme.css 50 | asset_content_type: text/css 51 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # vscode 2 | .vscode 3 | 4 | # Intellij 5 | *.iml 6 | .idea 7 | 8 | # npm 9 | node_modules 10 | 11 | # Exclude sourcemaps 12 | *.map 13 | 14 | # Exclude macOS Finder (System Explorer) View States 15 | .DS_Store 16 | 17 | anuppuccin.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FastPpuccin 2 | 3 | A high-performance clone of the [AnuPpuccin](https://github.com/AnubisNekhet/AnuPpuccin) theme by AnubisNekhet, optimized for speed. 4 | 5 | 6 | 7 | ## About 8 | 9 | FastPpuccin is a streamlined version of the popular AnuPpuccin theme, designed with performance in mind. It maintains the beautiful aesthetics of the original while removing most features and configurations to achieve maximum speed. 10 | 11 | In my testing, performance is comparable to using the default theme. 12 | 13 | This theme supports **[AnuPpuccin Themes Extended](https://github.com/AnubisNekhet/AnuPpuccin/blob/main/snippets/extended-colorschemes.css)** ([mirror](snippets/extended-colorschemes.css)). 14 | 15 | 16 | 17 | ## But why? 18 | 19 | Like probably most of you reading this, I love Obsidian and spend a lot of time tinkering with it (arguably to the detriment of actual work). AnuPpuccin with Nord Dark is my favorite theme; however, for big vaults and complex notes, it can become so slow that even typing is delayed. 20 | 21 | After trying out different themes and snippets, and not satisfied with performance, I started to make my own, copying the best features from AnuPpuccin. What started as a snippet evolved into a complete theme with settings and support for [AnuPpuccin Themes Extended](https://github.com/AnubisNekhet/AnuPpuccin/blob/main/snippets/extended-colorschemes.css) so you can use whatever color scheme you fancy. 22 | 23 | Bug reports and feature suggestions are welcome, but keep in mind that I probably won't add features that increase complexity and might hinder performance. 24 | 25 | ## Features 26 | 27 | - High-Performance, with the same great look! 28 | - **Support for [AnuPpuccin Themes Extended](https://github.com/AnubisNekhet/AnuPpuccin/blob/main/snippets/extended-colorschemes.css)** ([mirror](snippets/extended-colorschemes.css)) 29 | - AnuPpuccin's **Rainbow folders** avaiable as a separate snippet: [Rainbow Folers](snippets/fastppuccin-rainbow-folders.css) 30 | - It also supports [Custom Rainbow Colors](https://github.com/AnubisNekhet/AnuPpuccin/blob/main/snippets/custom-rainbow-colors.css) from AnuPpuccin. ([mirror](snippets/custom-rainbow-colors.css)) 31 | - Core features preserved: 32 | - Force theme accents 33 | - Custom checkboxes 34 | - File icons 35 | - Colored headings 36 | - File extension labels alignment 37 | - Safari-style tabs 38 | - Table hover transition effect (from [Blue Topaz](https://github.com/PKM-er/Blue-Topaz_Obsidian-css) theme) 39 | 40 | ## Settings 41 | 42 | The theme includes essential settings for customization: 43 | 44 | - Light/Dark theme flavor selection 45 | - File name title color options (Normal, Muted, Accent, H1) 46 | - Toggle options for: 47 | - Force theme accents 48 | - Custom checkboxes 49 | - File icons 50 | - Colored headings 51 | - File extension label alignment 52 | - Safari tabs 53 | - External link icons 54 | - Table hover transition 55 | 56 | ## Credits 57 | 58 | - Original [AnuPpuccin](https://github.com/AnubisNekhet/AnuPpuccin) theme by AnubisNekhet. Almost all code is lifted from AnuPpuccin, with some minor bug fixes and some hard-coded variables that are required for FastPpuccin. 59 | - Table hover transition from [Blue Topaz](https://github.com/PKM-er/Blue-Topaz_Obsidian-css) theme by PKM-er 60 | 61 | ## License 62 | 63 | This theme is licensed under GPL-3.0, as is the original AnuPpuccin theme. 64 | 65 | Blue Topaz is licensed under MIT: 66 | 67 | Partial style(s) is(are) sourced or adapted from Blue Topaz (https://github.com/PKM-er/Blue-Topaz_Obsidian-css), and I would like to express my appreciation to WhyI (https://github.com/whyt-byte) and pkmer.cn (https://pkmer.cn). 68 | 69 | ## Support 70 | 71 | If you enjoy this theme, consider supporting the *original author*: 72 | 73 | Buy Me A Coffee 74 | 75 | If you also want to *support me*, you can do so here: 76 | 77 | 78 | -------------------------------------------------------------------------------- /dev/extended_colorschemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostViking09/obsidian-fastppuccin/44df25802faaec3a17bc596f0a56ac93cdd95e32/dev/extended_colorschemes.png -------------------------------------------------------------------------------- /dev/extended_colorschemes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostViking09/obsidian-fastppuccin/44df25802faaec3a17bc596f0a56ac93cdd95e32/dev/extended_colorschemes.psd -------------------------------------------------------------------------------- /dev/extractor.js: -------------------------------------------------------------------------------- 1 | /* 2 | This script is used to extract the color scheme from the current theme and generate CSS variables for the color scheme. 3 | The theme file has been rewritten since, so this script is only for historical reference. 4 | */ 5 | 6 | // Function to convert RGB to HEX 7 | function rgbToHex(rgb) { 8 | // Extract numbers from RGB format: rgb(x, y, z) 9 | const rgbValues = rgb.match(/\d+/g); 10 | if (!rgbValues || rgbValues.length !== 3) return rgb; // Fallback in case of an issue 11 | 12 | // Convert each RGB value to a two-digit HEX 13 | return `#${rgbValues 14 | .map((val) => { 15 | const hex = parseInt(val).toString(16); 16 | return hex.length === 1 ? "0" + hex : hex; // Ensure two characters 17 | }) 18 | .join("")}`; 19 | } 20 | 21 | function getColorOfSelector(selector) { 22 | const element = document.querySelector(selector); 23 | if (!element) return null; 24 | 25 | const computedStyle = window.getComputedStyle(element); 26 | return rgbToHex(computedStyle.color); 27 | } 28 | 29 | function getBGColorOfSelector(selector) { 30 | const element = document.querySelector(selector); 31 | if (!element) return null; 32 | 33 | const computedStyle = window.getComputedStyle(element); 34 | return rgbToHex(computedStyle.backgroundColor); 35 | } 36 | 37 | 38 | // Function to get hex colors and generate CSS block 39 | function generateCSSVariables(schemename) { 40 | let cssOutput = `/* --- Color scheme (light): ${schemename} --- */\n.theme-light.color-scheme-light-${schemename} {\n`; // Start the CSS block 41 | 42 | /* // AccentColor 43 | let selector = document.querySelector("input[type=checkbox]:checked"); 44 | let computedStyle = window.getComputedStyle(selector); 45 | let color = computedStyle.color; 46 | let hexColor = rgbToHex(color); 47 | cssOutput += ` --color-accent: ${hexColor};\n`; */ 48 | 49 | // Text colors 50 | cssOutput += ` --text-normal: ${rgbToHex(getComputedStyle(document.querySelector("body")).getPropertyValue('--text-normal'))};\n` 51 | cssOutput += ` --text-muted: ${rgbToHex(getComputedStyle(document.querySelector("body")).getPropertyValue('--text-muted'))};\n` 52 | 53 | // AccentColor 54 | cssOutput += ` --color-accent: ${rgbToHex(getComputedStyle(document.querySelector("body")).getPropertyValue('--color-accent'))};\n` 55 | 56 | // Background colors 57 | cssOutput += ` --background-primary: ${rgbToHex(getComputedStyle(document.querySelector("body")).getPropertyValue('--background-primary'))};\n` 58 | cssOutput += ` --background-secondary: ${rgbToHex(getComputedStyle(document.querySelector("body")).getPropertyValue('--background-secondary'))};\n` 59 | cssOutput += ` --background-secondary-alt: ${rgbToHex(getComputedStyle(document.querySelector("body")).getPropertyValue('--background-secondary-alt'))};\n` // Heading colors 60 | cssOutput += ` --background-modifier-border: ${rgbToHex(getComputedStyle(document.querySelector("body")).getPropertyValue('--background-modifier-border'))};\n` 61 | 62 | 63 | // Heading colors 64 | cssOutput += `}\n.theme-light.color-scheme-light-${schemename}.colored-headers {\n` 65 | 66 | for (let i = 1; i <= 6; i++) { 67 | const header = document.querySelector(`.cm-header-${i}`); 68 | if (header) { 69 | const computedStyle = window.getComputedStyle(header); 70 | const color = computedStyle.color; 71 | const hexColor = rgbToHex(color); 72 | cssOutput += ` --h${i}-color: ${hexColor};\n`; 73 | } else { 74 | console.warn(`.cm-header-${i}: Not found in the document`); 75 | } 76 | } 77 | cssOutput += `}\n` 78 | console.log(cssOutput); 79 | } -------------------------------------------------------------------------------- /dev/theme_image.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostViking09/obsidian-fastppuccin/44df25802faaec3a17bc596f0a56ac93cdd95e32/dev/theme_image.psd -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FastPpuccin", 3 | "version": "1.1.3", 4 | "minAppVersion": "1.0.0", 5 | "author": "LostViking09", 6 | "authorUrl": "https://github.com/LostViking09/" 7 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sample-obsidian-theme", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "version": "node version-bump.mjs && git add manifest.json versions.json" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /snippets/extended-colorschemes.css: -------------------------------------------------------------------------------- 1 | /* Mirrored from AnuPpuccin - https://github.com/AnubisNekhet/AnuPpuccin/blob/main/snippets/extended-colorschemes.css */ 2 | 3 | @charset "UTF-8"; 4 | /* @settings 5 | name: AnuPpuccin Themes Extended 6 | id: anuppuccin-theme-settings-extended 7 | settings: 8 | - 9 | id: anp-theme-ext-light 10 | title: Toggle extended light theme 11 | type: class-toggle 12 | - 13 | id: anp-theme-ext-dark 14 | title: Toggle extended dark theme 15 | type: class-toggle 16 | - 17 | id: anp-theme-ext-amoled 18 | title: Toggle amoled black on all themes 19 | type: class-toggle 20 | - 21 | id: catppuccin-theme-extended 22 | title: Light theme flavor 23 | description: Select your preferred light mode flavor 24 | type: class-select 25 | allowEmpty: false 26 | default: ctp-nord-light 27 | options: 28 | - 29 | label: Atom 30 | value: ctp-atom-light 31 | - 32 | label: Everforest 33 | value: ctp-everforest-light 34 | - 35 | label: Gruvbox 36 | value: ctp-gruvbox-light 37 | - 38 | label: Material Mint 39 | value: ctp-material-mint-light 40 | - 41 | label: Luminescence 42 | value: ctp-luminescence-light 43 | - 44 | label: Nord 45 | value: ctp-nord-light 46 | - 47 | label: Notion 48 | value: ctp-notion-light 49 | - 50 | label: Sandy Beaches 51 | value: ctp-sandy-beaches-light 52 | - 53 | label: Solarized 54 | value: ctp-solarized-light 55 | - 56 | id: catppuccin-theme-dark-extended 57 | title: Dark theme flavor 58 | description: Select your preferred dark mode flavor 59 | type: class-select 60 | allowEmpty: false 61 | default: ctp-nord-dark 62 | options: 63 | - 64 | label: AMOLED Dark 65 | value: ctp-amoled-dark 66 | - 67 | label: Atom 68 | value: ctp-atom-dark 69 | - 70 | label: Biscuit 71 | value: ctp-biscuit-dark 72 | - 73 | label: Coffee 74 | value: ctp-coffee-dark 75 | - 76 | label: Dark (Generic) 77 | value: ctp-generic-dark 78 | - 79 | label: Dracula 80 | value: ctp-dracula 81 | - 82 | label: Everforest 83 | value: ctp-everforest-dark 84 | - 85 | label: Flexoki 86 | value: ctp-flexoki-dark 87 | - 88 | label: Gruvbox 89 | value: ctp-gruvbox-dark 90 | - 91 | label: Kanagawa 92 | value: ctp-kanagawa-dark 93 | - 94 | label: Material Mint 95 | value: ctp-material-mint-dark 96 | - 97 | label: Nord 98 | value: ctp-nord-dark 99 | - 100 | label: Notion 101 | value: ctp-notion-dark 102 | - 103 | label: Nord Dark (Custom palette) 104 | value: ctp-nord-darker 105 | - 106 | label: Rosé Pine 107 | value: ctp-rosepine-dark 108 | - 109 | label: Rosebox 110 | value: ctp-rosebox 111 | - 112 | label: Royal Velvet 113 | value: ctp-royal-velvet 114 | - 115 | label: Solarized 116 | value: ctp-solarized-dark 117 | - 118 | label: Thorns 119 | value: ctp-thorns 120 | */ 121 | .theme-dark.anp-theme-ext-dark.ctp-rosebox { 122 | --ctp-accent: 165, 117, 98; 123 | --background-modifier-border: rgb(51, 51, 51); 124 | } 125 | 126 | .theme-light.anp-theme-ext-light.ctp-nord-light { 127 | --ctp-accent: 136, 192, 208; 128 | } 129 | 130 | .theme-light.anp-theme-ext-light.ctp-material-mint-light { 131 | --ctp-accent: var(--ctp-teal); 132 | } 133 | 134 | .theme-dark.anp-theme-ext-dark.ctp-material-mint-dark { 135 | --ctp-accent: var(--ctp-teal); 136 | } 137 | 138 | .theme-dark.anp-theme-ext-dark.ctp-nord-dark { 139 | --ctp-accent: 136, 192, 208; 140 | } 141 | 142 | .theme-dark.anp-theme-ext-dark.ctp-nord-darker { 143 | --ctp-accent: 136, 192, 208; 144 | } 145 | 146 | .theme-light.anp-theme-ext-light.ctp-atom-light { 147 | --ctp-accent: var(--ctp-blue); 148 | } 149 | 150 | .theme-dark.anp-theme-ext-dark.ctp-atom-dark { 151 | --ctp-accent: var(--ctp-blue); 152 | } 153 | 154 | .theme-dark.anp-theme-ext-amoled { 155 | --ctp-ext-surface2: 80, 80, 80 !important; 156 | --ctp-ext-surface1: 50, 50, 50 !important; 157 | --ctp-ext-surface0: 30, 30, 30 !important; 158 | --ctp-ext-base: 10, 10, 10 !important; 159 | --ctp-ext-mantle: 5, 5, 5 !important; 160 | --ctp-ext-crust: 0, 0, 0 !important; 161 | } 162 | 163 | .theme-light.anp-theme-ext-light.ctp-atom-light, 164 | .anp-theme-ext-light.ctp-atom-light .themed-color-wrapper > .theme-light { 165 | --ctp-ext-rosewater: 229 166 | , 167 | 148 168 | , 169 | 121 ; 170 | --ctp-ext-flamingo: 197 171 | , 172 | 103 173 | , 174 | 131 ; 175 | --ctp-ext-pink: 166 176 | , 177 | 37 178 | , 179 | 104 ; 180 | --ctp-ext-mauve: 166 181 | , 182 | 37 183 | , 184 | 164 ; 185 | --ctp-ext-red: 231 186 | , 187 | 85 188 | , 189 | 69 ; 190 | --ctp-ext-maroon: 231 191 | , 192 | 101 193 | , 194 | 69 ; 195 | --ctp-ext-peach: 227 196 | , 197 | 86 198 | , 199 | 73 ; 200 | --ctp-ext-yellow: 152 201 | , 202 | 104 203 | , 204 | 0 ; 205 | --ctp-ext-green: 78 206 | , 207 | 162 208 | , 209 | 76 ; 210 | --ctp-ext-teal: 0 211 | , 212 | 188 213 | , 214 | 182 ; 215 | --ctp-ext-sky: 0 216 | , 217 | 132 218 | , 219 | 188 ; 220 | --ctp-ext-sapphire: 0 221 | , 222 | 119 223 | , 224 | 188 ; 225 | --ctp-ext-blue: 61 226 | , 227 | 116 228 | , 229 | 246 ; 230 | --ctp-ext-lavender: 152 231 | , 232 | 84 233 | , 234 | 151 ; 235 | --ctp-ext-text: 56 236 | , 237 | 58 238 | , 239 | 66 ; 240 | --ctp-ext-subtext1: 77 241 | , 242 | 80 243 | , 244 | 91 ; 245 | --ctp-ext-subtext0: 99 246 | , 247 | 102 248 | , 249 | 116 ; 250 | --ctp-ext-overlay2: 123 251 | , 252 | 124 253 | , 254 | 138 ; 255 | --ctp-ext-overlay1: 148 256 | , 257 | 148 258 | , 259 | 158 ; 260 | --ctp-ext-overlay0: 174 261 | , 262 | 173 263 | , 264 | 179 ; 265 | --ctp-ext-surface2: 201 266 | , 267 | 197 268 | , 269 | 197 ; 270 | --ctp-ext-surface1: 218 271 | , 272 | 216 273 | , 274 | 216 ; 275 | --ctp-ext-surface0: 237 276 | , 277 | 237 278 | , 279 | 237 ; 280 | --ctp-ext-base: 250 281 | , 282 | 250 283 | , 284 | 250 ; 285 | --ctp-ext-mantle: 234 286 | , 287 | 234 288 | , 289 | 235 ; 290 | --ctp-ext-crust: 219 291 | , 292 | 219 293 | , 294 | 220 ; 295 | } 296 | 297 | .theme-dark.anp-theme-ext-dark.ctp-amoled-dark, 298 | .anp-theme-ext-dark.ctp-amoled-dark .themed-color-wrapper > .theme-dark { 299 | --ctp-ext-rosewater: 245 300 | , 301 | 224 302 | , 303 | 220 ; 304 | --ctp-ext-flamingo: 242 305 | , 306 | 205 307 | , 308 | 205 ; 309 | --ctp-ext-pink: 245 310 | , 311 | 194 312 | , 313 | 231 ; 314 | --ctp-ext-mauve: 203 315 | , 316 | 166 317 | , 318 | 247 ; 319 | --ctp-ext-red: 243 320 | , 321 | 139 322 | , 323 | 168 ; 324 | --ctp-ext-maroon: 235 325 | , 326 | 160 327 | , 328 | 172 ; 329 | --ctp-ext-peach: 250 330 | , 331 | 179 332 | , 333 | 135 ; 334 | --ctp-ext-yellow: 249 335 | , 336 | 226 337 | , 338 | 175 ; 339 | --ctp-ext-green: 166 340 | , 341 | 227 342 | , 343 | 161 ; 344 | --ctp-ext-teal: 148 345 | , 346 | 226 347 | , 348 | 213 ; 349 | --ctp-ext-sky: 137 350 | , 351 | 220 352 | , 353 | 235 ; 354 | --ctp-ext-sapphire: 116 355 | , 356 | 199 357 | , 358 | 236 ; 359 | --ctp-ext-blue: 135 360 | , 361 | 176 362 | , 363 | 249 ; 364 | --ctp-ext-lavender: 180 365 | , 366 | 190 367 | , 368 | 254 ; 369 | --ctp-ext-text: 255 370 | , 371 | 255 372 | , 373 | 255 ; 374 | --ctp-ext-subtext1: 210 375 | , 376 | 210 377 | , 378 | 210 ; 379 | --ctp-ext-subtext0: 189 380 | , 381 | 189 382 | , 383 | 189 ; 384 | --ctp-ext-overlay2: 168 385 | , 386 | 168 387 | , 388 | 168 ; 389 | --ctp-ext-overlay1: 147 390 | , 391 | 147 392 | , 393 | 147 ; 394 | --ctp-ext-overlay0: 126 395 | , 396 | 126 397 | , 398 | 126 ; 399 | --ctp-ext-surface2: 80 400 | , 401 | 80 402 | , 403 | 80 ; 404 | --ctp-ext-surface1: 50 405 | , 406 | 50 407 | , 408 | 50 ; 409 | --ctp-ext-surface0: 30 410 | , 411 | 30 412 | , 413 | 30 ; 414 | --ctp-ext-base: 10 415 | , 416 | 10 417 | , 418 | 10 ; 419 | --ctp-ext-mantle: 5 420 | , 421 | 5 422 | , 423 | 5 ; 424 | --ctp-ext-crust: 0 425 | , 426 | 0 427 | , 428 | 0 ; 429 | } 430 | 431 | .theme-dark.anp-theme-ext-dark.ctp-atom-dark, 432 | .anp-theme-ext-dark.ctp-atom-dark .themed-color-wrapper > .theme-dark { 433 | --ctp-ext-rosewater: 226 434 | , 435 | 196 436 | , 437 | 168 ; 438 | --ctp-ext-flamingo: 238 439 | , 440 | 187 441 | , 442 | 216 ; 443 | --ctp-ext-pink: 221 444 | , 445 | 120 446 | , 447 | 211 ; 448 | --ctp-ext-mauve: 198 449 | , 450 | 120 451 | , 452 | 221 ; 453 | --ctp-ext-red: 224 454 | , 455 | 108 456 | , 457 | 117 ; 458 | --ctp-ext-maroon: 224 459 | , 460 | 121 461 | , 462 | 108 ; 463 | --ctp-ext-peach: 209 464 | , 465 | 154 466 | , 467 | 102 ; 468 | --ctp-ext-yellow: 229 469 | , 470 | 192 471 | , 472 | 123 ; 473 | --ctp-ext-green: 152 474 | , 475 | 195 476 | , 477 | 121 ; 478 | --ctp-ext-teal: 86 479 | , 480 | 182 481 | , 482 | 194 ; 483 | --ctp-ext-sky: 83 484 | , 485 | 185 486 | , 487 | 174 ; 488 | --ctp-ext-sapphire: 93 489 | , 490 | 185 491 | , 492 | 187 ; 493 | --ctp-ext-blue: 97 494 | , 495 | 175 496 | , 497 | 239 ; 498 | --ctp-ext-lavender: 170 499 | , 500 | 127 501 | , 502 | 183 ; 503 | --ctp-ext-text: 221 504 | , 505 | 222 506 | , 507 | 223 ; 508 | --ctp-ext-subtext1: 171 509 | , 510 | 171 511 | , 512 | 171 ; 513 | --ctp-ext-subtext0: 135 514 | , 515 | 135 516 | , 517 | 135 ; 518 | --ctp-ext-overlay2: 108 519 | , 520 | 115 521 | , 522 | 132 ; 523 | --ctp-ext-overlay1: 96 524 | , 525 | 102 526 | , 527 | 118 ; 528 | --ctp-ext-overlay0: 80 529 | , 530 | 85 531 | , 532 | 98 ; 533 | --ctp-ext-surface2: 66 534 | , 535 | 73 536 | , 537 | 88 ; 538 | --ctp-ext-surface1: 57 539 | , 540 | 63 541 | , 542 | 76 ; 543 | --ctp-ext-surface0: 48 544 | , 545 | 53 546 | , 547 | 64 ; 548 | --ctp-ext-base: 39 549 | , 550 | 43 551 | , 552 | 52 ; 553 | --ctp-ext-mantle: 33 554 | , 555 | 37 556 | , 557 | 43 ; 558 | --ctp-ext-crust: 26 559 | , 560 | 30 561 | , 562 | 36 ; 563 | } 564 | 565 | .theme-dark.anp-theme-ext-dark.ctp-biscuit-dark, 566 | .anp-theme-ext-dark.ctp-biscuit-dark .themed-color-wrapper > .theme-dark { 567 | --ctp-ext-rosewater: 219 568 | , 569 | 177 570 | , 571 | 127 ; 572 | --ctp-ext-flamingo: 205 573 | , 574 | 98 575 | , 576 | 123 ; 577 | --ctp-ext-pink: 174 578 | , 579 | 63 580 | , 581 | 130 ; 582 | --ctp-ext-mauve: 123 583 | , 584 | 61 585 | , 586 | 121 ; 587 | --ctp-ext-red: 207 588 | , 589 | 34 590 | , 591 | 62 ; 592 | --ctp-ext-maroon: 207 593 | , 594 | 48 595 | , 596 | 34 ; 597 | --ctp-ext-peach: 227 598 | , 599 | 156 600 | , 601 | 69 ; 602 | --ctp-ext-yellow: 227 603 | , 604 | 187 605 | , 606 | 69 ; 607 | --ctp-ext-green: 149 608 | , 609 | 154 610 | , 611 | 107 ; 612 | --ctp-ext-teal: 118 613 | , 614 | 143 615 | , 616 | 128 ; 617 | --ctp-ext-sky: 118 618 | , 619 | 143 620 | , 621 | 134 ; 622 | --ctp-ext-sapphire: 79 623 | , 624 | 84 625 | , 626 | 118 ; 627 | --ctp-ext-blue: 97 628 | , 629 | 79 630 | , 631 | 118 ; 632 | --ctp-ext-lavender: 117 633 | , 634 | 109 635 | , 636 | 148 ; 637 | --ctp-ext-text: 255 638 | , 639 | 233 640 | , 641 | 199 ; 642 | --ctp-ext-subtext1: 220 643 | , 644 | 201 645 | , 646 | 188 ; 647 | --ctp-ext-subtext0: 194 648 | , 649 | 178 650 | , 651 | 178 ; 652 | --ctp-ext-overlay2: 174 653 | , 654 | 152 655 | , 656 | 152 ; 657 | --ctp-ext-overlay1: 156 658 | , 659 | 129 660 | , 661 | 129 ; 662 | --ctp-ext-overlay0: 140 663 | , 664 | 110 665 | , 666 | 110 ; 667 | --ctp-ext-surface2: 114 668 | , 669 | 90 670 | , 671 | 90 ; 672 | --ctp-ext-surface1: 100 673 | , 674 | 79 675 | , 676 | 79 ; 677 | --ctp-ext-surface0: 83 678 | , 679 | 65 680 | , 681 | 65 ; 682 | --ctp-ext-base: 69 683 | , 684 | 54 685 | , 686 | 54 ; 687 | --ctp-ext-mantle: 45 688 | , 689 | 36 690 | , 691 | 36 ; 692 | --ctp-ext-crust: 26 693 | , 694 | 21 695 | , 696 | 21 ; 697 | } 698 | 699 | .theme-dark.anp-theme-ext-dark.ctp-coffee-dark, 700 | .anp-theme-ext-dark.ctp-coffee-dark .themed-color-wrapper > .theme-dark { 701 | --ctp-ext-rosewater: 236 702 | , 703 | 222 704 | , 705 | 213 ; 706 | --ctp-ext-flamingo: 234 707 | , 708 | 195 709 | , 710 | 214 ; 711 | --ctp-ext-pink: 234 712 | , 713 | 159 714 | , 715 | 194 ; 716 | --ctp-ext-mauve: 215 717 | , 718 | 159 719 | , 720 | 234 ; 721 | --ctp-ext-red: 234 722 | , 723 | 159 724 | , 725 | 159 ; 726 | --ctp-ext-maroon: 234 727 | , 728 | 169 729 | , 730 | 159 ; 731 | --ctp-ext-peach: 234 732 | , 733 | 178 734 | , 735 | 159 ; 736 | --ctp-ext-yellow: 234 737 | , 738 | 201 739 | , 740 | 159 ; 741 | --ctp-ext-green: 174 742 | , 743 | 213 744 | , 745 | 165 ; 746 | --ctp-ext-teal: 164 747 | , 748 | 234 749 | , 750 | 192 ; 751 | --ctp-ext-sky: 174 752 | , 753 | 224 754 | , 755 | 206 ; 756 | --ctp-ext-sapphire: 163 757 | , 758 | 225 759 | , 760 | 235 ; 761 | --ctp-ext-blue: 163 762 | , 763 | 200 764 | , 765 | 235 ; 766 | --ctp-ext-lavender: 182 767 | , 768 | 186 769 | , 770 | 226 ; 771 | --ctp-ext-text: 250 772 | , 773 | 218 774 | , 775 | 195 ; 776 | --ctp-ext-subtext1: 247 777 | , 778 | 204 779 | , 780 | 172 ; 781 | --ctp-ext-subtext0: 235 782 | , 783 | 192 784 | , 785 | 160 ; 786 | --ctp-ext-overlay2: 199 787 | , 788 | 163 789 | , 790 | 136 ; 791 | --ctp-ext-overlay1: 173 792 | , 793 | 144 794 | , 795 | 124 ; 796 | --ctp-ext-overlay0: 120 797 | , 798 | 102 799 | , 800 | 96 ; 801 | --ctp-ext-surface2: 94 802 | , 803 | 84 804 | , 805 | 86 ; 806 | --ctp-ext-surface1: 85 807 | , 808 | 77 809 | , 810 | 82 ; 811 | --ctp-ext-surface0: 76 812 | , 813 | 70 814 | , 815 | 78 ; 816 | --ctp-ext-base: 58 817 | , 818 | 56 819 | , 820 | 69 ; 821 | --ctp-ext-mantle: 47 822 | , 823 | 46 824 | , 825 | 56 ; 826 | --ctp-ext-crust: 38 827 | , 828 | 37 829 | , 830 | 45 ; 831 | } 832 | 833 | .theme-dark.anp-theme-ext-dark.ctp-dracula, 834 | .anp-theme-ext-dark.ctp-dracula .themed-color-wrapper > .theme-dark { 835 | --ctp-ext-rosewater: 246 836 | , 837 | 201 838 | , 839 | 153 ; 840 | --ctp-ext-flamingo: 245 841 | , 842 | 189 843 | , 844 | 166 ; 845 | --ctp-ext-pink: 228 846 | , 847 | 157 848 | , 849 | 248 ; 850 | --ctp-ext-mauve: 189 851 | , 852 | 147 853 | , 854 | 249 ; 855 | --ctp-ext-red: 255 856 | , 857 | 85 858 | , 859 | 85 ; 860 | --ctp-ext-maroon: 230 861 | , 862 | 102 863 | , 864 | 102 ; 865 | --ctp-ext-peach: 255 866 | , 867 | 184 868 | , 869 | 108 ; 870 | --ctp-ext-yellow: 241 871 | , 872 | 250 873 | , 874 | 140 ; 875 | --ctp-ext-green: 80 876 | , 877 | 250 878 | , 879 | 123 ; 880 | --ctp-ext-teal: 104 881 | , 882 | 219 883 | , 884 | 211 ; 885 | --ctp-ext-sky: 139 886 | , 887 | 233 888 | , 889 | 253 ; 890 | --ctp-ext-sapphire: 104 891 | , 892 | 197 893 | , 894 | 240 ; 895 | --ctp-ext-blue: 95 896 | , 897 | 126 898 | , 899 | 222 ; 900 | --ctp-ext-lavender: 197 901 | , 902 | 146 903 | , 904 | 222 ; 905 | --ctp-ext-text: 248 906 | , 907 | 248 908 | , 909 | 242 ; 910 | --ctp-ext-subtext1: 211 911 | , 912 | 211 913 | , 914 | 197 ; 915 | --ctp-ext-subtext0: 191 916 | , 917 | 191 918 | , 919 | 181 ; 920 | --ctp-ext-overlay2: 139 921 | , 922 | 143 923 | , 924 | 167 ; 925 | --ctp-ext-overlay1: 110 926 | , 927 | 114 928 | , 929 | 145 ; 930 | --ctp-ext-overlay0: 88 931 | , 932 | 92 933 | , 934 | 116 ; 935 | --ctp-ext-surface2: 68 936 | , 937 | 71 938 | , 939 | 90 ; 940 | --ctp-ext-surface1: 56 941 | , 942 | 59 943 | , 944 | 76 ; 945 | --ctp-ext-surface0: 48 946 | , 947 | 50 948 | , 949 | 65 ; 950 | --ctp-ext-base: 40 951 | , 952 | 42 953 | , 954 | 54 ; 955 | --ctp-ext-mantle: 33 956 | , 957 | 34 958 | , 959 | 44 ; 960 | --ctp-ext-crust: 26 961 | , 962 | 27 963 | , 964 | 35 ; 965 | } 966 | 967 | .theme-light.anp-theme-ext-light.ctp-everforest-light, 968 | .anp-theme-ext-light.ctp-everforest-light .themed-color-wrapper > .theme-light { 969 | --ctp-ext-rosewater: 222 970 | , 971 | 177 972 | , 973 | 145 ; 974 | --ctp-ext-flamingo: 221 975 | , 976 | 181 977 | , 978 | 194 ; 979 | --ctp-ext-pink: 233 980 | , 981 | 130 982 | , 983 | 190 ; 984 | --ctp-ext-mauve: 184 985 | , 986 | 122 987 | , 988 | 156 ; 989 | --ctp-ext-red: 248 990 | , 991 | 85 992 | , 993 | 82 ; 994 | --ctp-ext-maroon: 248 995 | , 996 | 104 997 | , 998 | 82 ; 999 | --ctp-ext-peach: 245 1000 | , 1001 | 125 1002 | , 1003 | 38 ; 1004 | --ctp-ext-yellow: 191 1005 | , 1006 | 152 1007 | , 1008 | 61 ; 1009 | --ctp-ext-green: 137 1010 | , 1011 | 156 1012 | , 1013 | 64 ; 1014 | --ctp-ext-teal: 86 1015 | , 1016 | 157 1017 | , 1018 | 121 ; 1019 | --ctp-ext-sky: 86 1020 | , 1021 | 157 1022 | , 1023 | 139 ; 1024 | --ctp-ext-sapphire: 86 1025 | , 1026 | 157 1027 | , 1028 | 138 ; 1029 | --ctp-ext-blue: 90 1030 | , 1031 | 147 1032 | , 1033 | 162 ; 1034 | --ctp-ext-lavender: 208 1035 | , 1036 | 161 1037 | , 1038 | 187 ; 1039 | --ctp-ext-text: 92 1040 | , 1041 | 106 1042 | , 1043 | 114 ; 1044 | --ctp-ext-subtext1: 114 1045 | , 1046 | 125 1047 | , 1048 | 132 ; 1049 | --ctp-ext-subtext0: 135 1050 | , 1051 | 150 1052 | , 1053 | 134 ; 1054 | --ctp-ext-overlay2: 147 1055 | , 1056 | 159 1057 | , 1058 | 145 ; 1059 | --ctp-ext-overlay1: 164 1060 | , 1061 | 173 1062 | , 1063 | 158 ; 1064 | --ctp-ext-overlay0: 223 1065 | , 1066 | 219 1067 | , 1068 | 200 ; 1069 | --ctp-ext-surface2: 227 1070 | , 1071 | 224 1072 | , 1073 | 204 ; 1074 | --ctp-ext-surface1: 237 1075 | , 1076 | 234 1077 | , 1078 | 213 ; 1079 | --ctp-ext-surface0: 243 1080 | , 1081 | 239 1082 | , 1083 | 218 ; 1084 | --ctp-ext-base: 253 1085 | , 1086 | 246 1087 | , 1088 | 227 ; 1089 | --ctp-ext-mantle: 246 1090 | , 1091 | 241 1092 | , 1093 | 221 ; 1094 | --ctp-ext-crust: 240 1095 | , 1096 | 237 1097 | , 1098 | 216 ; 1099 | } 1100 | 1101 | .theme-dark.anp-theme-ext-dark.ctp-everforest-dark, 1102 | .anp-theme-ext-dark.ctp-everforest-dark .themed-color-wrapper > .theme-dark { 1103 | --ctp-ext-rosewater: 231 1104 | , 1105 | 198 1106 | , 1107 | 155 ; 1108 | --ctp-ext-flamingo: 224 1109 | , 1110 | 186 1111 | , 1112 | 207 ; 1113 | --ctp-ext-pink: 227 1114 | , 1115 | 150 1116 | , 1117 | 174 ; 1118 | --ctp-ext-mauve: 184 1119 | , 1120 | 123 1121 | , 1122 | 157 ; 1123 | --ctp-ext-red: 218 1124 | , 1125 | 99 1126 | , 1127 | 98 ; 1128 | --ctp-ext-maroon: 218 1129 | , 1130 | 116 1131 | , 1132 | 98 ; 1133 | --ctp-ext-peach: 215 1134 | , 1135 | 127 1136 | , 1137 | 72 ; 1138 | --ctp-ext-yellow: 191 1139 | , 1140 | 152 1141 | , 1142 | 61 ; 1143 | --ctp-ext-green: 137 1144 | , 1145 | 156 1146 | , 1147 | 64 ; 1148 | --ctp-ext-teal: 86 1149 | , 1150 | 157 1151 | , 1152 | 121 ; 1153 | --ctp-ext-sky: 86 1154 | , 1155 | 157 1156 | , 1157 | 144 ; 1158 | --ctp-ext-sapphire: 86 1159 | , 1160 | 156 1161 | , 1162 | 157 ; 1163 | --ctp-ext-blue: 90 1164 | , 1165 | 147 1166 | , 1167 | 162 ; 1168 | --ctp-ext-lavender: 180 1169 | , 1170 | 144 1171 | , 1172 | 202 ; 1173 | --ctp-ext-text: 211 1174 | , 1175 | 198 1176 | , 1177 | 170 ; 1178 | --ctp-ext-subtext1: 182 1179 | , 1180 | 192 1181 | , 1182 | 180 ; 1183 | --ctp-ext-subtext0: 154 1184 | , 1185 | 167 1186 | , 1187 | 157 ; 1188 | --ctp-ext-overlay2: 133 1189 | , 1190 | 146 1191 | , 1192 | 137 ; 1193 | --ctp-ext-overlay1: 127 1194 | , 1195 | 137 1196 | , 1197 | 125 ; 1198 | --ctp-ext-overlay0: 81 1199 | , 1200 | 91 1201 | , 1202 | 97 ; 1203 | --ctp-ext-surface2: 74 1204 | , 1205 | 85 1206 | , 1207 | 91 ; 1208 | --ctp-ext-surface1: 64 1209 | , 1210 | 76 1211 | , 1212 | 81 ; 1213 | --ctp-ext-surface0: 55 1214 | , 1215 | 66 1216 | , 1217 | 71 ; 1218 | --ctp-ext-base: 47 1219 | , 1220 | 56 1221 | , 1222 | 62 ; 1223 | --ctp-ext-mantle: 39 1224 | , 1225 | 47 1226 | , 1227 | 52 ; 1228 | --ctp-ext-crust: 34 1229 | , 1230 | 40 1231 | , 1232 | 44 ; 1233 | } 1234 | 1235 | .theme-dark.anp-theme-ext-dark.ctp-flexoki-dark, 1236 | .anp-theme-ext-dark.ctp-flexoki-dark .themed-color-wrapper > .theme-dark { 1237 | --ctp-ext-rosewater: 245 1238 | , 1239 | 224 1240 | , 1241 | 220 ; 1242 | --ctp-ext-flamingo: 242 1243 | , 1244 | 205 1245 | , 1246 | 205 ; 1247 | --ctp-ext-pink: 245 1248 | , 1249 | 194 1250 | , 1251 | 231 ; 1252 | --ctp-ext-mauve: 203 1253 | , 1254 | 166 1255 | , 1256 | 247 ; 1257 | --ctp-ext-red: 243 1258 | , 1259 | 139 1260 | , 1261 | 168 ; 1262 | --ctp-ext-maroon: 235 1263 | , 1264 | 160 1265 | , 1266 | 172 ; 1267 | --ctp-ext-peach: 250 1268 | , 1269 | 179 1270 | , 1271 | 135 ; 1272 | --ctp-ext-yellow: 249 1273 | , 1274 | 226 1275 | , 1276 | 175 ; 1277 | --ctp-ext-green: 166 1278 | , 1279 | 227 1280 | , 1281 | 161 ; 1282 | --ctp-ext-teal: 148 1283 | , 1284 | 226 1285 | , 1286 | 213 ; 1287 | --ctp-ext-sky: 137 1288 | , 1289 | 220 1290 | , 1291 | 235 ; 1292 | --ctp-ext-sapphire: 116 1293 | , 1294 | 199 1295 | , 1296 | 236 ; 1297 | --ctp-ext-blue: 135 1298 | , 1299 | 176 1300 | , 1301 | 249 ; 1302 | --ctp-ext-lavender: 180 1303 | , 1304 | 190 1305 | , 1306 | 254 ; 1307 | --ctp-ext-text: 207 1308 | , 1309 | 206 1310 | , 1311 | 196 ; 1312 | --ctp-ext-subtext1: 179 1313 | , 1314 | 177 1315 | , 1316 | 168 ; 1317 | --ctp-ext-subtext0: 158 1318 | , 1319 | 156 1320 | , 1321 | 148 ; 1322 | --ctp-ext-overlay2: 136 1323 | , 1324 | 134 1325 | , 1326 | 129 ; 1327 | --ctp-ext-overlay1: 123 1328 | , 1329 | 122 1330 | , 1331 | 116 ; 1332 | --ctp-ext-overlay0: 111 1333 | , 1334 | 110 1335 | , 1336 | 105 ; 1337 | --ctp-ext-surface2: 87 1338 | , 1339 | 86 1340 | , 1341 | 83 ; 1342 | --ctp-ext-surface1: 64 1343 | , 1344 | 62 1345 | , 1346 | 60 ; 1347 | --ctp-ext-surface0: 52 1348 | , 1349 | 51 1350 | , 1351 | 49 ; 1352 | --ctp-ext-base: 28 1353 | , 1354 | 27 1355 | , 1356 | 26 ; 1357 | --ctp-ext-mantle: 16 1358 | , 1359 | 15 1360 | , 1361 | 15 ; 1362 | --ctp-ext-crust: 8 1363 | , 1364 | 7 1365 | , 1366 | 7 ; 1367 | } 1368 | 1369 | .theme-dark.anp-theme-ext-dark.ctp-generic-dark, 1370 | .anp-theme-ext-dark.ctp-generic-dark .themed-color-wrapper > .theme-dark { 1371 | --ctp-ext-rosewater: 245 1372 | , 1373 | 224 1374 | , 1375 | 220 ; 1376 | --ctp-ext-flamingo: 242 1377 | , 1378 | 205 1379 | , 1380 | 205 ; 1381 | --ctp-ext-pink: 245 1382 | , 1383 | 194 1384 | , 1385 | 231 ; 1386 | --ctp-ext-mauve: 203 1387 | , 1388 | 166 1389 | , 1390 | 247 ; 1391 | --ctp-ext-red: 243 1392 | , 1393 | 139 1394 | , 1395 | 168 ; 1396 | --ctp-ext-maroon: 235 1397 | , 1398 | 160 1399 | , 1400 | 172 ; 1401 | --ctp-ext-peach: 250 1402 | , 1403 | 179 1404 | , 1405 | 135 ; 1406 | --ctp-ext-yellow: 249 1407 | , 1408 | 226 1409 | , 1410 | 175 ; 1411 | --ctp-ext-green: 166 1412 | , 1413 | 227 1414 | , 1415 | 161 ; 1416 | --ctp-ext-teal: 148 1417 | , 1418 | 226 1419 | , 1420 | 213 ; 1421 | --ctp-ext-sky: 137 1422 | , 1423 | 220 1424 | , 1425 | 235 ; 1426 | --ctp-ext-sapphire: 116 1427 | , 1428 | 199 1429 | , 1430 | 236 ; 1431 | --ctp-ext-blue: 135 1432 | , 1433 | 176 1434 | , 1435 | 249 ; 1436 | --ctp-ext-lavender: 180 1437 | , 1438 | 190 1439 | , 1440 | 254 ; 1441 | --ctp-ext-text: 255 1442 | , 1443 | 255 1444 | , 1445 | 255 ; 1446 | --ctp-ext-subtext1: 210 1447 | , 1448 | 210 1449 | , 1450 | 210 ; 1451 | --ctp-ext-subtext0: 189 1452 | , 1453 | 189 1454 | , 1455 | 189 ; 1456 | --ctp-ext-overlay2: 168 1457 | , 1458 | 168 1459 | , 1460 | 168 ; 1461 | --ctp-ext-overlay1: 147 1462 | , 1463 | 147 1464 | , 1465 | 147 ; 1466 | --ctp-ext-overlay0: 126 1467 | , 1468 | 126 1469 | , 1470 | 126 ; 1471 | --ctp-ext-surface2: 105 1472 | , 1473 | 105 1474 | , 1475 | 105 ; 1476 | --ctp-ext-surface1: 84 1477 | , 1478 | 84 1479 | , 1480 | 84 ; 1481 | --ctp-ext-surface0: 63 1482 | , 1483 | 63 1484 | , 1485 | 63 ; 1486 | --ctp-ext-base: 42 1487 | , 1488 | 42 1489 | , 1490 | 42 ; 1491 | --ctp-ext-mantle: 21 1492 | , 1493 | 21 1494 | , 1495 | 21 ; 1496 | --ctp-ext-crust: 0 1497 | , 1498 | 0 1499 | , 1500 | 0 ; 1501 | } 1502 | 1503 | .theme-dark.anp-theme-ext-dark.ctp-gruvbox-dark, 1504 | .anp-theme-ext-dark.ctp-gruvbox-dark .themed-color-wrapper > .theme-dark { 1505 | --ctp-ext-rosewater: 243 1506 | , 1507 | 128 1508 | , 1509 | 25 ; 1510 | --ctp-ext-flamingo: 207 1511 | , 1512 | 162 1513 | , 1514 | 174 ; 1515 | --ctp-ext-pink: 177 1516 | , 1517 | 98 1518 | , 1519 | 118 ; 1520 | --ctp-ext-mauve: 177 1521 | , 1522 | 98 1523 | , 1524 | 134 ; 1525 | --ctp-ext-red: 204 1526 | , 1527 | 36 1528 | , 1529 | 29 ; 1530 | --ctp-ext-maroon: 204 1531 | , 1532 | 49 1533 | , 1534 | 29 ; 1535 | --ctp-ext-peach: 214 1536 | , 1537 | 93 1538 | , 1539 | 14 ; 1540 | --ctp-ext-yellow: 215 1541 | , 1542 | 153 1543 | , 1544 | 33 ; 1545 | --ctp-ext-green: 152 1546 | , 1547 | 151 1548 | , 1549 | 26 ; 1550 | --ctp-ext-teal: 102 1551 | , 1552 | 152 1553 | , 1554 | 26 ; 1555 | --ctp-ext-sky: 26 1556 | , 1557 | 152 1558 | , 1559 | 76 ; 1560 | --ctp-ext-sapphire: 26 1561 | , 1562 | 133 1563 | , 1564 | 152 ; 1565 | --ctp-ext-blue: 69 1566 | , 1567 | 133 1568 | , 1569 | 136 ; 1570 | --ctp-ext-lavender: 146 1571 | , 1572 | 111 1573 | , 1574 | 175 ; 1575 | --ctp-ext-text: 251 1576 | , 1577 | 241 1578 | , 1579 | 199 ; 1580 | --ctp-ext-subtext1: 213 1581 | , 1582 | 196 1583 | , 1584 | 161 ; 1585 | --ctp-ext-subtext0: 189 1586 | , 1587 | 174 1588 | , 1589 | 147 ; 1590 | --ctp-ext-overlay2: 151 1591 | , 1592 | 137 1593 | , 1594 | 125 ; 1595 | --ctp-ext-overlay1: 124 1596 | , 1597 | 111 1598 | , 1599 | 100 ; 1600 | --ctp-ext-overlay0: 102 1601 | , 1602 | 92 1603 | , 1604 | 84 ; 1605 | --ctp-ext-surface2: 80 1606 | , 1607 | 73 1608 | , 1609 | 69 ; 1610 | --ctp-ext-surface1: 60 1611 | , 1612 | 56 1613 | , 1614 | 54 ; 1615 | --ctp-ext-surface0: 50 1616 | , 1617 | 48 1618 | , 1619 | 47 ; 1620 | --ctp-ext-base: 40 1621 | , 1622 | 40 1623 | , 1624 | 40 ; 1625 | --ctp-ext-mantle: 29 1626 | , 1627 | 32 1628 | , 1629 | 33 ; 1630 | --ctp-ext-crust: 19 1631 | , 1632 | 21 1633 | , 1634 | 22 ; 1635 | } 1636 | 1637 | .theme-light.anp-theme-ext-light.ctp-gruvbox-light, 1638 | .anp-theme-ext-light.ctp-gruvbox-light .themed-color-wrapper > .theme-light { 1639 | --ctp-ext-rosewater: 243 1640 | , 1641 | 128 1642 | , 1643 | 25 ; 1644 | --ctp-ext-flamingo: 207 1645 | , 1646 | 162 1647 | , 1648 | 174 ; 1649 | --ctp-ext-pink: 177 1650 | , 1651 | 98 1652 | , 1653 | 118 ; 1654 | --ctp-ext-mauve: 177 1655 | , 1656 | 98 1657 | , 1658 | 134 ; 1659 | --ctp-ext-red: 204 1660 | , 1661 | 36 1662 | , 1663 | 29 ; 1664 | --ctp-ext-maroon: 204 1665 | , 1666 | 49 1667 | , 1668 | 29 ; 1669 | --ctp-ext-peach: 214 1670 | , 1671 | 93 1672 | , 1673 | 14 ; 1674 | --ctp-ext-yellow: 215 1675 | , 1676 | 153 1677 | , 1678 | 33 ; 1679 | --ctp-ext-green: 152 1680 | , 1681 | 151 1682 | , 1683 | 26 ; 1684 | --ctp-ext-teal: 102 1685 | , 1686 | 152 1687 | , 1688 | 26 ; 1689 | --ctp-ext-sky: 26 1690 | , 1691 | 152 1692 | , 1693 | 76 ; 1694 | --ctp-ext-sapphire: 26 1695 | , 1696 | 133 1697 | , 1698 | 152 ; 1699 | --ctp-ext-blue: 69 1700 | , 1701 | 133 1702 | , 1703 | 136 ; 1704 | --ctp-ext-lavender: 146 1705 | , 1706 | 111 1707 | , 1708 | 175 ; 1709 | --ctp-ext-text: 40 1710 | , 1711 | 40 1712 | , 1713 | 40 ; 1714 | --ctp-ext-subtext1: 80 1715 | , 1716 | 73 1717 | , 1718 | 69 ; 1719 | --ctp-ext-subtext0: 102 1720 | , 1721 | 92 1722 | , 1723 | 84 ; 1724 | --ctp-ext-overlay2: 149 1725 | , 1726 | 131 1727 | , 1728 | 106 ; 1729 | --ctp-ext-overlay1: 168 1730 | , 1731 | 153 1732 | , 1733 | 133 ; 1734 | --ctp-ext-overlay0: 189 1735 | , 1736 | 174 1737 | , 1738 | 147 ; 1739 | --ctp-ext-surface2: 214 1740 | , 1741 | 196 1742 | , 1743 | 161 ; 1744 | --ctp-ext-surface1: 235 1745 | , 1746 | 219 1747 | , 1748 | 179 ; 1749 | --ctp-ext-surface0: 242 1750 | , 1751 | 229 1752 | , 1753 | 188 ; 1754 | --ctp-ext-base: 249 1755 | , 1756 | 245 1757 | , 1758 | 215 ; 1759 | --ctp-ext-mantle: 236 1760 | , 1761 | 225 1762 | , 1763 | 196 ; 1764 | --ctp-ext-crust: 230 1765 | , 1766 | 215 1767 | , 1768 | 178 ; 1769 | } 1770 | 1771 | .theme-dark.anp-theme-ext-dark.ctp-kanagawa-dark, 1772 | .anp-theme-ext-dark.ctp-kanagawa-dark .themed-color-wrapper > .theme-dark { 1773 | --ctp-ext-rosewater: 255 1774 | , 1775 | 200 1776 | , 1777 | 148 ; 1778 | --ctp-ext-flamingo: 210 1779 | , 1780 | 126 1781 | , 1782 | 129 ; 1783 | --ctp-ext-pink: 210 1784 | , 1785 | 126 1786 | , 1787 | 153 ; 1788 | --ctp-ext-mauve: 149 1789 | , 1790 | 127 1791 | , 1792 | 184 ; 1793 | --ctp-ext-red: 255 1794 | , 1795 | 93 1796 | , 1797 | 98 ; 1798 | --ctp-ext-maroon: 228 1799 | , 1800 | 104 1801 | , 1802 | 118 ; 1803 | --ctp-ext-peach: 255 1804 | , 1805 | 160 1806 | , 1807 | 102 ; 1808 | --ctp-ext-yellow: 230 1809 | , 1810 | 195 1811 | , 1812 | 132 ; 1813 | --ctp-ext-green: 152 1814 | , 1815 | 187 1816 | , 1817 | 108 ; 1818 | --ctp-ext-teal: 122 1819 | , 1820 | 168 1821 | , 1822 | 159 ; 1823 | --ctp-ext-sky: 163 1824 | , 1825 | 212 1826 | , 1827 | 213 ; 1828 | --ctp-ext-sapphire: 127 1829 | , 1830 | 180 1831 | , 1832 | 202 ; 1833 | --ctp-ext-blue: 126 1834 | , 1835 | 156 1836 | , 1837 | 216 ; 1838 | --ctp-ext-lavender: 147 1839 | , 1840 | 138 1841 | , 1842 | 169 ; 1843 | --ctp-ext-text: 220 1844 | , 1845 | 215 1846 | , 1847 | 186 ; 1848 | --ctp-ext-subtext1: 212 1849 | , 1850 | 206 1851 | , 1852 | 170 ; 1853 | --ctp-ext-subtext0: 200 1854 | , 1855 | 192 1856 | , 1857 | 147 ; 1858 | --ctp-ext-overlay2: 95 1859 | , 1860 | 95 1861 | , 1862 | 124 ; 1863 | --ctp-ext-overlay1: 84 1864 | , 1865 | 84 1866 | , 1867 | 109 ; 1868 | --ctp-ext-overlay0: 73 1869 | , 1870 | 73 1871 | , 1872 | 95 ; 1873 | --ctp-ext-surface2: 62 1874 | , 1875 | 62 1876 | , 1877 | 81 ; 1878 | --ctp-ext-surface1: 54 1879 | , 1880 | 54 1881 | , 1882 | 69 ; 1883 | --ctp-ext-surface0: 42 1884 | , 1885 | 42 1886 | , 1887 | 55 ; 1888 | --ctp-ext-base: 31 1889 | , 1890 | 31 1891 | , 1892 | 40 ; 1893 | --ctp-ext-mantle: 22 1894 | , 1895 | 22 1896 | , 1897 | 29 ; 1898 | --ctp-ext-crust: 11 1899 | , 1900 | 11 1901 | , 1902 | 15 ; 1903 | } 1904 | 1905 | .theme-light.anp-theme-ext-light.ctp-luminescence-light, 1906 | .anp-theme-ext-light.ctp-luminescence-light .themed-color-wrapper > .theme-light { 1907 | --ctp-ext-rosewater: 227 1908 | , 1909 | 130 1910 | , 1911 | 130 ; 1912 | --ctp-ext-flamingo: 227 1913 | , 1914 | 130 1915 | , 1916 | 154 ; 1917 | --ctp-ext-pink: 237 1918 | , 1919 | 172 1920 | , 1921 | 171 ; 1922 | --ctp-ext-mauve: 212 1923 | , 1924 | 165 1925 | , 1926 | 198 ; 1927 | --ctp-ext-red: 232 1928 | , 1929 | 152 1930 | , 1931 | 151 ; 1932 | --ctp-ext-maroon: 209 1933 | , 1934 | 149 1935 | , 1936 | 148 ; 1937 | --ctp-ext-peach: 229 1938 | , 1939 | 172 1940 | , 1941 | 154 ; 1942 | --ctp-ext-yellow: 242 1943 | , 1944 | 203 1945 | , 1946 | 140 ; 1947 | --ctp-ext-green: 148 1948 | , 1949 | 189 1950 | , 1951 | 117 ; 1952 | --ctp-ext-teal: 98 1953 | , 1954 | 157 1955 | , 1956 | 142 ; 1957 | --ctp-ext-sky: 98 1958 | , 1959 | 157 1960 | , 1961 | 157 ; 1962 | --ctp-ext-sapphire: 117 1963 | , 1964 | 153 1965 | , 1966 | 189 ; 1967 | --ctp-ext-blue: 130 1968 | , 1969 | 146 1970 | , 1971 | 201 ; 1972 | --ctp-ext-lavender: 151 1973 | , 1974 | 151 1975 | , 1976 | 211 ; 1977 | --ctp-ext-text: 101 1978 | , 1979 | 73 1980 | , 1981 | 65 ; 1982 | --ctp-ext-subtext1: 122 1983 | , 1984 | 91 1985 | , 1986 | 82 ; 1987 | --ctp-ext-subtext0: 122 1988 | , 1989 | 91 1990 | , 1991 | 82 ; 1992 | --ctp-ext-overlay2: 157 1993 | , 1994 | 130 1995 | , 1996 | 123 ; 1997 | --ctp-ext-overlay1: 194 1998 | , 1999 | 171 2000 | , 2001 | 163 ; 2002 | --ctp-ext-overlay0: 223 2003 | , 2004 | 219 2005 | , 2006 | 200 ; 2007 | --ctp-ext-surface2: 246 2008 | , 2009 | 243 2010 | , 2011 | 239 ; 2012 | --ctp-ext-surface1: 225 2013 | , 2014 | 212 2015 | , 2016 | 208 ; 2017 | --ctp-ext-surface0: 205 2018 | , 2019 | 183 2020 | , 2021 | 177 ; 2022 | --ctp-ext-base: 242 2023 | , 2024 | 238 2025 | , 2026 | 232 ; 2027 | --ctp-ext-mantle: 236 2028 | , 2029 | 231 2030 | , 2031 | 223 ; 2032 | --ctp-ext-crust: 236 2033 | , 2034 | 231 2035 | , 2036 | 223 ; 2037 | } 2038 | 2039 | .theme-light.anp-theme-ext-light.ctp-material-mint-light, 2040 | .anp-theme-ext-light.ctp-material-mint-light .themed-color-wrapper > .theme-light { 2041 | --ctp-ext-rosewater: 195 2042 | , 2043 | 126 2044 | , 2045 | 112 ; 2046 | --ctp-ext-flamingo: 180 2047 | , 2048 | 78 2049 | , 2050 | 78 ; 2051 | --ctp-ext-pink: 144 2052 | , 2053 | 61 2054 | , 2055 | 122 ; 2056 | --ctp-ext-mauve: 98 2057 | , 2058 | 61 2059 | , 2060 | 143 ; 2061 | --ctp-ext-red: 146 2062 | , 2063 | 62 2064 | , 2065 | 86 ; 2066 | --ctp-ext-maroon: 145 2067 | , 2068 | 62 2069 | , 2070 | 76 ; 2071 | --ctp-ext-peach: 195 2072 | , 2073 | 145 2074 | , 2075 | 114 ; 2076 | --ctp-ext-yellow: 184 2077 | , 2078 | 164 2079 | , 2080 | 123 ; 2081 | --ctp-ext-green: 51 2082 | , 2083 | 107 2084 | , 2085 | 46 ; 2086 | --ctp-ext-teal: 71 2087 | , 2088 | 123 2089 | , 2090 | 133 ; 2091 | --ctp-ext-sky: 47 2092 | , 2093 | 101 2094 | , 2095 | 110 ; 2096 | --ctp-ext-sapphire: 45 2097 | , 2098 | 88 2099 | , 2100 | 108 ; 2101 | --ctp-ext-blue: 46 2102 | , 2103 | 69 2104 | , 2105 | 109 ; 2106 | --ctp-ext-lavender: 53 2107 | , 2108 | 60 2109 | , 2110 | 100 ; 2111 | --ctp-ext-text: 5 2112 | , 2113 | 9 2114 | , 2115 | 10 ; 2116 | --ctp-ext-subtext1: 11 2117 | , 2118 | 18 2119 | , 2120 | 20 ; 2121 | --ctp-ext-subtext0: 18 2122 | , 2123 | 31 2124 | , 2125 | 33 ; 2126 | --ctp-ext-overlay2: 29 2127 | , 2128 | 49 2129 | , 2130 | 53 ; 2131 | --ctp-ext-overlay1: 43 2132 | , 2133 | 73 2134 | , 2135 | 80 ; 2136 | --ctp-ext-overlay0: 57 2137 | , 2138 | 98 2139 | , 2140 | 106 ; 2141 | --ctp-ext-surface2: 71 2142 | , 2143 | 122 2144 | , 2145 | 133 ; 2146 | --ctp-ext-surface1: 86 2147 | , 2148 | 147 2149 | , 2150 | 159 ; 2151 | --ctp-ext-surface0: 109 2152 | , 2153 | 165 2154 | , 2155 | 176 ; 2156 | --ctp-ext-base: 189 2157 | , 2158 | 214 2159 | , 2160 | 219 ; 2161 | --ctp-ext-mantle: 162 2162 | , 2163 | 198 2164 | , 2165 | 205 ; 2166 | --ctp-ext-crust: 136 2167 | , 2168 | 182 2169 | , 2170 | 191 ; 2171 | } 2172 | 2173 | .theme-dark.anp-theme-ext-dark.ctp-material-mint-dark, 2174 | .anp-theme-ext-dark.ctp-material-mint-dark .themed-color-wrapper > .theme-dark { 2175 | --ctp-ext-rosewater: 245 2176 | , 2177 | 224 2178 | , 2179 | 220 ; 2180 | --ctp-ext-flamingo: 242 2181 | , 2182 | 205 2183 | , 2184 | 205 ; 2185 | --ctp-ext-pink: 245 2186 | , 2187 | 194 2188 | , 2189 | 231 ; 2190 | --ctp-ext-mauve: 203 2191 | , 2192 | 166 2193 | , 2194 | 247 ; 2195 | --ctp-ext-red: 243 2196 | , 2197 | 139 2198 | , 2199 | 168 ; 2200 | --ctp-ext-maroon: 235 2201 | , 2202 | 160 2203 | , 2204 | 172 ; 2205 | --ctp-ext-peach: 250 2206 | , 2207 | 179 2208 | , 2209 | 135 ; 2210 | --ctp-ext-yellow: 249 2211 | , 2212 | 226 2213 | , 2214 | 175 ; 2215 | --ctp-ext-green: 166 2216 | , 2217 | 227 2218 | , 2219 | 161 ; 2220 | --ctp-ext-teal: 189 2221 | , 2222 | 214 2223 | , 2224 | 219 ; 2225 | --ctp-ext-sky: 137 2226 | , 2227 | 220 2228 | , 2229 | 235 ; 2230 | --ctp-ext-sapphire: 116 2231 | , 2232 | 199 2233 | , 2234 | 236 ; 2235 | --ctp-ext-blue: 135 2236 | , 2237 | 176 2238 | , 2239 | 249 ; 2240 | --ctp-ext-lavender: 180 2241 | , 2242 | 190 2243 | , 2244 | 254 ; 2245 | --ctp-ext-text: 189 2246 | , 2247 | 214 2248 | , 2249 | 219 ; 2250 | --ctp-ext-subtext1: 162 2251 | , 2252 | 198 2253 | , 2254 | 205 ; 2255 | --ctp-ext-subtext0: 136 2256 | , 2257 | 182 2258 | , 2259 | 191 ; 2260 | --ctp-ext-overlay2: 109 2261 | , 2262 | 165 2263 | , 2264 | 176 ; 2265 | --ctp-ext-overlay1: 86 2266 | , 2267 | 147 2268 | , 2269 | 159 ; 2270 | --ctp-ext-overlay0: 71 2271 | , 2272 | 122 2273 | , 2274 | 133 ; 2275 | --ctp-ext-surface2: 57 2276 | , 2277 | 98 2278 | , 2279 | 106 ; 2280 | --ctp-ext-surface1: 43 2281 | , 2282 | 73 2283 | , 2284 | 80 ; 2285 | --ctp-ext-surface0: 29 2286 | , 2287 | 49 2288 | , 2289 | 53 ; 2290 | --ctp-ext-base: 18 2291 | , 2292 | 31 2293 | , 2294 | 33 ; 2295 | --ctp-ext-mantle: 11 2296 | , 2297 | 18 2298 | , 2299 | 20 ; 2300 | --ctp-ext-crust: 5 2301 | , 2302 | 9 2303 | , 2304 | 10 ; 2305 | } 2306 | 2307 | .theme-dark.anp-theme-ext-dark.ctp-nord-dark, 2308 | .anp-theme-ext-dark.ctp-nord-dark .themed-color-wrapper > .theme-dark { 2309 | --ctp-ext-rosewater: 226 2310 | , 2311 | 191 2312 | , 2313 | 169 ; 2314 | --ctp-ext-flamingo: 239 2315 | , 2316 | 171 2317 | , 2318 | 150 ; 2319 | --ctp-ext-pink: 214 2320 | , 2321 | 163 2322 | , 2323 | 222 ; 2324 | --ctp-ext-mauve: 180 2325 | , 2326 | 142 2327 | , 2328 | 173 ; 2329 | --ctp-ext-red: 191 2330 | , 2331 | 97 2332 | , 2333 | 106 ; 2334 | --ctp-ext-maroon: 191 2335 | , 2336 | 108 2337 | , 2338 | 97 ; 2339 | --ctp-ext-peach: 208 2340 | , 2341 | 135 2342 | , 2343 | 112 ; 2344 | --ctp-ext-yellow: 235 2345 | , 2346 | 203 2347 | , 2348 | 139 ; 2349 | --ctp-ext-green: 163 2350 | , 2351 | 190 2352 | , 2353 | 140 ; 2354 | --ctp-ext-teal: 143 2355 | , 2356 | 188 2357 | , 2358 | 187 ; 2359 | --ctp-ext-sky: 136 2360 | , 2361 | 192 2362 | , 2363 | 208 ; 2364 | --ctp-ext-sapphire: 129 2365 | , 2366 | 161 2367 | , 2368 | 193 ; 2369 | --ctp-ext-blue: 94 2370 | , 2371 | 129 2372 | , 2373 | 172 ; 2374 | --ctp-ext-lavender: 192 2375 | , 2376 | 167 2377 | , 2378 | 187 ; 2379 | --ctp-ext-text: 236 2380 | , 2381 | 239 2382 | , 2383 | 244 ; 2384 | --ctp-ext-subtext1: 229 2385 | , 2386 | 233 2387 | , 2388 | 240 ; 2389 | --ctp-ext-subtext0: 217 2390 | , 2391 | 222 2392 | , 2393 | 232 ; 2394 | --ctp-ext-overlay2: 196 2395 | , 2396 | 201 2397 | , 2398 | 212 ; 2399 | --ctp-ext-overlay1: 172 2400 | , 2401 | 180 2402 | , 2403 | 195 ; 2404 | --ctp-ext-overlay0: 149 2405 | , 2406 | 158 2407 | , 2408 | 178 ; 2409 | --ctp-ext-surface2: 125 2410 | , 2411 | 137 2412 | , 2413 | 161 ; 2414 | --ctp-ext-surface1: 103 2415 | , 2416 | 116 2417 | , 2418 | 142 ; 2419 | --ctp-ext-surface0: 77 2420 | , 2421 | 87 2422 | , 2423 | 106 ; 2424 | --ctp-ext-base: 67 2425 | , 2426 | 76 2427 | , 2428 | 94 ; 2429 | --ctp-ext-mantle: 59 2430 | , 2431 | 66 2432 | , 2433 | 82 ; 2434 | --ctp-ext-crust: 46 2435 | , 2436 | 52 2437 | , 2438 | 64 ; 2439 | } 2440 | 2441 | .theme-dark.anp-theme-ext-dark.ctp-nord-darker, 2442 | .anp-theme-ext-dark.ctp-nord-darker .themed-color-wrapper > .theme-dark { 2443 | --ctp-ext-rosewater: 226 2444 | , 2445 | 191 2446 | , 2447 | 169 ; 2448 | --ctp-ext-flamingo: 239 2449 | , 2450 | 171 2451 | , 2452 | 150 ; 2453 | --ctp-ext-pink: 214 2454 | , 2455 | 163 2456 | , 2457 | 222 ; 2458 | --ctp-ext-mauve: 180 2459 | , 2460 | 142 2461 | , 2462 | 173 ; 2463 | --ctp-ext-red: 191 2464 | , 2465 | 97 2466 | , 2467 | 106 ; 2468 | --ctp-ext-maroon: 191 2469 | , 2470 | 108 2471 | , 2472 | 97 ; 2473 | --ctp-ext-peach: 208 2474 | , 2475 | 135 2476 | , 2477 | 112 ; 2478 | --ctp-ext-yellow: 235 2479 | , 2480 | 203 2481 | , 2482 | 139 ; 2483 | --ctp-ext-green: 163 2484 | , 2485 | 190 2486 | , 2487 | 140 ; 2488 | --ctp-ext-teal: 143 2489 | , 2490 | 188 2491 | , 2492 | 187 ; 2493 | --ctp-ext-sky: 136 2494 | , 2495 | 192 2496 | , 2497 | 208 ; 2498 | --ctp-ext-sapphire: 129 2499 | , 2500 | 161 2501 | , 2502 | 193 ; 2503 | --ctp-ext-blue: 94 2504 | , 2505 | 129 2506 | , 2507 | 172 ; 2508 | --ctp-ext-lavender: 192 2509 | , 2510 | 167 2511 | , 2512 | 187 ; 2513 | --ctp-ext-text: 236 2514 | , 2515 | 239 2516 | , 2517 | 244 ; 2518 | --ctp-ext-subtext1: 229 2519 | , 2520 | 233 2521 | , 2522 | 240 ; 2523 | --ctp-ext-subtext0: 217 2524 | , 2525 | 222 2526 | , 2527 | 232 ; 2528 | --ctp-ext-overlay2: 196 2529 | , 2530 | 201 2531 | , 2532 | 212 ; 2533 | --ctp-ext-overlay1: 172 2534 | , 2535 | 180 2536 | , 2537 | 195 ; 2538 | --ctp-ext-overlay0: 149 2539 | , 2540 | 158 2541 | , 2542 | 178 ; 2543 | --ctp-ext-surface2: 125 2544 | , 2545 | 137 2546 | , 2547 | 161 ; 2548 | --ctp-ext-surface1: 67 2549 | , 2550 | 76 2551 | , 2552 | 94 ; 2553 | --ctp-ext-surface0: 59 2554 | , 2555 | 66 2556 | , 2557 | 82 ; 2558 | --ctp-ext-base: 46 2559 | , 2560 | 52 2561 | , 2562 | 64 ; 2563 | --ctp-ext-mantle: 39 2564 | , 2565 | 43 2566 | , 2567 | 53 ; 2568 | --ctp-ext-crust: 30 2569 | , 2570 | 34 2571 | , 2572 | 41 ; 2573 | } 2574 | 2575 | .theme-light.anp-theme-ext-light.ctp-nord-light, 2576 | .anp-theme-ext-light.ctp-nord-light .themed-color-wrapper > .theme-light { 2577 | --ctp-ext-rosewater: 209 2578 | , 2579 | 135 2580 | , 2581 | 112 ; 2582 | --ctp-ext-flamingo: 180 2583 | , 2584 | 142 2585 | , 2586 | 173 ; 2587 | --ctp-ext-pink: 180 2588 | , 2589 | 142 2590 | , 2591 | 173 ; 2592 | --ctp-ext-mauve: 180 2593 | , 2594 | 142 2595 | , 2596 | 173 ; 2597 | --ctp-ext-red: 191 2598 | , 2599 | 97 2600 | , 2601 | 106 ; 2602 | --ctp-ext-maroon: 191 2603 | , 2604 | 97 2605 | , 2606 | 106 ; 2607 | --ctp-ext-peach: 208 2608 | , 2609 | 135 2610 | , 2611 | 112 ; 2612 | --ctp-ext-yellow: 216 2613 | , 2614 | 172 2615 | , 2616 | 84 ; 2617 | --ctp-ext-green: 136 2618 | , 2619 | 167 2620 | , 2621 | 108 ; 2622 | --ctp-ext-teal: 121 2623 | , 2624 | 191 2625 | , 2626 | 142 ; 2627 | --ctp-ext-sky: 143 2628 | , 2629 | 188 2630 | , 2631 | 187 ; 2632 | --ctp-ext-sapphire: 136 2633 | , 2634 | 192 2635 | , 2636 | 208 ; 2637 | --ctp-ext-blue: 94 2638 | , 2639 | 129 2640 | , 2641 | 172 ; 2642 | --ctp-ext-lavender: 94 2643 | , 2644 | 129 2645 | , 2646 | 172 ; 2647 | --ctp-ext-text: 46 2648 | , 2649 | 52 2650 | , 2651 | 64 ; 2652 | --ctp-ext-subtext1: 59 2653 | , 2654 | 66 2655 | , 2656 | 82 ; 2657 | --ctp-ext-subtext0: 67 2658 | , 2659 | 76 2660 | , 2661 | 94 ; 2662 | --ctp-ext-overlay2: 76 2663 | , 2664 | 86 2665 | , 2666 | 106 ; 2667 | --ctp-ext-overlay1: 86 2668 | , 2669 | 97 2670 | , 2671 | 118 ; 2672 | --ctp-ext-overlay0: 143 2673 | , 2674 | 188 2675 | , 2676 | 187 ; 2677 | --ctp-ext-surface2: 216 2678 | , 2679 | 222 2680 | , 2681 | 233 ; 2682 | --ctp-ext-surface1: 216 2683 | , 2684 | 222 2685 | , 2686 | 233 ; 2687 | --ctp-ext-surface0: 229 2688 | , 2689 | 233 2690 | , 2691 | 240 ; 2692 | --ctp-ext-base: 236 2693 | , 2694 | 239 2695 | , 2696 | 244 ; 2697 | --ctp-ext-mantle: 231 2698 | , 2699 | 235 2700 | , 2701 | 241 ; 2702 | --ctp-ext-crust: 229 2703 | , 2704 | 233 2705 | , 2706 | 240 ; 2707 | } 2708 | 2709 | .theme-light.anp-theme-ext-light.ctp-notion-light, 2710 | .anp-theme-ext-light.ctp-notion-light .themed-color-wrapper > .theme-light { 2711 | --ctp-ext-rosewater: 228 2712 | , 2713 | 122 2714 | , 2715 | 112 ; 2716 | --ctp-ext-flamingo: 186 2717 | , 2718 | 82 2719 | , 2720 | 117 ; 2721 | --ctp-ext-pink: 173 2722 | , 2723 | 26 2724 | , 2725 | 114 ; 2726 | --ctp-ext-mauve: 105 2727 | , 2728 | 64 2729 | , 2730 | 165 ; 2731 | --ctp-ext-red: 224 2732 | , 2733 | 62 2734 | , 2735 | 62 ; 2736 | --ctp-ext-maroon: 224 2737 | , 2738 | 76 2739 | , 2740 | 62 ; 2741 | --ctp-ext-peach: 217 2742 | , 2743 | 115 2744 | , 2745 | 13 ; 2746 | --ctp-ext-yellow: 223 2747 | , 2748 | 171 2749 | , 2750 | 1 ; 2751 | --ctp-ext-green: 15 2752 | , 2753 | 123 2754 | , 2755 | 108 ; 2756 | --ctp-ext-teal: 15 2757 | , 2758 | 123 2759 | , 2760 | 123 ; 2761 | --ctp-ext-sky: 11 2762 | , 2763 | 136 2764 | , 2765 | 153 ; 2766 | --ctp-ext-sapphire: 11 2767 | , 2768 | 122 2769 | , 2770 | 153 ; 2771 | --ctp-ext-blue: 11 2772 | , 2773 | 110 2774 | , 2775 | 153 ; 2776 | --ctp-ext-lavender: 107 2777 | , 2778 | 84 2779 | , 2780 | 141 ; 2781 | --ctp-ext-text: 55 2782 | , 2783 | 53 2784 | , 2785 | 47 ; 2786 | --ctp-ext-subtext1: 77 2787 | , 2788 | 74 2789 | , 2790 | 66 ; 2791 | --ctp-ext-subtext0: 99 2792 | , 2793 | 95 2794 | , 2795 | 84 ; 2796 | --ctp-ext-overlay2: 121 2797 | , 2798 | 117 2799 | , 2800 | 103 ; 2801 | --ctp-ext-overlay1: 123 2802 | , 2803 | 135 2804 | , 2805 | 142 ; 2806 | --ctp-ext-overlay0: 145 2807 | , 2808 | 155 2809 | , 2810 | 161 ; 2811 | --ctp-ext-surface2: 170 2812 | , 2813 | 177 2814 | , 2815 | 182 ; 2816 | --ctp-ext-surface1: 189 2817 | , 2818 | 195 2819 | , 2820 | 199 ; 2821 | --ctp-ext-surface0: 208 2822 | , 2823 | 212 2824 | , 2825 | 215 ; 2826 | --ctp-ext-base: 255 2827 | , 2828 | 255 2829 | , 2830 | 255 ; 2831 | --ctp-ext-mantle: 244 2832 | , 2833 | 245 2834 | , 2835 | 246 ; 2836 | --ctp-ext-crust: 227 2837 | , 2838 | 230 2839 | , 2840 | 232 ; 2841 | } 2842 | 2843 | .theme-dark.anp-theme-ext-dark.ctp-notion-dark, 2844 | .anp-theme-ext-dark.ctp-notion-dark .themed-color-wrapper > .theme-dark { 2845 | --ctp-ext-rosewater: 246 2846 | , 2847 | 174 2848 | , 2849 | 138 ; 2850 | --ctp-ext-flamingo: 248 2851 | , 2852 | 160 2853 | , 2854 | 154 ; 2855 | --ctp-ext-pink: 226 2856 | , 2857 | 85 2858 | , 2859 | 161 ; 2860 | --ctp-ext-mauve: 154 2861 | , 2862 | 109 2863 | , 2864 | 215 ; 2865 | --ctp-ext-red: 255 2866 | , 2867 | 115 2868 | , 2869 | 105 ; 2870 | --ctp-ext-maroon: 255 2871 | , 2872 | 120 2873 | , 2874 | 105 ; 2875 | --ctp-ext-peach: 255 2876 | , 2877 | 163 2878 | , 2879 | 68 ; 2880 | --ctp-ext-yellow: 255 2881 | , 2882 | 220 2883 | , 2884 | 73 ; 2885 | --ctp-ext-green: 77 2886 | , 2887 | 171 2888 | , 2889 | 154 ; 2890 | --ctp-ext-teal: 77 2891 | , 2892 | 171 2893 | , 2894 | 165 ; 2895 | --ctp-ext-sky: 77 2896 | , 2897 | 166 2898 | , 2899 | 171 ; 2900 | --ctp-ext-sapphire: 82 2901 | , 2902 | 178 2903 | , 2904 | 202 ; 2905 | --ctp-ext-blue: 82 2906 | , 2907 | 156 2908 | , 2909 | 202 ; 2910 | --ctp-ext-lavender: 156 2911 | , 2912 | 125 2913 | , 2914 | 198 ; 2915 | --ctp-ext-text: 227 2916 | , 2917 | 230 2918 | , 2919 | 232 ; 2920 | --ctp-ext-subtext1: 222 2921 | , 2922 | 225 2923 | , 2924 | 227 ; 2925 | --ctp-ext-subtext0: 200 2926 | , 2927 | 205 2928 | , 2929 | 208 ; 2930 | --ctp-ext-overlay2: 178 2931 | , 2932 | 185 2933 | , 2934 | 189 ; 2935 | --ctp-ext-overlay1: 156 2936 | , 2937 | 165 2938 | , 2939 | 171 ; 2940 | --ctp-ext-overlay0: 134 2941 | , 2942 | 145 2943 | , 2944 | 152 ; 2945 | --ctp-ext-surface2: 113 2946 | , 2947 | 125 2948 | , 2949 | 132 ; 2950 | --ctp-ext-surface1: 94 2951 | , 2952 | 104 2953 | , 2954 | 110 ; 2955 | --ctp-ext-surface0: 75 2956 | , 2957 | 83 2958 | , 2959 | 88 ; 2960 | --ctp-ext-base: 61 2961 | , 2962 | 68 2963 | , 2964 | 72 ; 2965 | --ctp-ext-mantle: 54 2966 | , 2967 | 60 2968 | , 2969 | 63 ; 2970 | --ctp-ext-crust: 47 2971 | , 2972 | 52 2973 | , 2974 | 55 ; 2975 | } 2976 | 2977 | .theme-dark.anp-theme-ext-dark.ctp-rosebox, 2978 | .anp-theme-ext-dark.ctp-rosebox .themed-color-wrapper > .theme-dark { 2979 | --ctp-ext-rosewater: 165 2980 | , 2981 | 117 2982 | , 2983 | 98 ; 2984 | --ctp-ext-flamingo: 165 2985 | , 2986 | 117 2987 | , 2988 | 98 ; 2989 | --ctp-ext-pink: 180 2990 | , 2991 | 142 2992 | , 2993 | 173 ; 2994 | --ctp-ext-mauve: 180 2995 | , 2996 | 142 2997 | , 2998 | 173 ; 2999 | --ctp-ext-red: 191 3000 | , 3001 | 97 3002 | , 3003 | 106 ; 3004 | --ctp-ext-maroon: 191 3005 | , 3006 | 97 3007 | , 3008 | 106 ; 3009 | --ctp-ext-peach: 208 3010 | , 3011 | 135 3012 | , 3013 | 112 ; 3014 | --ctp-ext-yellow: 235 3015 | , 3016 | 203 3017 | , 3018 | 139 ; 3019 | --ctp-ext-green: 163 3020 | , 3021 | 190 3022 | , 3023 | 140 ; 3024 | --ctp-ext-teal: 143 3025 | , 3026 | 188 3027 | , 3028 | 187 ; 3029 | --ctp-ext-sky: 136 3030 | , 3031 | 192 3032 | , 3033 | 208 ; 3034 | --ctp-ext-sapphire: 136 3035 | , 3036 | 192 3037 | , 3038 | 208 ; 3039 | --ctp-ext-blue: 94 3040 | , 3041 | 129 3042 | , 3043 | 172 ; 3044 | --ctp-ext-lavender: 129 3045 | , 3046 | 161 3047 | , 3048 | 193 ; 3049 | --ctp-ext-text: 163 3050 | , 3051 | 165 3052 | , 3053 | 170 ; 3054 | --ctp-ext-subtext1: 135 3055 | , 3056 | 137 3057 | , 3058 | 145 ; 3059 | --ctp-ext-subtext0: 110 3060 | , 3061 | 113 3062 | , 3063 | 119 ; 3064 | --ctp-ext-overlay2: 92 3065 | , 3066 | 92 3067 | , 3068 | 92 ; 3069 | --ctp-ext-overlay1: 82 3070 | , 3071 | 82 3072 | , 3073 | 82 ; 3074 | --ctp-ext-overlay0: 71 3075 | , 3076 | 71 3077 | , 3078 | 71 ; 3079 | --ctp-ext-surface2: 61 3080 | , 3081 | 61 3082 | , 3083 | 61 ; 3084 | --ctp-ext-surface1: 51 3085 | , 3086 | 51 3087 | , 3088 | 51 ; 3089 | --ctp-ext-surface0: 40 3090 | , 3091 | 40 3092 | , 3093 | 40 ; 3094 | --ctp-ext-base: 35 3095 | , 3096 | 35 3097 | , 3098 | 35 ; 3099 | --ctp-ext-mantle: 30 3100 | , 3101 | 30 3102 | , 3103 | 30 ; 3104 | --ctp-ext-crust: 25 3105 | , 3106 | 25 3107 | , 3108 | 25 ; 3109 | } 3110 | 3111 | .theme-dark.anp-theme-ext-dark.ctp-rosepine-dark, 3112 | .anp-theme-ext-dark.ctp-rosepine-dark .themed-color-wrapper > .theme-dark { 3113 | --ctp-ext-rosewater: 243 3114 | , 3115 | 215 3116 | , 3117 | 204 ; 3118 | --ctp-ext-flamingo: 235 3119 | , 3120 | 188 3121 | , 3122 | 186 ; 3123 | --ctp-ext-pink: 223 3124 | , 3125 | 167 3126 | , 3127 | 231 ; 3128 | --ctp-ext-mauve: 196 3129 | , 3130 | 167 3131 | , 3132 | 231 ; 3133 | --ctp-ext-red: 235 3134 | , 3135 | 111 3136 | , 3137 | 146 ; 3138 | --ctp-ext-maroon: 235 3139 | , 3140 | 122 3141 | , 3142 | 111 ; 3143 | --ctp-ext-peach: 235 3144 | , 3145 | 159 3146 | , 3147 | 111 ; 3148 | --ctp-ext-yellow: 246 3149 | , 3150 | 193 3151 | , 3152 | 119 ; 3153 | --ctp-ext-green: 114 3154 | , 3155 | 182 3156 | , 3157 | 156 ; 3158 | --ctp-ext-teal: 156 3159 | , 3160 | 207 3161 | , 3162 | 216 ; 3163 | --ctp-ext-sky: 49 3164 | , 3165 | 116 3166 | , 3167 | 143 ; 3168 | --ctp-ext-sapphire: 68 3169 | , 3170 | 132 3171 | , 3172 | 171 ; 3173 | --ctp-ext-blue: 76 3174 | , 3175 | 127 3176 | , 3177 | 169 ; 3178 | --ctp-ext-lavender: 210 3179 | , 3180 | 193 3181 | , 3182 | 231 ; 3183 | --ctp-ext-text: 224 3184 | , 3185 | 222 3186 | , 3187 | 244 ; 3188 | --ctp-ext-subtext1: 144 3189 | , 3190 | 140 3191 | , 3192 | 170 ; 3193 | --ctp-ext-subtext0: 110 3194 | , 3195 | 106 3196 | , 3197 | 134 ; 3198 | --ctp-ext-overlay2: 82 3199 | , 3200 | 79 3201 | , 3202 | 103 ; 3203 | --ctp-ext-overlay1: 64 3204 | , 3205 | 61 3206 | , 3207 | 82 ; 3208 | --ctp-ext-overlay0: 54 3209 | , 3210 | 50 3211 | , 3212 | 83 ; 3213 | --ctp-ext-surface2: 46 3214 | , 3215 | 42 3216 | , 3217 | 70 ; 3218 | --ctp-ext-surface1: 33 3219 | , 3220 | 32 3221 | , 3222 | 46 ; 3223 | --ctp-ext-surface0: 31 3224 | , 3225 | 29 3226 | , 3227 | 46 ; 3228 | --ctp-ext-base: 25 3229 | , 3230 | 23 3231 | , 3232 | 36 ; 3233 | --ctp-ext-mantle: 17 3234 | , 3235 | 16 3236 | , 3237 | 25 ; 3238 | --ctp-ext-crust: 11 3239 | , 3240 | 10 3241 | , 3242 | 16 ; 3243 | } 3244 | 3245 | .theme-dark.anp-theme-ext-dark.ctp-royal-velvet, 3246 | .anp-theme-ext-dark.ctp-royal-velvet .themed-color-wrapper > .theme-dark { 3247 | --ctp-ext-rosewater: 246 3248 | , 3249 | 201 3250 | , 3251 | 153 ; 3252 | --ctp-ext-flamingo: 245 3253 | , 3254 | 189 3255 | , 3256 | 166 ; 3257 | --ctp-ext-pink: 228 3258 | , 3259 | 157 3260 | , 3261 | 248 ; 3262 | --ctp-ext-mauve: 197 3263 | , 3264 | 146 3265 | , 3266 | 222 ; 3267 | --ctp-ext-red: 240 3268 | , 3269 | 120 3270 | , 3271 | 160 ; 3272 | --ctp-ext-maroon: 230 3273 | , 3274 | 102 3275 | , 3276 | 102 ; 3277 | --ctp-ext-peach: 230 3278 | , 3279 | 195 3280 | , 3281 | 125 ; 3282 | --ctp-ext-yellow: 241 3283 | , 3284 | 250 3285 | , 3286 | 140 ; 3287 | --ctp-ext-green: 130 3288 | , 3289 | 235 3290 | , 3291 | 130 ; 3292 | --ctp-ext-teal: 114 3293 | , 3294 | 224 3295 | , 3296 | 214 ; 3297 | --ctp-ext-sky: 139 3298 | , 3299 | 233 3300 | , 3301 | 253 ; 3302 | --ctp-ext-sapphire: 104 3303 | , 3304 | 197 3305 | , 3306 | 240 ; 3307 | --ctp-ext-blue: 95 3308 | , 3309 | 126 3310 | , 3311 | 222 ; 3312 | --ctp-ext-lavender: 154 3313 | , 3314 | 141 3315 | , 3316 | 247 ; 3317 | --ctp-ext-text: 248 3318 | , 3319 | 248 3320 | , 3321 | 242 ; 3322 | --ctp-ext-subtext1: 211 3323 | , 3324 | 211 3325 | , 3326 | 197 ; 3327 | --ctp-ext-subtext0: 191 3328 | , 3329 | 191 3330 | , 3331 | 181 ; 3332 | --ctp-ext-overlay2: 139 3333 | , 3334 | 143 3335 | , 3336 | 167 ; 3337 | --ctp-ext-overlay1: 110 3338 | , 3339 | 114 3340 | , 3341 | 145 ; 3342 | --ctp-ext-overlay0: 88 3343 | , 3344 | 92 3345 | , 3346 | 116 ; 3347 | --ctp-ext-surface2: 68 3348 | , 3349 | 71 3350 | , 3351 | 90 ; 3352 | --ctp-ext-surface1: 56 3353 | , 3354 | 59 3355 | , 3356 | 76 ; 3357 | --ctp-ext-surface0: 48 3358 | , 3359 | 50 3360 | , 3361 | 65 ; 3362 | --ctp-ext-base: 30 3363 | , 3364 | 30 3365 | , 3366 | 36 ; 3367 | --ctp-ext-mantle: 25 3368 | , 3369 | 25 3370 | , 3371 | 30 ; 3372 | --ctp-ext-crust: 20 3373 | , 3374 | 20 3375 | , 3376 | 25 ; 3377 | } 3378 | 3379 | .theme-light.anp-theme-ext-light.ctp-sandy-beaches-light, 3380 | .anp-theme-ext-light.ctp-sandy-beaches-light .themed-color-wrapper > .theme-light { 3381 | --ctp-ext-rosewater: 228 3382 | , 3383 | 212 3384 | , 3385 | 196 ; 3386 | --ctp-ext-flamingo: 214 3387 | , 3388 | 188 3389 | , 3390 | 174 ; 3391 | --ctp-ext-pink: 200 3392 | , 3393 | 164 3394 | , 3395 | 152 ; 3396 | --ctp-ext-mauve: 149 3397 | , 3398 | 136 3399 | , 3400 | 138 ; 3401 | --ctp-ext-red: 166 3402 | , 3403 | 137 3404 | , 3405 | 123 ; 3406 | --ctp-ext-maroon: 186 3407 | , 3408 | 144 3409 | , 3410 | 123 ; 3411 | --ctp-ext-peach: 199 3412 | , 3413 | 161 3414 | , 3415 | 135 ; 3416 | --ctp-ext-yellow: 212 3417 | , 3418 | 187 3419 | , 3420 | 160 ; 3421 | --ctp-ext-green: 152 3422 | , 3423 | 150 3424 | , 3425 | 134 ; 3426 | --ctp-ext-teal: 149 3427 | , 3428 | 156 3429 | , 3430 | 153 ; 3431 | --ctp-ext-sky: 138 3432 | , 3433 | 155 3434 | , 3435 | 163 ; 3436 | --ctp-ext-sapphire: 124 3437 | , 3438 | 133 3439 | , 3440 | 143 ; 3441 | --ctp-ext-blue: 109 3442 | , 3443 | 111 3444 | , 3445 | 123 ; 3446 | --ctp-ext-lavender: 135 3447 | , 3448 | 128 3449 | , 3450 | 142 ; 3451 | --ctp-ext-text: 104 3452 | , 3453 | 88 3454 | , 3455 | 80 ; 3456 | --ctp-ext-subtext1: 108 3457 | , 3458 | 92 3459 | , 3460 | 84 ; 3461 | --ctp-ext-subtext0: 111 3462 | , 3463 | 96 3464 | , 3465 | 88 ; 3466 | --ctp-ext-overlay2: 118 3467 | , 3468 | 103 3469 | , 3470 | 96 ; 3471 | --ctp-ext-overlay1: 124 3472 | , 3473 | 110 3474 | , 3475 | 103 ; 3476 | --ctp-ext-overlay0: 130 3477 | , 3478 | 117 3479 | , 3480 | 110 ; 3481 | --ctp-ext-surface2: 205 3482 | , 3483 | 197 3484 | , 3485 | 193 ; 3486 | --ctp-ext-surface1: 212 3487 | , 3488 | 205 3489 | , 3490 | 200 ; 3491 | --ctp-ext-surface0: 222 3492 | , 3493 | 216 3494 | , 3495 | 209 ; 3496 | --ctp-ext-base: 240 3497 | , 3498 | 234 3499 | , 3500 | 226 ; 3501 | --ctp-ext-mantle: 237 3502 | , 3503 | 231 3504 | , 3505 | 224 ; 3506 | --ctp-ext-crust: 230 3507 | , 3508 | 223 3509 | , 3510 | 216 ; 3511 | } 3512 | 3513 | .theme-dark.anp-theme-ext-dark.ctp-solarized-dark, 3514 | .anp-theme-ext-dark.ctp-solarized-dark .themed-color-wrapper > .theme-dark { 3515 | --ctp-ext-rosewater: 227 3516 | , 3517 | 131 3518 | , 3519 | 89 ; 3520 | --ctp-ext-flamingo: 241 3521 | , 3522 | 142 3523 | , 3524 | 168 ; 3525 | --ctp-ext-pink: 211 3526 | , 3527 | 54 3528 | , 3529 | 130 ; 3530 | --ctp-ext-mauve: 108 3531 | , 3532 | 113 3533 | , 3534 | 196 ; 3535 | --ctp-ext-red: 220 3536 | , 3537 | 50 3538 | , 3539 | 47 ; 3540 | --ctp-ext-maroon: 220 3541 | , 3542 | 60 3543 | , 3544 | 46 ; 3545 | --ctp-ext-peach: 203 3546 | , 3547 | 75 3548 | , 3549 | 22 ; 3550 | --ctp-ext-yellow: 181 3551 | , 3552 | 137 3553 | , 3554 | 0 ; 3555 | --ctp-ext-green: 133 3556 | , 3557 | 153 3558 | , 3559 | 0 ; 3560 | --ctp-ext-teal: 42 3561 | , 3562 | 161 3563 | , 3564 | 152 ; 3565 | --ctp-ext-sky: 42 3566 | , 3567 | 145 3568 | , 3569 | 161 ; 3570 | --ctp-ext-sapphire: 39 3571 | , 3572 | 168 3573 | , 3574 | 211 ; 3575 | --ctp-ext-blue: 38 3576 | , 3577 | 139 3578 | , 3579 | 210 ; 3580 | --ctp-ext-lavender: 139 3581 | , 3582 | 143 3583 | , 3584 | 222 ; 3585 | --ctp-ext-text: 253 3586 | , 3587 | 246 3588 | , 3589 | 227 ; 3590 | --ctp-ext-subtext1: 237 3591 | , 3592 | 232 3593 | , 3594 | 214 ; 3595 | --ctp-ext-subtext0: 225 3596 | , 3597 | 215 3598 | , 3599 | 183 ; 3600 | --ctp-ext-overlay2: 147 3601 | , 3602 | 161 3603 | , 3604 | 161 ; 3605 | --ctp-ext-overlay1: 117 3606 | , 3607 | 159 3608 | , 3609 | 163 ; 3610 | --ctp-ext-overlay0: 106 3611 | , 3612 | 168 3613 | , 3614 | 175 ; 3615 | --ctp-ext-surface2: 51 3616 | , 3617 | 129 3618 | , 3619 | 153 ; 3620 | --ctp-ext-surface1: 38 3621 | , 3622 | 97 3623 | , 3624 | 115 ; 3625 | --ctp-ext-surface0: 10 3626 | , 3627 | 76 3628 | , 3629 | 92 ; 3630 | --ctp-ext-base: 7 3631 | , 3632 | 54 3633 | , 3634 | 66 ; 3635 | --ctp-ext-mantle: 0 3636 | , 3637 | 43 3638 | , 3639 | 54 ; 3640 | --ctp-ext-crust: 0 3641 | , 3642 | 33 3643 | , 3644 | 41 ; 3645 | } 3646 | 3647 | .theme-light.anp-theme-ext-light.ctp-solarized-light, 3648 | .anp-theme-ext-light.ctp-solarized-light .themed-color-wrapper > .theme-light { 3649 | --ctp-ext-rosewater: 227 3650 | , 3651 | 131 3652 | , 3653 | 89 ; 3654 | --ctp-ext-flamingo: 241 3655 | , 3656 | 142 3657 | , 3658 | 168 ; 3659 | --ctp-ext-pink: 211 3660 | , 3661 | 54 3662 | , 3663 | 130 ; 3664 | --ctp-ext-mauve: 108 3665 | , 3666 | 113 3667 | , 3668 | 196 ; 3669 | --ctp-ext-red: 220 3670 | , 3671 | 50 3672 | , 3673 | 47 ; 3674 | --ctp-ext-maroon: 220 3675 | , 3676 | 60 3677 | , 3678 | 46 ; 3679 | --ctp-ext-peach: 203 3680 | , 3681 | 75 3682 | , 3683 | 22 ; 3684 | --ctp-ext-yellow: 181 3685 | , 3686 | 137 3687 | , 3688 | 0 ; 3689 | --ctp-ext-green: 133 3690 | , 3691 | 153 3692 | , 3693 | 0 ; 3694 | --ctp-ext-teal: 42 3695 | , 3696 | 161 3697 | , 3698 | 152 ; 3699 | --ctp-ext-sky: 42 3700 | , 3701 | 145 3702 | , 3703 | 161 ; 3704 | --ctp-ext-sapphire: 39 3705 | , 3706 | 168 3707 | , 3708 | 211 ; 3709 | --ctp-ext-blue: 38 3710 | , 3711 | 139 3712 | , 3713 | 210 ; 3714 | --ctp-ext-lavender: 139 3715 | , 3716 | 143 3717 | , 3718 | 222 ; 3719 | --ctp-ext-text: 0 3720 | , 3721 | 43 3722 | , 3723 | 54 ; 3724 | --ctp-ext-subtext1: 7 3725 | , 3726 | 54 3727 | , 3728 | 66 ; 3729 | --ctp-ext-subtext0: 10 3730 | , 3731 | 76 3732 | , 3733 | 92 ; 3734 | --ctp-ext-overlay2: 77 3735 | , 3736 | 96 3737 | , 3738 | 102 ; 3739 | --ctp-ext-overlay1: 88 3740 | , 3741 | 110 3742 | , 3743 | 117 ; 3744 | --ctp-ext-overlay0: 101 3745 | , 3746 | 123 3747 | , 3748 | 131 ; 3749 | --ctp-ext-surface2: 131 3750 | , 3751 | 148 3752 | , 3753 | 150 ; 3754 | --ctp-ext-surface1: 145 3755 | , 3756 | 160 3757 | , 3758 | 161 ; 3759 | --ctp-ext-surface0: 173 3760 | , 3761 | 184 3762 | , 3763 | 184 ; 3764 | --ctp-ext-base: 253 3765 | , 3766 | 246 3767 | , 3768 | 227 ; 3769 | --ctp-ext-mantle: 237 3770 | , 3771 | 232 3772 | , 3773 | 214 ; 3774 | --ctp-ext-crust: 224 3775 | , 3776 | 215 3777 | , 3778 | 184 ; 3779 | } 3780 | 3781 | .theme-dark.anp-theme-ext-dark.ctp-thorns, 3782 | .anp-theme-ext-dark.ctp-thorns .themed-color-wrapper > .theme-dark { 3783 | --ctp-ext-rosewater: 230 3784 | , 3785 | 194 3786 | , 3787 | 173 ; 3788 | --ctp-ext-flamingo: 232 3789 | , 3790 | 180 3791 | , 3792 | 150 ; 3793 | --ctp-ext-pink: 216 3794 | , 3795 | 149 3796 | , 3797 | 238 ; 3798 | --ctp-ext-mauve: 202 3799 | , 3800 | 151 3801 | , 3802 | 232 ; 3803 | --ctp-ext-red: 238 3804 | , 3805 | 149 3806 | , 3807 | 152 ; 3808 | --ctp-ext-maroon: 238 3809 | , 3810 | 161 3811 | , 3812 | 150 ; 3813 | --ctp-ext-peach: 232 3814 | , 3815 | 177 3816 | , 3817 | 151 ; 3818 | --ctp-ext-yellow: 232 3819 | , 3820 | 208 3821 | , 3822 | 151 ; 3823 | --ctp-ext-green: 155 3824 | , 3825 | 224 3826 | , 3827 | 153 ; 3828 | --ctp-ext-teal: 178 3829 | , 3830 | 225 3831 | , 3832 | 223 ; 3833 | --ctp-ext-sky: 151 3834 | , 3835 | 208 3836 | , 3837 | 232 ; 3838 | --ctp-ext-sapphire: 150 3839 | , 3840 | 180 3841 | , 3842 | 232 ; 3843 | --ctp-ext-blue: 151 3844 | , 3845 | 154 3846 | , 3847 | 232 ; 3848 | --ctp-ext-lavender: 190 3849 | , 3850 | 173 3851 | , 3852 | 230 ; 3853 | --ctp-ext-text: 216 3854 | , 3855 | 208 3856 | , 3857 | 213 ; 3858 | --ctp-ext-subtext1: 173 3859 | , 3860 | 169 3861 | , 3862 | 171 ; 3863 | --ctp-ext-subtext0: 144 3864 | , 3865 | 144 3866 | , 3867 | 144 ; 3868 | --ctp-ext-overlay2: 128 3869 | , 3870 | 128 3871 | , 3872 | 128 ; 3873 | --ctp-ext-overlay1: 112 3874 | , 3875 | 112 3876 | , 3877 | 112 ; 3878 | --ctp-ext-overlay0: 80 3879 | , 3880 | 80 3881 | , 3882 | 80 ; 3883 | --ctp-ext-surface2: 69 3884 | , 3885 | 69 3886 | , 3887 | 69 ; 3888 | --ctp-ext-surface1: 59 3889 | , 3890 | 59 3891 | , 3892 | 59 ; 3893 | --ctp-ext-surface0: 46 3894 | , 3895 | 46 3896 | , 3897 | 46 ; 3898 | --ctp-ext-base: 21 3899 | , 3900 | 21 3901 | , 3902 | 21 ; 3903 | --ctp-ext-mantle: 15 3904 | , 3905 | 15 3906 | , 3907 | 15 ; 3908 | --ctp-ext-crust: 10 3909 | , 3910 | 10 3911 | , 3912 | 10 ; 3913 | } 3914 | -------------------------------------------------------------------------------- /snippets/fastppuccin-colorful-frames.css: -------------------------------------------------------------------------------- 1 | /*=============================================================== 2 | FastPpuccin Colorful Frames Snippet 3 | ----------- 4 | Adopted from AnuPpuccin and Minimal themes 5 | by SublimePeace 6 | (https://github.com/SublimePeace) 7 | 8 | This snippet lets you add a colorful frame to the top of your Obsidian window. 9 | Customizable via the StyleSettings plugin. 10 | Inspired by https://minimal.guide/features/colorful-frame 11 | 12 | This snippet is licensed under the GPL-3.0. 13 | 14 | *===============================================================*/ 15 | 16 | 17 | /* @settings 18 | 19 | name: FastPpuccin Colorful Frame 20 | id: fastppuccin-colorful-frame-settings 21 | settings: 22 | - 23 | id: about-info-text-fpp-colorful-frames 24 | title: About this snippet 25 | description: "This is a high-performance remake of the Colorful Frames feature from the AnuPpuccin and Minimal themes, designed to be used with the [FastPpuccin](https://github.com/LostViking09/obsidian-fastppuccin) theme. Made by [SublimePeace](https://github.com/SublimePeace)" 26 | type: info-text 27 | markdown: true 28 | - 29 | id: fpp-colorful-frame 30 | title: Enable Colorful Frame 31 | type: class-toggle 32 | - 33 | id: fpp-colorful-frame-color 34 | title: Custom Colorful Frame Color 35 | type: variable-themed-color 36 | opacity: false 37 | format: rgb-values 38 | default-light: '#2a6ef5' 39 | default-dark: '#f38ba8' 40 | - 41 | id: fpp-colorful-frame-opacity 42 | title: Colorful Frame Opacity 43 | type: variable-number-slider 44 | default: 1 45 | min: 0 46 | max: 1 47 | step: 0.05 48 | - 49 | id: fpp-colorful-frame-icon-toggle-light 50 | title: Invert Icon Colors - Light Mode 51 | type: class-toggle 52 | - 53 | id: fpp-colorful-frame-icon-toggle-dark 54 | title: Invert Icon Colors - Dark Mode 55 | type: class-toggle 56 | */ 57 | 58 | body { 59 | --colorful-icon-color: var(--background-secondary); 60 | --colorful-icon-color-alt: var(--background-secondary-alt); 61 | --colorful-frame-color: rgba(var(--fpp-colorful-frame-color, var(--ctp-accent)), var(--fpp-colorful-frame-opacity, 1)); 62 | } 63 | 64 | /* change icon and text color when invert icons setting is turned on */ 65 | body.fpp-colorful-frame-icon-toggle-light.theme-light, 66 | body.fpp-colorful-frame-icon-toggle-dark.theme-dark { 67 | --colorful-icon-color: var(--text-normal); 68 | --colorful-icon-color-alt: var(--text-muted); 69 | } 70 | 71 | .fpp-colorful-frame { 72 | --titlebar-background: var(--fpp-colorful-frame-color, var(--color-accent)); 73 | --titlebar-background-focused: var(--fpp-colorful-frame-color, var(--color-accent)); 74 | --titlebar-text-color: var(--background-primary); 75 | --titlebar-text-color-focused: var(--background-secondary-alt); 76 | } 77 | 78 | /* left and right sidebar toggle buttons */ 79 | .fpp-colorful-frame .sidebar-toggle-button { 80 | padding: var(--size-4-1) !important; 81 | background-color: var(--background-primary); 82 | --tab-container-background: var(--background-primary) !important; 83 | height: calc(var(--header-height) - 5px); 84 | margin-right: 0; 85 | border-radius: 0 0 var(--radius-m) var(--radius-m); 86 | border-width: 0 1px 1px 1px; 87 | border-style: solid; 88 | border-color: var(--tab-outline-color); 89 | --icon-color: var(--text-muted); 90 | --icon-color-hover: var(--text-muted); 91 | --icon-color-active: var(--text-accent); 92 | --icon-color-focused: var(--text-normal); 93 | } 94 | 95 | .fpp-colorful-frame .sidebar-toggle-button .clickable-icon { 96 | --icon-color: var(--text-muted) !important; 97 | --icon-color-hover: var(--text-muted) !important; 98 | --icon-color-active: var(--text-accent) !important; 99 | --icon-color-focused: var(--text-normal) !important; 100 | } 101 | 102 | /* right sidebar top bar -> tab header background when hovering a non-active tab */ 103 | .fpp-colorful-frame .workspace-split.mod-left-split .workspace-tabs.mod-top .workspace-tab-header:not(.is-active):hover .workspace-tab-header-inner, 104 | .fpp-colorful-frame .workspace-split.mod-right-split .workspace-tabs.mod-top .workspace-tab-header:not(.is-active):hover .workspace-tab-header-inner { 105 | background-color: rgba(var(--ctp-crust), 0.2); 106 | } 107 | 108 | .fpp-colorful-frame.is-frameless.is-frameless:not(.is-hidden-frameless) .sidebar-toggle-button.mod-left { 109 | border-radius: 0 var(--radius-m) var(--radius-m) 0; 110 | } 111 | 112 | /* THE KEY - THIS SETS THE FRAME COLOR */ 113 | .fpp-colorful-frame .mod-top .workspace-tab-header-container, 114 | .fpp-colorful-frame .workspace-ribbon.mod-left:before { 115 | --tab-container-background: rgba(var(--fpp-colorful-frame-color, var(--ctp-accent)), var(--fpp-colorful-frame-opacity, 1)); 116 | --titlebar-background: rgba(var(--fpp-colorful-frame-color, var(--ctp-accent)), var(--fpp-colorful-frame-opacity, 1)); 117 | } 118 | 119 | .fpp-colorful-frame .prompt { 120 | --background-modifier-hover: rgba(var(--ctp-text), 0.075); 121 | } 122 | 123 | 124 | .fpp-colorful-frame .sidebar-toggle-button { 125 | --background-modifier-hover: rgba(var(--ctp-text), 0.075); 126 | } 127 | 128 | .fpp-colorful-frame.is-focused .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner .workspace-tab-header-inner-title, 129 | .fpp-colorful-frame.is-focused .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner .workspace-tab-header-inner-close-button { 130 | color: var(--text-muted); 131 | } 132 | 133 | .fpp-colorful-frame .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner .workspace-tab-header-inner-close-button { 134 | color: var(--text-muted); 135 | } 136 | 137 | .fpp-colorful-frame.is-focused .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header.is-active .workspace-tab-header-inner .workspace-tab-header-inner-title, 138 | .fpp-colorful-frame.is-focused .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header.is-active .workspace-tab-header-inner .workspace-tab-header-inner-close-button { 139 | color: var(--color-accent); 140 | } 141 | 142 | /* Sets icons, tab text */ 143 | .fpp-colorful-frame .mod-top:not(.mod-stacked) .workspace-tab-header, 144 | .fpp-colorful-frame .mod-top:not(.mod-stacked) .workspace-tab-header.is-active, 145 | .fpp-colorful-frame .mod-top:not(.mod-stacked) .workspace-tab-header-container, 146 | .fpp-colorful-frame.is-focused .mod-top:not(.mod-stacked) .workspace-tab-header, 147 | .fpp-colorful-frame.is-focused .mod-top:not(.mod-stacked) .workspace-tab-header.is-active, 148 | .fpp-colorful-frame.is-focused .mod-top:not(.mod-stacked) .workspace-tab-header-container { 149 | --tab-text-color: var(--colorful-icon-color-alt); 150 | --icon-color: var(--colorful-icon-color-alt); 151 | --icon-color-hover: var(--colorful-icon-color); 152 | --tab-text-color-focused: var(--colorful-icon-color-alt); 153 | } 154 | 155 | .fpp-colorful-frame .mod-top.mod-stacked .workspace-tab-header-new-tab .clickable-icon, 156 | .fpp-colorful-frame.is-focused .mod-top.mod-stacked .workspace-tab-header-new-tab .clickable-icon { 157 | --icon-color: var(--colorful-icon-color-alt); 158 | --icon-color-hover: var(--colorful-icon-color); 159 | } 160 | 161 | /* icon colors */ 162 | .fpp-colorful-frame .mod-top .workspace-tab-header-tab-list .clickable-icon, 163 | .fpp-colorful-frame .mod-top .workspace-tab-header-tab-list .clickable-icon:hover, 164 | .fpp-colorful-frame .mod-top .workspace-tab-header-new-tab .clickable-icon, 165 | .fpp-colorful-frame .mod-top .workspace-tab-header-new-tab .clickable-icon:hover, 166 | .fpp-colorful-frame.is-focused .mod-top .workspace-tab-header-tab-list .clickable-icon, 167 | .fpp-colorful-frame.is-focused .mod-top .workspace-tab-header-tab-list .clickable-icon:hover, 168 | .fpp-colorful-frame.is-focused .mod-top .workspace-tab-header-new-tab .clickable-icon, 169 | .fpp-colorful-frame.is-focused .mod-top .workspace-tab-header-new-tab .clickable-icon:hover { 170 | color: var(--colorful-icon-color-alt); 171 | } 172 | 173 | /* icon colors for focused icons*/ 174 | .fpp-colorful-frame .mod-right-split .mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon, 175 | .fpp-colorful-frame .mod-left-split .mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon, 176 | .fpp-colorful-frame .mod-top .workspace-tab-header-container .clickable-icon.has-active-menu, 177 | .fpp-colorful-frame .mod-top .workspace-tab-header-container .clickable-icon:active { 178 | --icon-color-focused: var(--colorful-icon-color-alt); 179 | } 180 | 181 | /* colors for inactive note tab title and X button */ 182 | .fpp-colorful-frame .workspace-tab-header, 183 | .fpp-colorful-frame .workspace-tab-header .workspace-tab-header-inner-close-button { 184 | --tab-text-color-focused: var(--colorful-icon-color-alt); 185 | --tab-text-color-focused-active-current: var(--colorful-icon-color-alt); 186 | } 187 | 188 | /* colors for active note tab title and X button */ 189 | .fpp-colorful-frame .workspace-tab-header.is-active, 190 | .fpp-colorful-frame .workspace-tab-header.is-active .workspace-tab-header-inner-close-button { 191 | --tab-text-color-focused: var(--text-faint); 192 | --tab-text-color-focused-active-current: var(--text-normal); 193 | } 194 | 195 | /* background color for active icons in left sidebar */ 196 | .fpp-colorful-frame .mod-left-split .mod-top .workspace-tab-header.is-active, 197 | .fpp-colorful-frame .mod-right-split .mod-top .workspace-tab-header.is-active { 198 | background-color: rgba(var(--ctp-crust), 0.2); 199 | } 200 | 201 | /* background color for active+hovered icons in left sidebar */ 202 | .fpp-colorful-frame .mod-left-split .mod-top .workspace-tab-header.is-active:hover, 203 | .fpp-colorful-frame .mod-right-split .mod-top .workspace-tab-header.is-active:hover { 204 | background-color: rgba(var(--ctp-crust), 0.3); 205 | } 206 | 207 | /* inverted color setting for left and right sidebar focused tabs */ 208 | .fpp-colorful-frame.fpp-colorful-frame-icon-toggle-light.theme-light .mod-left-split .mod-top .workspace-tab-header.is-active, 209 | .fpp-colorful-frame.fpp-colorful-frame-icon-toggle-light.theme-light .mod-right-split .mod-top .workspace-tab-header.is-active, 210 | .fpp-colorful-frame.fpp-colorful-frame-icon-toggle-dark.theme-dark .mod-left-split .mod-top .workspace-tab-header.is-active, 211 | .fpp-colorful-frame.fpp-colorful-frame-icon-toggle-dark.theme-dark .mod-right-split .mod-top .workspace-tab-header.is-active { 212 | background-color: rgba(var(--ctp-text), 0.3); 213 | } 214 | 215 | /* focused note's icon color in the tab ear */ 216 | .fpp-colorful-frame.is-focused .mod-active:not(.mod-stacked).mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon, 217 | .fpp-colorful-frame .mod-left-split .mod-top .workspace-tab-header:active .workspace-tab-header-inner-icon, 218 | .fpp-colorful-frame .mod-right-split .mod-top .workspace-tab-header:active .workspace-tab-header-inner-icon { 219 | color: var(--colorful-icon-color-alt); 220 | } 221 | 222 | /* set left and right sidebar resize handles to terminate at the header */ 223 | .fpp-colorful-frame .workspace-split.mod-vertical>*>.workspace-leaf-resize-handle, 224 | .fpp-colorful-frame .workspace-split.mod-left-split>.workspace-leaf-resize-handle, 225 | .fpp-colorful-frame .workspace-split.mod-right-split>.workspace-leaf-resize-handle { 226 | height: calc(100% - var(--header-height)); 227 | } 228 | 229 | /* set left and right sidebar toggle button colors */ 230 | .fpp-colorful-frame .sidebar-toggle-button.sidebar-toggle-button { 231 | background-color: var(--background-primary) !important; 232 | } 233 | 234 | /* macOS stuff, cant test */ 235 | .fpp-colorful-frame.mod-macos .sidebar-toggle-button.mod-right { 236 | border-radius: 0 0 0 var(--radius-m); 237 | } 238 | 239 | .fpp-colorful-frame.is-fullscreen:not(.is-popout-window) .sidebar-toggle-button.mod-left { 240 | border-radius: 0 0 var(--radius-m) 0; 241 | } 242 | 243 | .mod-top .workspace-tab-header-inner::after { 244 | display: none; 245 | } 246 | 247 | .fpp-colorful-frame.is-frameless:not(.is-hidden-frameless) .sidebar-toggle-button.mod-right, 248 | .fpp-colorful-frame.is-frameless:not(.is-hidden-frameless) .sidebar-toggle-button.mod-left { 249 | border-radius: var(--radius-m); 250 | } 251 | 252 | .fpp-colorful-frame:not(.is-frameless) .sidebar-toggle-button.mod-right, 253 | .fpp-colorful-frame:not(.is-frameless) .sidebar-toggle-button.mod-left { 254 | border-radius: var(--radius-m); 255 | } 256 | 257 | .workspace, 258 | .horizontal-main-container { 259 | background-color: var(--tab-container-background); 260 | } 261 | 262 | /* inactive tab header background */ 263 | .workspace .mod-root .workspace-tab-header:not(.is-active) { 264 | background-color: rgba(var(--ctp-mantle), var(--anp-depth-tab-opacity, 0.2)); 265 | } 266 | 267 | .is-focused .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-icon, 268 | .is-focused .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-title { 269 | color: var(--color-accent); 270 | } -------------------------------------------------------------------------------- /snippets/fastppuccin-rainbow-folders.css: -------------------------------------------------------------------------------- 1 | /*=============================================================== 2 | Rainbow Folders for FastPuccin 3 | ----------- 4 | Extracted from AnuPpuccin theme 5 | 6 | This snippet is extracted from the AnuPpuccin theme by AnubisNekhet. 7 | Support the original author's "Custom rainbow folder colors snippet" 8 | by downloading it through the link provided in the settings. 9 | 10 | This snippet is licensed under the GPL-3.0 (as is the original). 11 | I would recommend supporting the original author (AnubisNekhet). 12 | 13 | LostViking09 14 | --- 15 | 16 | The following is the licence of the original AnuPpuccin theme: 17 | 18 | AnuPpuccin is licensed under the GPL-3.0 license which allows you 19 | to modify the code freely, however the Copyright and license 20 | notices must be preserved in your CSS. If you redistribute a part 21 | of my code, please credit my theme in your CSS file, and specify 22 | which code you are using. Please keep my Buy Me a Coffee link 23 | in your README if you do so. 24 | 25 | https://www.buymeacoffee.com/anubisnekhet 26 | *===============================================================*/ 27 | 28 | 29 | /* @settings 30 | name: Rainbow Folders for FastPuccin 31 | id: fastppuccin-rainbow-folders-settings 32 | settings: 33 | - 34 | id: anuppuccin-url-custom-rainbow-colors 35 | title: Custom rainbow folder colors snippet 36 | description: "Download the snippet from AnuPpuccin through [this link](https://github.com/AnubisNekhet/AnuPpuccin/blob/main/snippets/custom-rainbow-colors.css)." 37 | type: info-text 38 | markdown: true 39 | - 40 | id: anp-alt-rainbow-style 41 | title: Rainbow style 42 | type: class-select 43 | allowEmpty: false 44 | default: anp-default-rainbow 45 | options: 46 | - 47 | label: None 48 | value: anp-default-rainbow 49 | - 50 | label: Full 51 | value: anp-full-rainbow-color-toggle 52 | - 53 | label: Simple 54 | value: anp-simple-rainbow-color-toggle 55 | 56 | # Workspace :: Rainbow Folders :: Full Folder Settings 57 | 58 | - 59 | id: anp-full-rainbow-folder-settings 60 | title: Full Folder Settings 61 | description: 62 | type: heading 63 | level: 3 64 | collapsed: true 65 | - 66 | id: anp-rainbow-file-toggle 67 | title: File recolor toggle 68 | desc: Recolors files to match the folders 69 | type: class-toggle 70 | - 71 | id: anp-full-rainbow-text-color-toggle-light 72 | title: Invert title colors (Light Mode) 73 | type: class-toggle 74 | - 75 | id: anp-full-rainbow-text-color-toggle-dark 76 | title: Invert title colors (Dark Mode) 77 | type: class-toggle 78 | - 79 | id: anp-rainbow-folder-bg-opacity 80 | title: Folder background color opacity 81 | type: variable-number 82 | default: 0.7 83 | 84 | # Workspace :: Rainbow Folders :: Simple Folder Settings 85 | 86 | - 87 | id: anp-simple-rainbow-folder-settings 88 | title: Simple Folder Settings 89 | description: 90 | type: heading 91 | level: 3 92 | collapsed: true 93 | - 94 | id: anp-simple-rainbow-title-toggle 95 | title: Enable title recolor 96 | type: class-toggle 97 | - 98 | id: anp-simple-rainbow-collapse-icon-toggle 99 | title: Enable collapse icon recolor 100 | type: class-toggle 101 | - 102 | id: anp-simple-rainbow-indentation-toggle 103 | title: Enable collapse indent recolor 104 | type: class-toggle 105 | - 106 | id: anp-simple-rainbow-icon-toggle 107 | title: Enable circular file 108 | type: class-toggle 109 | - 110 | id: anp-rainbow-subfolder-color-toggle 111 | title: Enable subfolder color inheritance 112 | type: class-toggle 113 | */ 114 | 115 | /*=============================================================== 116 | * RAINBOW FOLDERS 117 | * Author: AnubisNekhet 118 | * https://www.buymeacoffee.com/anubisnekhet 119 | *===============================================================*/ 120 | /*--------------------------------------------------------------- 121 | * RAIBOW FOLDER VARIABLE 122 | 123 | * --rainbow-folder-color is a raw rgb variable whose value 124 | * is cycled per child folder in a folder tree. 125 | * Applying "inherit" to every child folder excluding first-order 126 | * child folders results in folders "inheriting" their parent 127 | * folder colors. 128 | *---------------------------------------------------------------*/ 129 | .nav-folder-children > .nav-folder:nth-child(11n+2), 130 | .nav-files-container > div > .nav-folder:nth-child(11n+2), 131 | [data-type=bookmarks] .tree-item:nth-child(11n+2) { 132 | --rainbow-folder-color: var(--ctp-red); 133 | } 134 | .nav-folder-children > .nav-folder:nth-child(11n+3), 135 | .nav-files-container > div > .nav-folder:nth-child(11n+3), 136 | [data-type=bookmarks] .tree-item:nth-child(11n+3) { 137 | --rainbow-folder-color: var(--ctp-maroon); 138 | } 139 | .nav-folder-children > .nav-folder:nth-child(11n+4), 140 | .nav-files-container > div > .nav-folder:nth-child(11n+4), 141 | [data-type=bookmarks] .tree-item:nth-child(11n+4) { 142 | --rainbow-folder-color: var(--ctp-peach); 143 | } 144 | .nav-folder-children > .nav-folder:nth-child(11n+5), 145 | .nav-files-container > div > .nav-folder:nth-child(11n+5), 146 | [data-type=bookmarks] .tree-item:nth-child(11n+5) { 147 | --rainbow-folder-color: var(--ctp-yellow); 148 | } 149 | .nav-folder-children > .nav-folder:nth-child(11n+6), 150 | .nav-files-container > div > .nav-folder:nth-child(11n+6), 151 | [data-type=bookmarks] .tree-item:nth-child(11n+6) { 152 | --rainbow-folder-color: var(--ctp-green); 153 | } 154 | .nav-folder-children > .nav-folder:nth-child(11n+7), 155 | .nav-files-container > div > .nav-folder:nth-child(11n+7), 156 | [data-type=bookmarks] .tree-item:nth-child(11n+7) { 157 | --rainbow-folder-color: var(--ctp-teal); 158 | } 159 | .nav-folder-children > .nav-folder:nth-child(11n+8), 160 | .nav-files-container > div > .nav-folder:nth-child(11n+8), 161 | [data-type=bookmarks] .tree-item:nth-child(11n+8) { 162 | --rainbow-folder-color: var(--ctp-sky); 163 | } 164 | .nav-folder-children > .nav-folder:nth-child(11n+9), 165 | .nav-files-container > div > .nav-folder:nth-child(11n+9), 166 | [data-type=bookmarks] .tree-item:nth-child(11n+9) { 167 | --rainbow-folder-color: var(--ctp-sapphire); 168 | } 169 | .nav-folder-children > .nav-folder:nth-child(11n+10), 170 | .nav-files-container > div > .nav-folder:nth-child(11n+10), 171 | [data-type=bookmarks] .tree-item:nth-child(11n+10) { 172 | --rainbow-folder-color: var(--ctp-blue); 173 | } 174 | .nav-folder-children > .nav-folder:nth-child(11n+11), 175 | .nav-files-container > div > .nav-folder:nth-child(11n+11), 176 | [data-type=bookmarks] .tree-item:nth-child(11n+11) { 177 | --rainbow-folder-color: var(--ctp-lavender); 178 | } 179 | .nav-folder-children > .nav-folder:nth-child(11n+12), 180 | .nav-files-container > div > .nav-folder:nth-child(11n+12), 181 | [data-type=bookmarks] .tree-item:nth-child(11n+12) { 182 | --rainbow-folder-color: var(--ctp-mauve); 183 | } 184 | 185 | .anp-rainbow-subfolder-color-toggle .nav-files-container .nav-folder.nav-folder .nav-folder, 186 | .anp-rainbow-subfolder-color-toggle [data-type=bookmarks] .tree-item .tree-item { 187 | --rainbow-folder-color: inherit; 188 | } 189 | 190 | /*--------------------------------------------------------------- 191 | * FULL RAINBOW STYLE 192 | *---------------------------------------------------------------*/ 193 | .anp-full-rainbow-color-toggle .nav-files-container > div > .nav-folder .nav-folder-title, 194 | .anp-full-rainbow-color-toggle .nav-files-container > div > .nav-folder .nav-file-title, 195 | .anp-full-rainbow-color-toggle .nav-files-container .collapse-icon svg.svg-icon, 196 | .anp-full-rainbow-color-toggle .tree-item-self .tree-item-icon { 197 | color: var(--anp-full-rainbow-text-inverted, var(--background-primary)); 198 | --icon-color: var(--anp-full-rainbow-text-inverted, 199 | var(--background-primary)); 200 | } 201 | .anp-full-rainbow-color-toggle.anp-rainbow-file-toggle .nav-files-container > div > .nav-folder-children > .nav-file .nav-file-title { 202 | color: var(--anp-full-rainbow-text-inverted, var(--background-primary)); 203 | } 204 | .anp-full-rainbow-color-toggle.anp-rainbow-file-toggle.theme-dark .nav-files-container > .nav-folder-children > .nav-file { 205 | background-color: rgba(var(--ctp-text), var(--anp-rainbow-folder-bg-opacity)); 206 | } 207 | .anp-full-rainbow-color-toggle.anp-rainbow-file-toggle.theme-light .nav-files-container > div > .nav-file { 208 | background-color: rgba(var(--ctp-overlay1), var(--anp-rainbow-folder-bg-opacity)); 209 | } 210 | .anp-full-rainbow-color-toggle.anp-rainbow-file-toggle .nav-files-container > div > .nav-file { 211 | border-radius: 5px; 212 | margin-bottom: 2px; 213 | } 214 | .anp-full-rainbow-color-toggle:not(.is-grabbing) .nav-files-container > div > .nav-folder .nav-folder-title:hover, 215 | .anp-full-rainbow-color-toggle:not(.is-grabbing) .nav-files-container > div .nav-file .nav-file-title:hover { 216 | background-color: rgba(var(--ctp-base), 0.1); 217 | } 218 | .anp-full-rainbow-color-toggle:not(.is-grabbing) .nav-files-container > div > .nav-folder .nav-file-title.is-active { 219 | border-color: rgba(var(--ctp-base), 0.2); 220 | background-color: rgba(var(--ctp-base), 0.2); 221 | } 222 | .anp-full-rainbow-color-toggle .nav-file { 223 | overflow-y: hidden; 224 | } 225 | .anp-full-rainbow-color-toggle .nav-file-title-content.is-being-renamed, 226 | .anp-full-rainbow-color-toggle .nav-folder-title-content.is-being-renamed { 227 | cursor: text; 228 | border-color: var(--interactive-accent); 229 | background-color: rgba(var(--ctp-crust), 0.2); 230 | } 231 | .anp-full-rainbow-color-toggle .nav-file-title-content.is-being-renamed::selection, 232 | .anp-full-rainbow-color-toggle .nav-folder-title-content.is-being-renamed::selection { 233 | background-color: hsla(var(--color-accent-hsl), 0.2); 234 | } 235 | .anp-full-rainbow-color-toggle .nav-file-title-content.is-being-renamed::selection { 236 | background-color: rgba(var(--ctp-accent), 0.2); 237 | } 238 | .anp-full-rainbow-color-toggle .nav-files-container .nav-folder > .nav-folder-children { 239 | padding: 0 5px 0 5px; 240 | } 241 | .anp-full-rainbow-color-toggle .nav-files-container > div > .nav-folder { 242 | transition: background-color 0.4s; 243 | background-color: rgba(var(--rainbow-folder-color), var(--anp-rainbow-folder-bg-opacity)); 244 | margin-bottom: 2px; 245 | border-radius: 5px; 246 | } 247 | .anp-full-rainbow-color-toggle .nav-files-container > div > .nav-folder .nav-folder-children { 248 | border-color: rgba(var(--ctp-crust), 0.4); 249 | } 250 | .anp-full-rainbow-color-toggle .nav-files-container > div > .nav-file.has-focus { 251 | background-color: rgba(var(--ctp-text), var(--anp-rainbow-folder-bg-opacity)); 252 | border-left: none; 253 | border-color: rgb(var(--ctp-accent)); 254 | } 255 | .anp-full-rainbow-color-toggle .nav-files-container > div > .nav-file > .nav-file-title, .anp-full-rainbow-color-toggle .nav-files-container > div > .nav-file.has-focus > .nav-file-title { 256 | margin-bottom: 0; 257 | } 258 | .anp-full-rainbow-color-toggle .workspace-leaf.mod-active .nav-folder.has-focus > .nav-file-title, .anp-full-rainbow-color-toggle .workspace-leaf.mod-active .nav-folder.has-focus > .nav-file-title:focus-within, 259 | .anp-full-rainbow-color-toggle .workspace-leaf.mod-active .nav-folder.has-focus > .nav-folder-title, 260 | .anp-full-rainbow-color-toggle .workspace-leaf.mod-active .nav-folder.has-focus > .nav-folder-title:focus-within { 261 | box-shadow: none; 262 | } 263 | 264 | .anp-full-rainbow-text-color-toggle-dark.theme-dark, 265 | .anp-full-rainbow-text-color-toggle-light.theme-light { 266 | --anp-full-rainbow-text-inverted: rgb(var(--ctp-text)); 267 | } 268 | 269 | /*--------------------------------------------------------------- 270 | * SIMPLE RAINBOW STYLE 271 | *---------------------------------------------------------------*/ 272 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-title-toggle .nav-files-container > div > .nav-folder .nav-folder-title, 273 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-title-toggle [data-type=bookmarks] .tree-item .tree-item-inner { 274 | transition: color 0.4s; 275 | color: rgba(var(--rainbow-folder-color), var(--anp-simple-rainbow-opacity, 1)); 276 | --nav-item-background-hover: rgba(var(--rainbow-folder-color), 0.1); 277 | --nav-item-background-active: rgba(var(--rainbow-folder-color), 0.1); 278 | } 279 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-title-toggle .nav-folder.is-being-dragged-over { 280 | background-color: rgba(var(--rainbow-folder-color), 0.1); 281 | } 282 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-icon-toggle .nav-files-container > div > .nav-folder .nav-folder-title:after, 283 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-icon-toggle [data-type=bookmarks] .tree-item .tree-item-inner:after { 284 | transition: color 0.4s; 285 | color: rgba(var(--rainbow-folder-color), var(--anp-simple-rainbow-opacity, 1)); 286 | content: "⬤"; 287 | font-size: 10px; 288 | position: relative; 289 | margin-left: 4px; 290 | opacity: 0.5; 291 | top: -0.5px; 292 | } 293 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-icon-toggle [data-type=bookmarks] .tree-item .tree-item-inner { 294 | align-items: center; 295 | display: flex; 296 | flex-grow: 1; 297 | justify-content: space-between; 298 | } 299 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-indentation-toggle .nav-files-container .nav-folder > .nav-folder-children, 300 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-indentation-toggle [data-type=bookmarks] .tree-item .tree-item-children { 301 | transition: color 0.4s; 302 | border-color: rgba(var(--rainbow-folder-color), 0.5); 303 | } 304 | .anp-simple-rainbow-color-toggle.anp-simple-rainbow-collapse-icon-toggle .tree-item-self .tree-item-icon { 305 | --icon-color: rgba(var(--rainbow-folder-color), 306 | var(--anp-simple-rainbow-opacity, 1)); 307 | --nav-collapse-icon-color: rgba(var(--rainbow-folder-color), 308 | var(--anp-simple-rainbow-opacity, 1)); 309 | --nav-collapse-icon-color-collapsed: rgba(var(--rainbow-folder-color), 310 | var(--anp-simple-rainbow-opacity, 1)); 311 | } -------------------------------------------------------------------------------- /theme_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostViking09/obsidian-fastppuccin/44df25802faaec3a17bc596f0a56ac93cdd95e32/theme_image.png -------------------------------------------------------------------------------- /theme_image_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LostViking09/obsidian-fastppuccin/44df25802faaec3a17bc596f0a56ac93cdd95e32/theme_image_big.png -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * This script makes it slightly easier to release new versions of your 3 | * theme. If you are not using Github Releases with your theme, or 4 | * you are not interested in automating the process, you can safely ignore 5 | * this script. 6 | * 7 | * Usage: `$ npm run version` 8 | * 9 | * This script will automatically add a new entry to the versions.json file for 10 | * the current version of your theme. 11 | */ 12 | 13 | import { readFileSync, writeFileSync } from "fs"; 14 | 15 | const targetVersion = process.env.npm_package_version; 16 | 17 | // read minAppVersion from manifest.json and bump version to target version 18 | let manifest = JSON.parse(readFileSync("manifest.json", "utf8")); 19 | const { minAppVersion } = manifest; 20 | manifest.version = targetVersion; 21 | writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t")); 22 | 23 | // update versions.json with target version and minAppVersion from manifest.json 24 | let versions = JSON.parse(readFileSync("versions.json", "utf8")); 25 | versions[targetVersion] = minAppVersion; 26 | writeFileSync("versions.json", JSON.stringify(versions, null, "\t")); 27 | -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "1.0.0" 3 | } --------------------------------------------------------------------------------