### Install BubbleTint Go Package Source: https://github.com/lrstanley/bubbletint/blob/master/README.md Installs the latest version of the BubbleTint Go package using the go get command. This is the first step to using the library in your Go projects. ```console go get -u github.com/lrstanley/bubbletint@latest ``` -------------------------------- ### FrontEndDelight Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of using the FrontEndDelight tint from Bubbletint, likely for a theme appealing to front-end developers. ```Go tint.TintFrontEndDelight ``` -------------------------------- ### Use JuicyColors Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This code example demonstrates the usage of the JuicyColors color theme within Bubbletint, specifying its identifier. ```Go tint.TintJuicyColors ``` -------------------------------- ### Apply Chalk Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This example shows the usage of `tint.TintChalk` to apply the Chalk theme. This function is part of the bubbletint theme management system. ```Dart tint.TintChalk ``` -------------------------------- ### Custom Registry Example Source: https://github.com/lrstanley/bubbletint/blob/master/README.md Demonstrates how to create a custom registry for bubbletint, registering multiple tints and setting a default tint. It also shows how to paginate through registered tints and use the registry for styling. ```go package main import ( // [...] tint "github.com/lrstanley/bubbletint" ) func main() { // [...] theme := tint.NewRegistry( tint.TintDraculaPlus, // Set default/current tint. tint.TintGithub, tint.TintTomorrow, tint.TintTokyoNight, } ttheme.Register(tint.TintNord) // Register additional tints on the custom registry. ttheme.SetTint(tint.TintNord) // Can still set a tint on a custom registry. // Can also paginate through tints, using PreviousTint/NextTint ttheme.NextTint() // You can now use methods like theme.Bg(), theme.Fg(), theme.BrightGreen(), etc. style := lipgloss.NewStyle().SetForeground(theme.Fg()).Background(theme.BrightGreen()) } ``` -------------------------------- ### Apply Chester Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This example illustrates the application of the Chester theme using the `tint.TintChester` function. This is part of the bubbletint theme collection. ```Dart tint.TintChester ``` -------------------------------- ### Specific Tint Usage Example Source: https://github.com/lrstanley/bubbletint/blob/master/README.md Illustrates how to use specific tints from the bubbletint library to style elements like a status bar. It shows direct usage of tint constants and assigning them to variables for styling. ```go package main import ( // [...] tint "github.com/lrstanley/bubbletint" ) var ( statusbarStyle = lipgloss.NewStyle(). SetForeground(tint.TintDraculaPlus.Fg()). Background(tint.TintDraculaPlus.BrightGreen()) ) // Or: var ( ttheme = tint.TintDraculaPlus statusbarStyle = lipgloss.NewStyle().SetForeground(theme.Fg()).Background(theme.BrightGreen()) ) ``` -------------------------------- ### Apply Contrast Light Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This example illustrates the application of the Contrast Light theme using the `tint.TintContrastLight` function. This is a theme available in the bubbletint library. ```Dart tint.TintContrastLight ``` -------------------------------- ### Use IcGreenPpl Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This code example shows the usage of the IcGreenPpl color theme within Bubbletint, specifying its identifier. ```Go tint.TintIcGreenPpl ``` -------------------------------- ### Use Japanesque Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This code example demonstrates the usage of the Japanesque color theme within Bubbletint, specifying its identifier. ```Go tint.TintJapanesque ``` -------------------------------- ### Use AdventureTime Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of using the 'AdventureTime' color tint within the bubbletint project. The usage is specified as `tint.TintAdventureTime`. ```python tint.TintAdventureTime ``` -------------------------------- ### Use ManPage Theme in Bubbletint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of applying the ManPage color theme to Bubbletint. The TintManPage function from the tint package is used for this purpose. ```Go tint.TintManPage ``` -------------------------------- ### Flatland Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of using the Flatland tint from the Bubbletint library, intended for a specific terminal color theme. ```Go tint.TintFlatland ``` -------------------------------- ### Apply Cobalt Neon Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This code example demonstrates how to apply the Cobalt Neon theme using `tint.TintCobaltNeon`. This function is part of the bubbletint project. ```Dart tint.TintCobaltNeon ``` -------------------------------- ### Use Atom Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of using the 'Atom' color tint within the bubbletint project. The usage is specified as `tint.TintAtom`. ```python tint.TintAtom ``` -------------------------------- ### Ganyu Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of using the Ganyu tint from Bubbletint, possibly inspired by the character Ganyu, for terminal customization. ```Go tint.TintGanyu ``` -------------------------------- ### Use Konsolas Theme in Bubbletint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of applying the Konsolas color theme to Bubbletint. The TintKonsolas function from the tint package is used. ```Go tint.TintKonsolas ``` -------------------------------- ### Apply Crystal Violet Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This example demonstrates how to use `tint.TintCrystalViolet` to apply the Crystal Violet theme. This function is part of the bubbletint theme management system. ```Dart tint.TintCrystalViolet ``` -------------------------------- ### Use Andromeda Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example for using the 'Andromeda' color tint within the bubbletint project. The usage is specified as `tint.TintAndromeda`. ```python tint.TintAndromeda ``` -------------------------------- ### Use Global Registry in Go Source: https://github.com/lrstanley/bubbletint/blob/master/README.md Demonstrates how to initialize and use the global tint registry in a Go application. It shows setting a specific tint by its constant or ID and then using the tint colors with lipgloss styles. ```go package main import ( // [...] tint "github.com/lrstanley/bubbletint" ) func main() { // [...] tint.NewDefaultRegistry() tint.SetTint(tint.TintDraculaPlus) // Set a specific tint. ttint.SetTintID("dracula_plus") // Or by ID (this aligns with a Tint's ID() method). // You can now use methods like tint.Bg(), tint.Fg(), tint.BrightGreen(), etc. style := lipgloss.NewStyle().SetForeground(tint.Fg()).Background(tint.BrightGreen()) } ``` -------------------------------- ### Apply Spring Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Spring' theme. It uses the tint utility with the theme's designated usage identifier. ```bash tint.TintSpring ``` -------------------------------- ### SoftServer Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the SoftServer theme in Bubbletint, including its ID and a reference to its visual representation. ```html ``` -------------------------------- ### Apply Sonoran Sunrise Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Sonoran Sunrise' theme. It uses the tint utility with the theme's designated usage identifier, crediting the original author. ```bash tint.TintSonoranSunrise ``` -------------------------------- ### Github Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the Github tint from the Bubbletint library, likely for a theme inspired by GitHub's color scheme. ```Go tint.TintGithub ``` -------------------------------- ### Shaman Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the Shaman theme in Bubbletint, specifying its ID and linking to its preview. ```html ``` -------------------------------- ### Apply Sublette Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Sublette' theme. It uses the tint utility with the theme's designated usage identifier, crediting the original author. ```bash tint.TintSublette ``` -------------------------------- ### Use Lavandula Theme in Bubbletint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides an example of implementing the Lavandula color theme within Bubbletint. The TintLavandula function from the tint package is utilized. ```Go tint.TintLavandula ``` -------------------------------- ### Apply Spacedust Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Spacedust' theme. It uses the tint utility with the theme's designated usage identifier. ```bash tint.TintSpacedust ``` -------------------------------- ### Apply BlueBerryPie Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'BlueBerryPie' theme using the `tint.TintBlueBerryPie` function. This is part of a Go library for terminal color schemes. ```Go tint.TintBlueBerryPie ``` -------------------------------- ### Use Hybrid Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the Hybrid color theme for Bubbletint, including its specific usage identifier. ```Go tint.TintHybrid ``` -------------------------------- ### Homebrew Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the usage of the 'Homebrew' color theme, providing the specific identifier for its application within the Bubbletint framework. ```text tint.TintHomebrew ``` -------------------------------- ### Use Kolorit Theme in Bubbletint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates how to implement the Kolorit color theme in Bubbletint. This is achieved by calling the TintKolorit function from the tint package. ```Go tint.TintKolorit ``` -------------------------------- ### Use Adventure Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates how to use the 'Adventure' color tint provided by the bubbletint library. The tint is referenced as `tint.TintAdventure`. ```python tint.TintAdventure ``` -------------------------------- ### Apply Borland Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates the use of `tint.TintBorland` to apply the 'Borland' theme. This function is part of a Go library for terminal color schemes. ```Go tint.TintBorland ``` -------------------------------- ### Go TintMonokaiPro Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the TintMonokaiPro theme in Go. This theme is part of the Windows Terminal tinting system and credits monokai.pro. ```Go tint.TintMonokaiPro ``` -------------------------------- ### Homebrew Theme Preview Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Displays a visual preview of the 'Homebrew' color palette via an SVG image. ```html ``` -------------------------------- ### FunForrest Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the FunForrest tint in Bubbletint, suggesting a playful and perhaps vibrant forest-themed terminal appearance. ```Go tint.TintFunForrest ``` -------------------------------- ### Floraverse Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the application of the Floraverse tint using the Bubbletint library, likely for a nature-inspired terminal theme. ```Go tint.TintFloraverse ``` -------------------------------- ### Apply Jubi Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Jubi' theme to your terminal using 'tint.TintJubi'. This theme provides a cheerful and vibrant color scheme. ```Python import tint # Apply the Jubi theme window.SetTint(tint.TintJubi) ``` -------------------------------- ### Flat Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the usage of the Flat tint within the Bubbletint framework, likely for applying a minimalist color scheme to the terminal. ```Go tint.TintFlat ``` -------------------------------- ### Use AtomOneLight Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates how to apply the 'Atom One Light' color tint using the bubbletint library. The tint is accessed through `tint.TintAtomOneLight`. ```python tint.TintAtomOneLight ``` -------------------------------- ### Use IcOrangePpl Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the integration of the IcOrangePpl color theme in Bubbletint, providing its usage identifier. ```Go tint.TintIcOrangePpl ``` -------------------------------- ### Apply Chalkboard Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates how to use `tint.TintChalkboard` to apply the Chalkboard theme. It's a specific theme implementation within the bubbletint library. ```Dart tint.TintChalkboard ``` -------------------------------- ### Use JackieBrown Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows how to apply the JackieBrown color theme in Bubbletint, referencing its usage identifier. ```Go tint.TintJackieBrown ``` -------------------------------- ### Apply Solarized Dark Higher Contrast Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Solarized Dark Higher Contrast' theme. It uses the tint utility with the theme's designated usage identifier. ```bash tint.TintSolarizedDarkHigherContrast ``` -------------------------------- ### Apply Space Gray Eighties Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'SpaceGray Eighties' theme. It uses the tint utility with the theme's designated usage identifier. ```bash tint.TintSpaceGrayEighties ``` -------------------------------- ### Apply Qb64SuperDarkBlue Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the Qb64SuperDarkBlue color theme to the terminal. This function is part of the 'tint' library and does not have external dependencies beyond the library itself. It credits jmmv for their contribution. ```Python tint.TintQb64SuperDarkBlue ``` -------------------------------- ### Apply Ayu Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates how to apply the 'Ayu' theme to your terminal using the 'tint.TintAyu' class. It's a straightforward way to customize your terminal's appearance. ```Python import tint # Apply the Ayu theme window.SetTint(tint.TintAyu) ``` -------------------------------- ### Apply Primer Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the Primer color theme to the terminal. This function is part of the 'tint' library and does not have external dependencies beyond the library itself. ```Python tint.TintPrimer ``` -------------------------------- ### Apply CoffeeTheme Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'CoffeeTheme' to your terminal using 'tint.TintCoffeeTheme'. This theme offers a distinct color palette for your terminal. ```Python import tint # Apply the CoffeeTheme window.SetTint(tint.TintCoffeeTheme) ``` -------------------------------- ### Use Kibble Theme in Bubbletint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows the usage of the Kibble color theme within Bubbletint. The TintKibble function from the tint package is utilized for this purpose. ```Go tint.TintKibble ``` -------------------------------- ### Apply DoomOne Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the DoomOne color tint to the terminal. This function is part of the tint module. ```Python tint.TintDoomOne ``` -------------------------------- ### Apply Pandora Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the Pandora color theme to the terminal. This function is part of the 'tint' library and does not have external dependencies beyond the library itself. ```Python tint.TintPandora ``` -------------------------------- ### Apply Breeze Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'Breeze' theme using the `tint.TintBreeze` function. This function is part of a Go library for terminal customization. ```Go tint.TintBreeze ``` -------------------------------- ### Apply OneStar Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'OneStar' color theme, contributed by jos3s. This theme is part of the Bubbletint project and is designed for Windows Terminal. ```Go tint.TintOneStar ``` -------------------------------- ### Apply Idea Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Idea' theme to your terminal using 'tint.TintIdea'. This theme offers a clean and inspiring color palette. ```Python import tint # Apply the Idea theme window.SetTint(tint.TintIdea) ``` -------------------------------- ### Apply Bright Lights Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet illustrates the usage of `tint.TintBrightLights` to apply the 'Bright Lights' theme. This function is part of a Go package for terminal appearance. ```Go tint.TintBrightLights ``` -------------------------------- ### Apply Catppuccin Macchiato Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the Catppuccin Macchiato theme via the `tint.TintCatppuccinMacchiato` function. This is a theme available in the bubbletint library. ```Dart tint.TintCatppuccinMacchiato ``` -------------------------------- ### Go TintMonokaiCmder Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the TintMonokaiCmder theme in Go. This theme is part of the Windows Terminal tinting system and credits vdurante. ```Go tint.TintMonokaiCmder ``` -------------------------------- ### Apply Ciapre Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows the usage of `tint.TintCiapre` to apply the Ciapre theme. It's a specific theme available within the bubbletint library. ```Dart tint.TintCiapre ``` -------------------------------- ### Hardcore Theme Preview Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Presents a visual preview of the 'Hardcore' color palette using an SVG image. ```html ``` -------------------------------- ### Apply Zenburn Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Zenburn' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintZenburn ``` -------------------------------- ### Apply WildCherry Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'WildCherry' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintWildCherry ``` -------------------------------- ### FishTank Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows how to use the FishTank tint from the Bubbletint library, presumably to set a particular terminal color theme. ```Go tint.TintFishTank ``` -------------------------------- ### Apply BlueMatrix Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates the use of `tint.TintBlueMatrix` to apply the 'Blue Matrix' theme. This function is part of a Go library for customizing terminal appearance. ```Go tint.TintBlueMatrix ``` -------------------------------- ### Use AlienBlood Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows how to implement the 'AlienBlood' color tint from the bubbletint library. The tint is referenced by `tint.TintAlienBlood`. ```python tint.TintAlienBlood ``` -------------------------------- ### Apply BelafonteDay Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Belafonte Day' color theme via the `tint.TintBelafonteDay` function. This theme is one of many available in the library. ```Go tint.TintBelafonteDay ``` -------------------------------- ### Apply Unikitty Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Unikitty' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintUnikitty ``` -------------------------------- ### Go TintMolokai Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the TintMolokai theme in Go. This theme is part of the Windows Terminal tinting system. ```Go tint.TintMolokai ``` -------------------------------- ### Apply Elementary Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the Elementary color theme to Bubbletint. This theme is likely inspired by the simplicity and design principles of the Elementary OS. ```Go tint.TintElementary ``` -------------------------------- ### SerendipityMidnight Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows how to use the SerendipityMidnight theme in Bubbletint. It specifies the theme's ID and provides a link to its visual representation and credits the contributors. ```html ``` -------------------------------- ### Apply WarmNeon Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'WarmNeon' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintWarmNeon ``` -------------------------------- ### Apply Square Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'Square' theme to your Windows Terminal. It uses the tint utility with the theme's specific identifier. ```bash tint.TintSquare ``` -------------------------------- ### GruvboxLight Theme Preview Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Presents a visual preview of the 'GruvboxLight' color palette using an SVG image. ```html ``` -------------------------------- ### Apply Zeonica Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Zeonica' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintZeonica ``` -------------------------------- ### SeafoamPastel Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the SeafoamPastel theme in Bubbletint. It includes the theme's ID and a direct reference to its definition. ```html ``` -------------------------------- ### Guezwhoz Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows the correct way to use the 'Guezwhoz' color theme by referencing its specific identifier within the Bubbletint library. ```text tint.TintGuezwhoz ``` -------------------------------- ### Galizur Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the usage of the Galizur tint within the Bubbletint library, potentially for a unique or custom terminal theme. ```Go tint.TintGalizur ``` -------------------------------- ### Apply Monokai Pro (Filter Ristretto) Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Monokai Pro (Filter Ristretto)' color theme. This is a specific theme for terminal customization. ```bash tint.TintMonokaiProFilterRistretto ``` -------------------------------- ### Bubbletint Theme: Ubuntu Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Explains the Ubuntu color theme for Bubbletint. This theme is identified by the ID 'ubuntu' and can be used with `tint.TintUbuntu`. ```csharp tint.TintUbuntu ``` -------------------------------- ### Grape Theme Preview Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Presents a visual preview of the 'Grape' color palette through an SVG image. ```html ``` -------------------------------- ### Hivacruz Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the 'Hivacruz' color theme, including its identifier for application in Bubbletint. ```text tint.TintHivacruz ``` -------------------------------- ### Apply ChallengerDeep Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This code shows the usage of `tint.TintChallengerDeep` for applying the ChallengerDeep terminal theme. It's a function provided by the bubbletint package. ```Dart tint.TintChallengerDeep ``` -------------------------------- ### Apply Catppuccin Latte Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the Catppuccin Latte theme using the `tint.TintCatppuccinLatte` function. It is part of the bubbletint project. ```Dart tint.TintCatppuccinLatte ``` -------------------------------- ### Apply PiattoLight Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the PiattoLight color theme to the terminal. This function is part of the 'tint' library and does not have external dependencies beyond the library itself. ```Python tint.TintPiattoLight ``` -------------------------------- ### Apply Solarized Dark Patched Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'Solarized Dark - Patched' theme using the tint utility. It references the theme by its specific ID. ```bash tint.TintSolarizedDarkPatched ``` -------------------------------- ### TintBuiltinTangoLight for Window Terminal Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Builtin Tango Light' tint to Window Terminal. This option is part of the 'tint' module and is referenced by 'tint.TintBuiltinTangoLight'. ```json { "name": "Builtin Tango Light", "id": "builtin_tango_light", "usage": "tint.TintBuiltinTangoLight" } ``` -------------------------------- ### Apply N0Tch2K Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'N0Tch2k' color theme. This theme provides a unique aesthetic for terminal color schemes. ```bash tint.TintN0Tch2K ``` -------------------------------- ### Grape Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows how to apply the 'Grape' color theme using its designated identifier in the Bubbletint library. ```text tint.TintGrape ``` -------------------------------- ### TintCatppuccinFrappe for Window Terminal Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Catppuccin Frappe' tint to Window Terminal. This option is part of the 'tint' module and is referenced by 'tint.TintCatppuccinFrappe'. ```json { "name": "Catppuccin Frappe", "id": "catppuccin_frappe", "usage": "tint.TintCatppuccinFrappe" } ``` -------------------------------- ### Hardcore Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the usage of the 'Hardcore' color theme, providing the specific identifier for its application within the Bubbletint framework. ```text tint.TintHardcore ``` -------------------------------- ### SerendipityMorning Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the usage of the SerendipityMorning theme within the Bubbletint project. It includes the theme's ID and a reference to its SVG preview, acknowledging the contributors. ```html ``` -------------------------------- ### Use Afterglow Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the application of the 'Afterglow' color tint using the bubbletint library. The tint is accessed through `tint.TintAfterglow`. ```python tint.TintAfterglow ``` -------------------------------- ### Hacktober Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the 'Hacktober' color theme, including its identifier for application in Bubbletint. ```text tint.TintHacktober ``` -------------------------------- ### Apply Wryan Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Wryan' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintWryan ``` -------------------------------- ### Apply BelafonteNight Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows the usage of `tint.TintBelafonteNight` to apply the 'Belafonte Night' terminal theme. This function is part of a Go library for terminal customization. ```Go tint.TintBelafonteNight ``` -------------------------------- ### Use LabFox Theme in Bubbletint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the integration of the LabFox color theme into Bubbletint. The TintLabFox function from the tint package is the relevant component. ```Go tint.TintLabFox ``` -------------------------------- ### Apply Pro Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the Pro color theme to the terminal. This function is part of the 'tint' library and does not have external dependencies beyond the library itself. ```Python tint.TintPro ``` -------------------------------- ### TintBuiltinLight for Window Terminal Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Builtin Light' tint to Window Terminal. This option is part of the 'tint' module and is referenced by 'tint.TintBuiltinLight'. ```json { "name": "Builtin Light", "id": "builtin_light", "usage": "tint.TintBuiltinLight" } ``` -------------------------------- ### Use Jellybeans Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the integration of the Jellybeans color theme in Bubbletint, providing its usage identifier. ```Go tint.TintJellybeans ``` -------------------------------- ### Apply Neopolitan Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Neopolitan' color theme to the terminal. This theme is designed to offer a distinct visual experience. ```bash tint.TintNeopolitan ``` -------------------------------- ### Apply Rapture Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Rapture' color tint to the terminal. This is a predefined theme within the bubbletint library. ```python tint.TintRapture ``` -------------------------------- ### Glorious Theme Preview Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Displays a visual preview of the 'Glorious' color palette using an SVG image. ```html ``` -------------------------------- ### HipsterGreen Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows the correct way to use the 'HipsterGreen' color theme by referencing its specific identifier within the Bubbletint library. ```text tint.TintHipsterGreen ``` -------------------------------- ### HipsterGreen Theme Preview Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Presents a visual preview of the 'HipsterGreen' color palette using an SVG image. ```html ``` -------------------------------- ### Apply AyuLight Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'AyuLight' theme to your terminal. It utilizes the 'tint.TintAyuLight' class for a light variant of the Ayu theme. ```Python import tint # Apply the AyuLight theme window.SetTint(tint.TintAyuLight) ``` -------------------------------- ### Use Hyper Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the Hyper color theme in Bubbletint, referencing its unique usage identifier. ```Go tint.TintHyper ``` -------------------------------- ### Apply Retrowave Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Retrowave' color tint to the terminal. This theme is available in the bubbletint library and credits Chrissy LeMaire. ```python tint.TintRetrowave ``` -------------------------------- ### Apply Vaughn Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Vaughn' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintVaughn ``` -------------------------------- ### Go TintMonaLisa Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the TintMonaLisa theme in Go. This theme is part of the Windows Terminal tinting system. ```Go tint.TintMonaLisa ``` -------------------------------- ### Glacier Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows the application of the Glacier tint using the Bubbletint library, suggesting a cool, icy, or minimalist terminal theme. ```Go tint.TintGlacier ``` -------------------------------- ### Use AtelierSulphurpool Tint in Python Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows the usage of the 'Atelier Sulphurpool' color tint from the bubbletint library. The tint is referenced as `tint.TintAtelierSulphurpool`. ```python tint.TintAtelierSulphurpool ``` -------------------------------- ### Apply Wez Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Wez' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintWez ``` -------------------------------- ### Apply Cyberpunk Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates applying the 'Cyberpunk' theme to your terminal using 'tint.TintCyberpunk'. This theme offers a vibrant and futuristic color palette. ```Python import tint # Apply the Cyberpunk theme window.SetTint(tint.TintCyberpunk) ``` -------------------------------- ### SleepyHollow Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the usage of the SleepyHollow theme in Bubbletint, providing its ID and a link to its visual representation. ```html ``` -------------------------------- ### Framer Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates how to use the Framer tint within the Bubbletint library, possibly for a design-centric terminal theme. ```Go tint.TintFramer ``` -------------------------------- ### Apply OneDark Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'OneDark' color theme, contributed by azrikahar. This theme is part of the Bubbletint project and is designed for Windows Terminal. ```Go tint.TintOneDark ``` -------------------------------- ### Apply ProLight Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the ProLight color theme to the terminal. This function is part of the 'tint' library and does not have external dependencies beyond the library itself. ```Python tint.TintProLight ``` -------------------------------- ### Bubbletint Theme: TokyoNightStorm Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Demonstrates the usage of the TokyoNightStorm color theme in Bubbletint. This theme is identified by the ID 'tokyo_night_storm' and can be accessed via `tint.TintTokyoNightStorm`. ```csharp tint.TintTokyoNightStorm ``` -------------------------------- ### Apply Brogrammer Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet demonstrates the use of `tint.TintBrogrammer` to apply the 'Brogrammer' theme. This function is part of a Go library for terminal customization. ```Go tint.TintBrogrammer ``` -------------------------------- ### Seti Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Provides the usage information for the Seti theme in Bubbletint, including its ID and a reference to its visual representation. ```html ``` -------------------------------- ### Apply Whimsy Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Whimsy' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintWhimsy ``` -------------------------------- ### ForestBlue Tint Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Shows the usage of the ForestBlue tint from the Bubbletint library, suggesting a deep, forest-like color scheme for terminals. ```Go tint.TintForestBlue ``` -------------------------------- ### SerendipitySunset Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Details the usage of the SerendipitySunset theme in Bubbletint, including its ID and a link to its preview image, with credits to the developers. ```html ``` -------------------------------- ### Apply Unholy Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Unholy' color tint to the terminal. This function is part of the 'tint' library and requires no external dependencies beyond the library itself. ```C# tint.TintUnholy ``` -------------------------------- ### Apply Spiderman Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'Spiderman' theme to your Windows Terminal. It uses the tint utility with the theme's specific identifier. ```bash tint.TintSpiderman ``` -------------------------------- ### Apply Ryuuko Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Ryuuko' color tint to the terminal. This theme is available in the bubbletint library. ```python tint.TintRyuuko ``` -------------------------------- ### Apply NightLion V1 Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'NightLion v1' color theme. This is the first version of the NightLion theme for terminal customization. ```bash tint.TintNightLionV1 ``` -------------------------------- ### Grass Theme Usage Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Illustrates the usage of the 'Grass' color theme, providing the specific identifier for its application within the Bubbletint framework. ```text tint.TintGrass ``` -------------------------------- ### Apply Space Gray Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'SpaceGray' theme to your Windows Terminal. It uses the tint utility with the theme's specific identifier. ```bash tint.TintSpaceGray ``` -------------------------------- ### Apply Rippedcasts Tint Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Rippedcasts' color tint to the terminal. This theme is provided by the bubbletint library. ```python tint.TintRippedcasts ``` -------------------------------- ### Apply Cobalt2 Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows the usage of `tint.TintCobalt2` for applying the Cobalt2 terminal theme. It's a theme provided by the bubbletint package. ```Dart tint.TintCobalt2 ``` -------------------------------- ### Hopscotch Theme Preview Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Presents a visual preview of the 'Hopscotch' color palette using an SVG image. ```html ``` -------------------------------- ### Apply Neutron Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md Applies the 'Neutron' color theme. This theme is characterized by its clean and modern color palette for terminals. ```bash tint.TintNeutron ``` -------------------------------- ### Apply Nord Terminal Theme Source: https://github.com/lrstanley/bubbletint/blob/master/DEFAULT_TINTS.md This snippet shows how to apply the 'Nord' theme to your terminal. It utilizes the 'tint.TintNord' class, providing a cool and nature-inspired color scheme. ```Python import tint # Apply the Nord theme window.SetTint(tint.TintNord) ```