Skip to content

Latest commit

 

History

History
743 lines (523 loc) · 16.1 KB

themes.md

File metadata and controls

743 lines (523 loc) · 16.1 KB

Example themes

The available themes are listed bellow.
Click an item to see the details!

Weather of berlin city with dark text

berlin-dark

  • Content of the themes/weather/berlin/weather.lua file: click here.

  • Content of the themes/appearance/dark/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark",
        },
        weather = {
            name = "berlin",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of budapest city with dark-blue text

budapest-dark-blue

  • Content of the themes/weather/budapest/weather.lua file: click here.

  • Content of the themes/appearance/dark-blue/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-blue",
        },
        weather = {
            name = "budapest",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of delhi city with dark-green text

delhi-dark-green

  • Content of the themes/weather/delhi/weather.lua file: click here.

  • Content of the themes/appearance/dark-green/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-green",
        },
        weather = {
            name = "delhi",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of london city with dark-orange text

london-dark-orange

  • Content of the themes/weather/london/weather.lua file: click here.

  • Content of the themes/appearance/dark-orange/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-orange",
        },
        weather = {
            name = "london",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of moscow city with dark-yellow text

moscow-dark-yellow

  • Content of the themes/weather/moscow/weather.lua file: click here.

  • Content of the themes/appearance/dark-yellow/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-yellow",
        },
        weather = {
            name = "moscow",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of new-york city with light text

new-york-light

  • Content of the themes/weather/new-york/weather.lua file: click here.

  • Content of the themes/appearance/light/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light",
        },
        weather = {
            name = "new-york",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of paris city with light-blue text

paris-light-blue

  • Content of the themes/weather/paris/weather.lua file: click here.

  • Content of the themes/appearance/light-blue/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-blue",
        },
        weather = {
            name = "paris",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of sidney city with light-green text

sidney-light-green

  • Content of the themes/weather/sidney/weather.lua file: click here.

  • Content of the themes/appearance/light-green/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-green",
        },
        weather = {
            name = "sidney",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of tokyo city with light-orange text

tokyo-light-orange

  • Content of the themes/weather/tokyo/weather.lua file: click here.

  • Content of the themes/appearance/light-orange/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-orange",
        },
        weather = {
            name = "tokyo",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of wien city with light-yellow text

wien-light-yellow

  • Content of the themes/weather/wien/weather.lua file: click here.

  • Content of the themes/appearance/light-yellow/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-yellow",
        },
        weather = {
            name = "wien",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of berlin city with dark-bg text

berlin-dark-bg

  • Content of the themes/weather/berlin/weather.lua file: click here.

  • Content of the themes/appearance/dark-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-bg",
        },
        weather = {
            name = "berlin",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of budapest city with dark-blue-bg text

budapest-dark-blue-bg

  • Content of the themes/weather/budapest/weather.lua file: click here.

  • Content of the themes/appearance/dark-blue-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-blue-bg",
        },
        weather = {
            name = "budapest",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of delhi city with dark-green-bg text

delhi-dark-green-bg

  • Content of the themes/weather/delhi/weather.lua file: click here.

  • Content of the themes/appearance/dark-green-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-green-bg",
        },
        weather = {
            name = "delhi",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of london city with dark-orange-bg text

london-dark-orange-bg

  • Content of the themes/weather/london/weather.lua file: click here.

  • Content of the themes/appearance/dark-orange-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-orange-bg",
        },
        weather = {
            name = "london",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of moscow city with dark-yellow-bg text

moscow-dark-yellow-bg

  • Content of the themes/weather/moscow/weather.lua file: click here.

  • Content of the themes/appearance/dark-yellow-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "dark-yellow-bg",
        },
        weather = {
            name = "moscow",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of new-york city with light-bg text

new-york-light-bg

  • Content of the themes/weather/new-york/weather.lua file: click here.

  • Content of the themes/appearance/light-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-bg",
        },
        weather = {
            name = "new-york",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of paris city with light-blue-bg text

paris-light-blue-bg

  • Content of the themes/weather/paris/weather.lua file: click here.

  • Content of the themes/appearance/light-blue-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-blue-bg",
        },
        weather = {
            name = "paris",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of sidney city with light-green-bg text

sidney-light-green-bg

  • Content of the themes/weather/sidney/weather.lua file: click here.

  • Content of the themes/appearance/light-green-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-green-bg",
        },
        weather = {
            name = "sidney",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of tokyo city with light-orange-bg text

tokyo-light-orange-bg

  • Content of the themes/weather/tokyo/weather.lua file: click here.

  • Content of the themes/appearance/light-orange-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-orange-bg",
        },
        weather = {
            name = "tokyo",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top

Weather of wien city with light-yellow-bg text

wien-light-yellow-bg

  • Content of the themes/weather/wien/weather.lua file: click here.

  • Content of the themes/appearance/light-yellow-bg/appearance.lua file: click here.

  • Content of the theme.lua file:

    local settings = {}
    
    settings = {
        appearance = { 
            name = "light-yellow-bg",
        },
        weather = {
            name = "wien",
        },
        system = {
            hour_format_12 = true,
            locale = "en_US.UTF-8",
        },
    }
    
    return settings

Back to top