├── assets ├── latte.webp ├── mocha.webp ├── frappe.webp ├── preview.webp └── macchiato.webp ├── themes ├── mocha │ ├── red.css │ ├── sky.css │ ├── blue.css │ ├── flamingo.css │ ├── green.css │ ├── lavender.css │ ├── maroon.css │ ├── mauve.css │ ├── peach.css │ ├── pink.css │ ├── sapphire.css │ ├── teal.css │ ├── yellow.css │ └── rosewater.css ├── frappe │ ├── blue.css │ ├── green.css │ ├── maroon.css │ ├── mauve.css │ ├── peach.css │ ├── pink.css │ ├── red.css │ ├── sky.css │ ├── teal.css │ ├── yellow.css │ ├── flamingo.css │ ├── lavender.css │ ├── rosewater.css │ └── sapphire.css ├── macchiato │ ├── blue.css │ ├── pink.css │ ├── red.css │ ├── sky.css │ ├── teal.css │ ├── flamingo.css │ ├── green.css │ ├── lavender.css │ ├── maroon.css │ ├── mauve.css │ ├── peach.css │ ├── rosewater.css │ ├── sapphire.css │ └── yellow.css └── latte │ ├── blue.css │ ├── green.css │ ├── maroon.css │ ├── mauve.css │ ├── peach.css │ ├── pink.css │ ├── red.css │ ├── sky.css │ ├── teal.css │ ├── yellow.css │ ├── flamingo.css │ ├── lavender.css │ ├── rosewater.css │ └── sapphire.css ├── .editorconfig ├── templates └── wlogout.tera ├── icons └── wlogout │ ├── frappe │ ├── blue │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── green │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── maroon │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── mauve │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── peach │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── pink │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── red │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── sky │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── teal │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── yellow │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── flamingo │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── lavender │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── rosewater │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ └── sapphire │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── latte │ ├── blue │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── green │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── maroon │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── mauve │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── peach │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── pink │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── red │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── sky │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── teal │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── yellow │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── flamingo │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── lavender │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── rosewater │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ └── sapphire │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── macchiato │ ├── red │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── sky │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── blue │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── flamingo │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── green │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── lavender │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── maroon │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── mauve │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── peach │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── pink │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── sapphire │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── teal │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ ├── yellow │ │ ├── reboot.svg │ │ ├── hibernate.svg │ │ └── lock.svg │ └── rosewater │ │ ├── reboot.svg │ │ └── hibernate.svg │ └── mocha │ ├── blue │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── green │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── maroon │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── mauve │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── peach │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── pink │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── red │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── sky │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── teal │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── yellow │ ├── reboot.svg │ ├── hibernate.svg │ └── lock.svg │ ├── flamingo │ ├── reboot.svg │ └── hibernate.svg │ ├── lavender │ ├── reboot.svg │ └── hibernate.svg │ ├── rosewater │ ├── reboot.svg │ └── hibernate.svg │ └── sapphire │ ├── reboot.svg │ └── hibernate.svg └── .github └── workflows └── whiskers-check.yml /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/wlogout/HEAD/assets/latte.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/wlogout/HEAD/assets/mocha.webp -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/wlogout/HEAD/assets/frappe.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/wlogout/HEAD/assets/preview.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/wlogout/HEAD/assets/macchiato.webp -------------------------------------------------------------------------------- /themes/mocha/red.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f38ba8; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/sky.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #89dceb; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/blue.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #8caaee; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/green.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #a6d189; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/maroon.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #ea999c; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/mauve.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #ca9ee6; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/peach.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #ef9f76; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/pink.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f4b8e4; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/red.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #e78284; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/sky.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #99d1db; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/teal.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #81c8be; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/yellow.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #e5c890; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/blue.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #8aadf4; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/pink.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f5bde6; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/red.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #ed8796; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/sky.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #91d7e3; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/teal.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #8bd5ca; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/blue.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #89b4fa; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/flamingo.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f2cdcd; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/green.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #a6e3a1; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/lavender.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #b4befe; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/maroon.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #eba0ac; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/mauve.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #cba6f7; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/peach.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #fab387; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/pink.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f5c2e7; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/sapphire.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #74c7ec; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/teal.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #94e2d5; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/yellow.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f9e2af; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/flamingo.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #eebebe; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/lavender.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #babbf1; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/rosewater.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f2d5cf; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/frappe/sapphire.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(48, 52, 70, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #85c1dc; 13 | text-decoration-color: #c6d0f5; 14 | color: #c6d0f5; 15 | background-color: #292c3c; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(63, 66, 85); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/blue.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #1e66f5; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/green.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #40a02b; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/maroon.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #e64553; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/mauve.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #8839ef; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/peach.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #fe640b; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/pink.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #ea76cb; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/red.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #d20f39; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/sky.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #04a5e5; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/teal.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #179299; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/yellow.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #df8e1d; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/flamingo.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f0c6c6; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/green.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #a6da95; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/lavender.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #b7bdf8; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/maroon.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #ee99a0; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/mauve.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #c6a0f6; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/peach.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f5a97f; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/rosewater.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f4dbd6; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/sapphire.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #7dc4e4; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/macchiato/yellow.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(36, 39, 58, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #eed49f; 13 | text-decoration-color: #cad3f5; 14 | color: #cad3f5; 15 | background-color: #1e2030; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(53, 57, 75); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/mocha/rosewater.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(30, 30, 46, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #f5e0dc; 13 | text-decoration-color: #cdd6f4; 14 | color: #cdd6f4; 15 | background-color: #181825; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(48, 50, 66); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/flamingo.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #dd7878; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/lavender.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #7287fd; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/rosewater.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #dc8a78; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /themes/latte/sapphire.css: -------------------------------------------------------------------------------- 1 | * { 2 | background-image: none; 3 | box-shadow: none; 4 | } 5 | 6 | window { 7 | background-color: rgba(239, 241, 245, 0.90); 8 | } 9 | 10 | button { 11 | border-radius: 0; 12 | border-color: #209fb5; 13 | text-decoration-color: #4c4f69; 14 | color: #4c4f69; 15 | background-color: #e6e9ef; 16 | border-style: solid; 17 | border-width: 1px; 18 | background-repeat: no-repeat; 19 | background-position: center; 20 | background-size: 25%; 21 | } 22 | 23 | button:focus, button:active, button:hover { 24 | /* 20% Overlay 2, 80% mantle */ 25 | background-color: rgb(209, 211, 220); 26 | outline-style: none; 27 | } 28 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /templates/wlogout.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: ^2.5.1 4 | matrix: 5 | - accent 6 | - flavor 7 | filename: themes/{{flavor.identifier}}/{{accent}}.css 8 | --- 9 | * { 10 | background-image: none; 11 | box-shadow: none; 12 | } 13 | 14 | window { 15 | background-color: {{ base | mod(opacity=0.9) | css_rgba }}; 16 | } 17 | 18 | button { 19 | border-radius: 0; 20 | border-color: #{{ flavor.colors[accent].hex }}; 21 | text-decoration-color: #{{ text.hex }}; 22 | color: #{{ text.hex }}; 23 | background-color: #{{ mantle.hex }}; 24 | border-style: solid; 25 | border-width: 1px; 26 | background-repeat: no-repeat; 27 | background-position: center; 28 | background-size: 25%; 29 | } 30 | 31 | button:focus, button:active, button:hover { 32 | /* 20% Overlay 2, 80% mantle */ 33 | background-color: {{ overlay2 | mix(color=mantle, amount=0.2) | css_rgb }}; 34 | outline-style: none; 35 | } 36 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/blue/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/green/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/maroon/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/mauve/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/peach/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/pink/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/red/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/sky/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/teal/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/yellow/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/blue/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/green/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/maroon/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/mauve/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/peach/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/pink/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/red/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/sky/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/teal/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/yellow/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/red/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/sky/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/blue/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/green/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/maroon/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/mauve/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/peach/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/pink/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/red/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/sky/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/teal/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/yellow/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/flamingo/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/lavender/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/rosewater/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/sapphire/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/flamingo/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/lavender/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/rosewater/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/sapphire/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/blue/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/flamingo/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/green/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/lavender/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/maroon/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/mauve/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/peach/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/pink/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/sapphire/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/teal/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/yellow/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/flamingo/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/lavender/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/rosewater/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/sapphire/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/rosewater/reboot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /.github/workflows/whiskers-check.yml: -------------------------------------------------------------------------------- 1 | name: whiskers 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: [main] 7 | pull_request: 8 | branches: [main] 9 | 10 | jobs: 11 | run: 12 | uses: catppuccin/actions/.github/workflows/whiskers-check.yml@v1 13 | with: 14 | args: | 15 | templates/wlogout.tera 16 | templates/icons/wleave/hibernate.tera 17 | templates/icons/wleave/lock.tera 18 | templates/icons/wleave/logout.tera 19 | templates/icons/wleave/reboot.tera 20 | templates/icons/wleave/shutdown.tera 21 | templates/icons/wleave/suspend.tera 22 | templates/icons/wlogout/hibernate.tera 23 | templates/icons/wlogout/lock.tera 24 | templates/icons/wlogout/logout.tera 25 | templates/icons/wlogout/reboot.tera 26 | templates/icons/wlogout/shutdown.tera 27 | templates/icons/wlogout/suspend.tera 28 | secrets: inherit 29 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/blue/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/green/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/maroon/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/mauve/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/peach/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/pink/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/red/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/sky/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/teal/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/yellow/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/blue/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/green/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/maroon/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/mauve/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/peach/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/pink/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/red/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/sky/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/teal/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/yellow/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/red/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/sky/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/blue/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/green/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/maroon/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/mauve/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/peach/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/pink/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/red/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/sky/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/teal/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/yellow/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/flamingo/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/lavender/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/rosewater/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/sapphire/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/flamingo/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/lavender/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/rosewater/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/sapphire/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/blue/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/flamingo/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/green/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/lavender/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/maroon/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/mauve/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/peach/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/pink/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/sapphire/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/teal/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/yellow/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/flamingo/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/lavender/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/rosewater/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/sapphire/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/rosewater/hibernate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/blue/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/green/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/maroon/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/mauve/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/peach/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/pink/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/red/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/sky/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/teal/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/yellow/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/blue/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/green/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/maroon/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/mauve/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/peach/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/pink/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/red/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/sky/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/teal/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/yellow/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/red/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/sky/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/blue/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/green/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/maroon/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/mauve/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/peach/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/pink/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/red/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/sky/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/teal/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/mocha/yellow/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/flamingo/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/lavender/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/rosewater/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/frappe/sapphire/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/flamingo/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/lavender/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/rosewater/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/latte/sapphire/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/blue/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/flamingo/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/green/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/lavender/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/maroon/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/mauve/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/peach/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/pink/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/sapphire/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/teal/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/wlogout/macchiato/yellow/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svg Vector Icons : http://www.onlinewebfonts.com/icon 6 | 7 | 8 | --------------------------------------------------------------------------------