modify eww, add gruvbox colorscheme to dotfiles, niri, etc.
|
|
@ -1,51 +1,62 @@
|
|||
* {
|
||||
all: unset;
|
||||
background: transparent;
|
||||
font-family: "MapleMono";
|
||||
font-family: "Fira Code Nerd Font";
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
$bg: #1d2021;
|
||||
$bg1: #282828;
|
||||
$bg2: #32302f;
|
||||
$fg: #ebdbb2;
|
||||
$fgdim: #bdae93;
|
||||
$accent: #d79921;
|
||||
$border: #504945;
|
||||
|
||||
.container {
|
||||
background-color: #000000;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #454545;
|
||||
color: #ffffff;
|
||||
background-color: $bg1;
|
||||
border: 1px solid $border;
|
||||
color: $fg;
|
||||
border-radius: 10px;
|
||||
padding: 6px;
|
||||
}
|
||||
.button-label {
|
||||
|
||||
.button-label, .label {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: $fg;
|
||||
}
|
||||
|
||||
.completelytrans {
|
||||
background: none;
|
||||
}
|
||||
.label {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.calendar-label {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
color: $fg;
|
||||
}
|
||||
|
||||
window, calendar, calendar.view, calendar.header {
|
||||
window {
|
||||
all: unset;
|
||||
background-color: #000000;
|
||||
color: #cccccc;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
calendar, calendar.view, calendar.header {
|
||||
all: unset;
|
||||
background-color: $bg;
|
||||
color: $fgdim;
|
||||
font-size: 18px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
calendar:indeterminate {
|
||||
color: #555555;
|
||||
color: #665c54;
|
||||
}
|
||||
|
||||
calendar:selected {
|
||||
background-color: #1e1e1e;
|
||||
border: 1px solid #ffffff;
|
||||
color: #ffffff;
|
||||
border-radius: 2px;
|
||||
background-color: $bg2;
|
||||
border: 1px solid $accent;
|
||||
color: $fg;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,23 +3,23 @@
|
|||
(defwindow calendar
|
||||
:monitor 'HDMI-A-1'
|
||||
:stacking "fg"
|
||||
:geometry (geometry :x "1600" :y "810" :width "320" :height "250" :anchor "top left")
|
||||
:geometry (geometry :x "1600" :y "810" :width "320" :height "250" :anchor "top right")
|
||||
(calendar))
|
||||
|
||||
(defwindow year
|
||||
:monitor 'HDMI-A-1'
|
||||
:stacking "bg"
|
||||
:stacking "bg"
|
||||
:geometry (geometry :x "15" :y "15" :width "100" :height "100" :anchor "top left")
|
||||
:geometry (geometry :x "15" :y "15" :width "100" :height "100" :anchor "top right")
|
||||
(year))
|
||||
|
||||
(defwindow month
|
||||
:monitor 'HDMI-A-1'
|
||||
:stacking "bg"
|
||||
:stacking "bg"
|
||||
:geometry (geometry :x "15" :y "125" :width "100" :height "100" :anchor "top left")
|
||||
:geometry (geometry :x "15" :y "125" :width "100" :height "100" :anchor "top right")
|
||||
(month))
|
||||
|
||||
(defwindow day
|
||||
:monitor 'HDMI-A-1'
|
||||
:stacking "bg"
|
||||
:stacking "bg"
|
||||
:geometry (geometry :x "15" :y "235" :width "100" :height "100" :anchor "top left")
|
||||
:geometry (geometry :x "15" :y "235" :width "100" :height "100" :anchor "top right")
|
||||
(day))
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
#!bash
|
||||
cal -m
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
day_of_month=$(date +"%d")
|
||||
day_of_month=$(echo $day_of_month | sed 's/^0*//')
|
||||
if [[ $day_of_month -ge 11 && $day_of_month -le 13 ]]; then
|
||||
suffix="TH"
|
||||
suffix="th"
|
||||
else
|
||||
case $((day_of_month % 10)) in
|
||||
1) suffix="ST" ;;
|
||||
2) suffix="ND" ;;
|
||||
3) suffix="RD" ;;
|
||||
*) suffix="TH" ;;
|
||||
1) suffix="st" ;;
|
||||
2) suffix="nd" ;;
|
||||
3) suffix="rd" ;;
|
||||
*) suffix="th" ;;
|
||||
esac
|
||||
fi
|
||||
echo "${day_of_month}${suffix}"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash
|
||||
month=$(date +"%b" | tr '[:lower:]' '[:upper:]')
|
||||
#!/bin/sh
|
||||
month=$(date +"%b")
|
||||
echo "$month"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
# Reload/Open eww
|
||||
eww kill
|
||||
|
|
@ -7,4 +7,3 @@ eww daemon
|
|||
eww open year
|
||||
eww open month
|
||||
eww open day
|
||||
eww open calendar
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
year=$(date +"%Y")
|
||||
echo "$year"
|
||||
|
|
|
|||
|
|
@ -10,8 +10,6 @@ input {
|
|||
natural-scroll
|
||||
}
|
||||
|
||||
focus-follows-mouse
|
||||
|
||||
trackpoint {
|
||||
}
|
||||
}
|
||||
|
|
@ -28,7 +26,7 @@ cursor {
|
|||
}
|
||||
|
||||
output "HDMI-A-1" {
|
||||
mode "1920x1080@75"
|
||||
mode "1920x1080@74.973"
|
||||
scale 1
|
||||
transform "normal"
|
||||
}
|
||||
|
|
@ -85,7 +83,7 @@ screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
|
|||
|
||||
spawn-at-startup "waybar"
|
||||
spawn-at-startup "swww-daemon"
|
||||
spawn-at-startup "swww img --outputs HDMI-A-1 ~/Downloads/wall4.png"
|
||||
spawn-at-startup "swww img --outputs HDMI-A-1 ~/Wallpapers/wall9.png"
|
||||
|
||||
window-rule {
|
||||
match app-id=r#"^org\.wezfurlong\.wezterm$"#
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ require("plugins/lsp")
|
|||
require("plugins/nvim-tree")
|
||||
require("plugins/telescope")
|
||||
require("plugins/treesitter")
|
||||
--require("plugins/whichkey")
|
||||
require("config")
|
||||
require("plugins/render-markdown")
|
||||
require("plugins/monokai-pro")
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
"comfy-line-numbers.nvim": { "branch": "main", "commit": "31e2f9287b4491ad72defb9e0185eb2739983799" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "202d8e92b3a74ac88eb3a7f1e40fb59b4c2a6535" },
|
||||
"lsp_signature.nvim": { "branch": "master", "commit": "d50e40b3bf9324128e71b0b7e589765ce89466d2" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "a94fc68960665e54408fe37dcf573193c4ce82c9" },
|
||||
"mason.nvim": { "branch": "main", "commit": "8024d64e1330b86044fed4c8494ef3dcd483a67c" },
|
||||
"mini.nvim": { "branch": "main", "commit": "429e5f9dc9cd59bf76cd98b687300f0a384a7f52" },
|
||||
"monokai-pro.nvim": { "branch": "master", "commit": "1ac671f6da720cba967d28d25c2f16b8b4e18808" },
|
||||
|
|
@ -32,5 +31,6 @@
|
|||
"twilight.nvim": { "branch": "main", "commit": "664e752f4a219801265cc3fc18782b457b58c1e1" },
|
||||
"typst-preview.nvim": { "branch": "master", "commit": "e544812bba84b4f7976590f2b6c0dfbd099e1893" },
|
||||
"vim-closetag": { "branch": "master", "commit": "d0a562f8bdb107a50595aefe53b1a690460c3822" },
|
||||
"vim-vsnip": { "branch": "master", "commit": "0a4b8419e44f47c57eec4c90df17567ad4b1b36e" }
|
||||
"vim-vsnip": { "branch": "master", "commit": "0a4b8419e44f47c57eec4c90df17567ad4b1b36e" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,10 +13,6 @@ return {
|
|||
"nvim-tree/nvim-tree.lua",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
},
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
},
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
|
|
@ -76,6 +72,14 @@ return {
|
|||
},
|
||||
"sitiom/nvim-numbertoggle",
|
||||
"mluders/comfy-line-numbers.nvim",
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
event = "VeryLazy",
|
||||
init = function()
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
end,
|
||||
},
|
||||
{
|
||||
"folke/twilight.nvim",
|
||||
opts = {
|
||||
|
|
|
|||
|
|
@ -1,43 +0,0 @@
|
|||
local lualine = require("lualine")
|
||||
|
||||
lualine.setup({
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = "auto",
|
||||
component_separators = { left = "|", right = "|" },
|
||||
section_separators = { left = "", right = "" },
|
||||
disabled_filetypes = {
|
||||
statusline = {},
|
||||
winbar = {},
|
||||
},
|
||||
ignore_focus = {},
|
||||
always_divide_middle = true,
|
||||
globalstatus = false,
|
||||
refresh = {
|
||||
statusline = 1000,
|
||||
tabline = 1000,
|
||||
winbar = 1000,
|
||||
},
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = { "branch", "diff", "diagnostics" },
|
||||
lualine_c = { "filename" },
|
||||
lualine_x = { "encoding", "fileformat", "filetype" },
|
||||
lualine_y = {},
|
||||
lualine_z = { "location" },
|
||||
},
|
||||
inactive_sections = {
|
||||
lualine_a = {},
|
||||
lualine_b = {},
|
||||
lualine_c = { "filename" },
|
||||
lualine_x = { "location" },
|
||||
lualine_y = {},
|
||||
lualine_z = {},
|
||||
},
|
||||
tabline = {},
|
||||
winbar = {},
|
||||
inactive_winbar = {},
|
||||
extensions = {},
|
||||
})
|
||||
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
|
||||
//@theme "/nix/store/r6by463p9aqp6rk0rd23ljzwjrxs1dzd-rofi-2.0.0/share/rofi/themes/dmenu.rasi"
|
||||
|
||||
//@theme "/nix/store/r6by463p9aqp6rk0rd23ljzwjrxs1dzd-rofi-2.0.0/share/rofi/themes/gruvbox-dark.rasi"
|
||||
@theme "/home/coast/.config/rofi/gruvbox.rasi"
|
||||
|
|
@ -1,21 +1,18 @@
|
|||
/* Custom Gruvbox Dark theme */
|
||||
|
||||
* {
|
||||
highlight: bold italic;
|
||||
scrollbar: true;
|
||||
|
||||
/* Base palette (Gruvbox Dark) */
|
||||
base-bg: #1d2021; /* background */
|
||||
base-bg-soft: #32302f; /* dark gray */
|
||||
base-bg-alt: #3c3836; /* medium gray */
|
||||
base-fg: #ebdbb2; /* foreground */
|
||||
base-fg-dim: #a89984; /* gray */
|
||||
base-bg: #1d2021;
|
||||
base-bg-soft: #32302f;
|
||||
base-bg-alt: #3c3836;
|
||||
base-fg: #ebdbb2;
|
||||
base-fg-dim: #a89984;
|
||||
|
||||
accent: #fabd2f; /* yellow */
|
||||
accent-light: #fe8019; /* orange */
|
||||
accent-dark: #ebdbb2; /* red */
|
||||
accent: #fabd2f;
|
||||
accent-light: #fe8019;
|
||||
accent-dark: #ebdbb2;
|
||||
|
||||
border-gray: #504945; /* dark gray border */
|
||||
border-gray: #504945;
|
||||
|
||||
background: @base-bg;
|
||||
background-color: @background;
|
||||
|
|
@ -49,10 +46,15 @@
|
|||
}
|
||||
|
||||
configuration {
|
||||
font: "JetBrainsMono Nerd Font 13";
|
||||
font: "Fira Code Nerd Font 13";
|
||||
show-icons: true;
|
||||
terminal: "wezterm";
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 20px;
|
||||
}
|
||||
|
||||
window {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
"modules-center": [
|
||||
],
|
||||
"modules-right": [
|
||||
"network",
|
||||
"clock",
|
||||
// "battery",
|
||||
"pulseaudio"
|
||||
|
|
@ -17,7 +18,7 @@
|
|||
"pulseaudio": {
|
||||
"tooltip": false,
|
||||
"scroll-step": 5,
|
||||
"format": "VOL {volume}%",
|
||||
"format": " {volume}%",
|
||||
"format-muted": "muted",
|
||||
"format-icons": {
|
||||
"default": [
|
||||
|
|
@ -52,6 +53,7 @@
|
|||
},
|
||||
"custom/distro": {
|
||||
"format": "",
|
||||
"on-click": "sh -c 'rofi -show drun -config ~/.config/rofi/gruvbox.rasi'",
|
||||
"tooltip": false
|
||||
},
|
||||
"bluetooth": {
|
||||
|
|
@ -62,7 +64,7 @@
|
|||
"tooltip-format-connected": "{device_alias}"
|
||||
},
|
||||
"clock": {
|
||||
"format": "TIME {:%I:%M %p}",
|
||||
"format": " {:%I:%M %p}",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{:%a, %b %d, :%I:%M:%S %p}"
|
||||
},
|
||||
|
|
@ -79,9 +81,9 @@
|
|||
"network": {
|
||||
// "interface": "wlo1",
|
||||
"interface": "eno1",
|
||||
"format-wifi": "WLAN {essid}",
|
||||
"format-ethernet": "ETH {ipaddr}/{cidr}",
|
||||
"format-disconnected": "disconnected",
|
||||
"format-wifi": " {essid}",
|
||||
"format-ethernet": " {ipaddr}/{cidr}",
|
||||
"format-disconnected": " disconnected",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "Click to copy",
|
||||
"max-length": 50,
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
* {
|
||||
border: none;
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
font-family: "Fira Code Nerd Font";
|
||||
font-size: 15px;
|
||||
min-height: 10px;
|
||||
}
|
||||
|
|
@ -25,11 +25,11 @@
|
|||
window#waybar {
|
||||
background: linear-gradient(
|
||||
to bottom,
|
||||
rgba(30, 30, 30, 1) 0%,
|
||||
rgba(28, 28, 28, 0.95) 68%,
|
||||
rgba(25, 25, 25, 0.75) 82%,
|
||||
rgba(20, 20, 20, 0.30) 94%,
|
||||
rgba(20, 20, 20, 0.00) 100%
|
||||
rgba(30, 30, 30, 0.7) 0%,
|
||||
rgba(28, 28, 28, 0.665) 68%,
|
||||
rgba(25, 25, 25, 0.525) 82%,
|
||||
rgba(20, 20, 20, 0.21) 94%,
|
||||
rgba(20, 20, 20, 0.0) 100%
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,111 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="35"
|
||||
height="200"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="add-workspace-active.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs12">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1168"
|
||||
x="-0.102608"
|
||||
y="-0.040503159"
|
||||
width="1.205216"
|
||||
height="1.0810063">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="3.2065"
|
||||
id="feGaussianBlur1170" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1174"
|
||||
x="-0.147"
|
||||
y="-0.147"
|
||||
width="1.294"
|
||||
height="1.294">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.98"
|
||||
id="feGaussianBlur1176" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview10"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="3.337544"
|
||||
inkscape:cx="19.175777"
|
||||
inkscape:cy="88.088726"
|
||||
inkscape:window-width="1835"
|
||||
inkscape:window-height="977"
|
||||
inkscape:window-x="102"
|
||||
inkscape:window-y="102"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg8">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid340"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
id="rect612"
|
||||
width="75"
|
||||
height="190"
|
||||
x="5"
|
||||
y="6"
|
||||
rx="8"
|
||||
ry="8"
|
||||
style="fill:#000000;fill-opacity:1;filter:url(#filter1168);opacity:0.25" />
|
||||
<rect
|
||||
id="rect342"
|
||||
width="75"
|
||||
height="190"
|
||||
x="5"
|
||||
y="5"
|
||||
rx="8"
|
||||
ry="8"
|
||||
style="fill:#45707a;fill-opacity:1" />
|
||||
<path
|
||||
d="m 18,95 c -0.554,0 -1,0.446 -1,1 v 4 h -4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 h 4 v 4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -4 h 4 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 h -4 v -4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
fill="#ffffff"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
style="isolation:auto;mix-blend-mode:normal;shape-rendering:auto;fill:#000000;filter:url(#filter1174);opacity:0.15"
|
||||
id="path1172" />
|
||||
<path
|
||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 v 4 h -4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 h 4 v 4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -4 h 4 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 h -4 v -4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
fill="#ffffff"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
style="isolation:auto;mix-blend-mode:normal;shape-rendering:auto"
|
||||
id="path4" />
|
||||
<path
|
||||
id="rect607"
|
||||
style="fill:#ffffff;fill-opacity:1;opacity:0.1"
|
||||
d="M 13 5 C 8.5680044 5 5 8.5680044 5 13 L 5 14 C 5 9.5680044 8.5680044 6 13 6 L 72 6 C 76.431996 6 80 9.5680044 80 14 L 80 13 C 80 8.5680044 76.431996 5 72 5 L 13 5 z " />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
|
|
@ -0,0 +1,112 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="35"
|
||||
height="200"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="add-workspace-hover.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="-81.038405"
|
||||
inkscape:cy="108.58132"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="709"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3040"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="20,100"
|
||||
id="guide3893"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="18,190"
|
||||
id="guide3895"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
id="rect4694"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssss" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect4804"
|
||||
transform="translate(0,852.36218)"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
|
|
@ -0,0 +1,113 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="35"
|
||||
height="200"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="add-workspace.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="-28.526103"
|
||||
inkscape:cy="75.41215"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="709"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:document-rotation="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3040"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="20,100"
|
||||
id="guide3893"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="18,190"
|
||||
id="guide3895"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
id="rect4694"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.35;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssss" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect4804"
|
||||
transform="translate(0,852.36218)"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.87;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="calendar-arrow-left.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="29.5"
|
||||
inkscape:cx="13.680381"
|
||||
inkscape:cy="6.1418434"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M10 3v10L5 8z"
|
||||
fill="#000000"
|
||||
opacity="0.54"
|
||||
id="path2"
|
||||
style="fill:#e6e6e6" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="calendar-arrow-right.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="8"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M6 3v10l5-5z"
|
||||
fill="#000000"
|
||||
opacity="0.54"
|
||||
id="path2"
|
||||
style="fill:#e6e6e6" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,75 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg1516"
|
||||
sodipodi:docname="checkbox-dark.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1520">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1446"
|
||||
x="-0.05808"
|
||||
y="-0.05808"
|
||||
width="1.11616"
|
||||
height="1.11616">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.484"
|
||||
id="feGaussianBlur1448" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview1518"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="19.666667"
|
||||
inkscape:cx="15.177966"
|
||||
inkscape:cy="13.677966"
|
||||
inkscape:window-width="1835"
|
||||
inkscape:window-height="977"
|
||||
inkscape:window-x="102"
|
||||
inkscape:window-y="102"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg1516" />
|
||||
<rect
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
||||
id="rect890"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="3"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<rect
|
||||
style="fill:#7daea3;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect616"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="2"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<path
|
||||
id="rect340"
|
||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
||||
style="fill:#1d2021;fill-opacity:1" />
|
||||
<path
|
||||
id="rect885"
|
||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 6,2 C 3.7840022,2 2,3.7840022 2,6 V 7 C 2,4.7840022 3.7840022,3 6,3 h 12 c 2.215998,0 4,1.7840022 4,4 V 6 C 22,3.7840022 20.215998,2 18,2 Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 168 B |
|
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg439"
|
||||
sodipodi:docname="checkbox.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs443">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1446"
|
||||
x="-0.05808"
|
||||
y="-0.05808"
|
||||
width="1.11616"
|
||||
height="1.11616">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.484"
|
||||
id="feGaussianBlur1448" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview441"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="13.906433"
|
||||
inkscape:cx="17.509881"
|
||||
inkscape:cy="10.067283"
|
||||
inkscape:window-width="1835"
|
||||
inkscape:window-height="977"
|
||||
inkscape:window-x="102"
|
||||
inkscape:window-y="102"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg439">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid562"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
||||
id="rect890"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="3"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<rect
|
||||
style="opacity:1;fill:#45707a;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect616"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="2"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<path
|
||||
id="rect340"
|
||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
id="rect885"
|
||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 6 2 C 3.7840022 2 2 3.7840022 2 6 L 2 7 C 2 4.7840022 3.7840022 3 6 3 L 18 3 C 20.215998 3 22 4.7840022 22 7 L 22 6 C 22 3.7840022 20.215998 2 18 2 L 6 2 z " />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Foreground"
|
||||
width="26"
|
||||
height="26"
|
||||
enable-background="new 0 0 16 16"
|
||||
version="1.0"
|
||||
viewBox="0 0 18.909 18.909"
|
||||
sodipodi:docname="close-active.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="28.730769"
|
||||
inkscape:cx="13"
|
||||
inkscape:cy="12.982597"
|
||||
inkscape:window-width="1867"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Foreground" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<filter
|
||||
id="filter839"
|
||||
x="-0.047999999"
|
||||
y="-0.047999999"
|
||||
width="1.096"
|
||||
height="1.096"
|
||||
color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur
|
||||
stdDeviation="0.32"
|
||||
id="feGaussianBlur1" />
|
||||
</filter>
|
||||
</defs>
|
||||
<circle
|
||||
cx="9.4545"
|
||||
cy="10.182"
|
||||
r="8"
|
||||
fill="#000000"
|
||||
filter="url(#filter839)"
|
||||
opacity=".1"
|
||||
stroke-width="0"
|
||||
id="circle1" />
|
||||
<circle
|
||||
cx="9.4545"
|
||||
cy="9.4545"
|
||||
r="8"
|
||||
fill="#d8354a"
|
||||
stroke-width="0"
|
||||
id="circle2"
|
||||
style="fill:#ea6962;fill-opacity:1" />
|
||||
<path
|
||||
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
|
||||
fill="#ffffff"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="1.3606"
|
||||
style="paint-order:markers stroke fill"
|
||||
id="path2" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
|
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Foreground"
|
||||
width="26"
|
||||
height="26"
|
||||
enable-background="new 0 0 16 16"
|
||||
version="1.0"
|
||||
viewBox="0 0 18.909 18.909"
|
||||
sodipodi:docname="close-hover.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="28.730769"
|
||||
inkscape:cx="13"
|
||||
inkscape:cy="12.982597"
|
||||
inkscape:window-width="1867"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Foreground" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<filter
|
||||
id="filter839"
|
||||
x="-0.047999999"
|
||||
y="-0.047999999"
|
||||
width="1.096"
|
||||
height="1.096"
|
||||
color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur
|
||||
stdDeviation="0.32"
|
||||
id="feGaussianBlur1" />
|
||||
</filter>
|
||||
</defs>
|
||||
<circle
|
||||
cx="9.4545"
|
||||
cy="10.182"
|
||||
r="8"
|
||||
fill="#000000"
|
||||
filter="url(#filter839)"
|
||||
opacity=".1"
|
||||
stroke-width="0"
|
||||
id="circle1" />
|
||||
<circle
|
||||
cx="9.4545"
|
||||
cy="9.4545"
|
||||
r="8"
|
||||
fill="#ff7a80"
|
||||
stroke-width="0"
|
||||
id="circle2"
|
||||
style="fill:#c14a4a;fill-opacity:1" />
|
||||
<path
|
||||
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
|
||||
fill="#ffffff"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="1.3606"
|
||||
style="paint-order:markers stroke fill"
|
||||
id="path2" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
|
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Foreground"
|
||||
width="26"
|
||||
height="26"
|
||||
enable-background="new 0 0 16 16"
|
||||
version="1.0"
|
||||
viewBox="0 0 18.909 18.909"
|
||||
sodipodi:docname="close.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="28.730769"
|
||||
inkscape:cx="13"
|
||||
inkscape:cy="13"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Foreground" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<filter
|
||||
id="filter879"
|
||||
x="-0.047999999"
|
||||
y="-0.047999999"
|
||||
width="1.096"
|
||||
height="1.096"
|
||||
color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur
|
||||
stdDeviation="0.32"
|
||||
id="feGaussianBlur1" />
|
||||
</filter>
|
||||
</defs>
|
||||
<circle
|
||||
cx="9.4545"
|
||||
cy="10.182"
|
||||
r="8"
|
||||
fill="#000000"
|
||||
filter="url(#filter879)"
|
||||
opacity=".1"
|
||||
stroke-width="0"
|
||||
id="circle1" />
|
||||
<circle
|
||||
cx="9.4545"
|
||||
cy="9.4545"
|
||||
r="8"
|
||||
fill="#f75a61"
|
||||
stroke-width="0"
|
||||
id="circle2"
|
||||
style="fill:#ea6962;fill-opacity:1" />
|
||||
<path
|
||||
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
|
||||
fill="#ffffff"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="1.3606"
|
||||
style="paint-order:markers stroke fill"
|
||||
id="path2" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
|
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="104"
|
||||
height="104"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
sodipodi:docname="corner-ripple.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1" />
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="7.5769231"
|
||||
inkscape:cx="52.197969"
|
||||
inkscape:cy="52.13198"
|
||||
inkscape:window-width="1867"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1" />
|
||||
<g
|
||||
transform="translate(0 -948.36)"
|
||||
id="g1"
|
||||
style="fill:#45707a;fill-opacity:1">
|
||||
<circle
|
||||
id="corner-ripple"
|
||||
cx="52"
|
||||
cy="1000.4"
|
||||
r="48"
|
||||
fill="#009688"
|
||||
opacity=".25"
|
||||
style="fill:#45707a;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,71 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg1780"
|
||||
sodipodi:docname="radiobutton-dark.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1784">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1250"
|
||||
x="-0.05808"
|
||||
y="-0.05808"
|
||||
width="1.11616"
|
||||
height="1.11616">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.484"
|
||||
id="feGaussianBlur1252" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview1782"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="27.812867"
|
||||
inkscape:cx="16.197539"
|
||||
inkscape:cy="14.273969"
|
||||
inkscape:window-width="1867"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1780" />
|
||||
<circle
|
||||
id="circle694"
|
||||
cx="12"
|
||||
cy="13"
|
||||
r="10"
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;filter:url(#filter1250)" />
|
||||
<circle
|
||||
id="path291"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="10"
|
||||
style="fill:#7daea3;fill-opacity:1" />
|
||||
<circle
|
||||
id="path675"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="3"
|
||||
style="fill:#1d2021;stroke-width:1.2;fill-opacity:1" />
|
||||
<path
|
||||
id="circle689"
|
||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1"
|
||||
d="M 12,2 A 10,10 0 0 0 2,12 10,10 0 0 0 2.0351562,12.5 10,10 0 0 1 12,3 10,10 0 0 1 21.976562,12.341797 10,10 0 0 0 22,12 10,10 0 0 0 12,2 Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 168 B |
|
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg4"
|
||||
sodipodi:docname="radiobutton.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1250"
|
||||
x="-0.05808"
|
||||
y="-0.05808"
|
||||
width="1.11616"
|
||||
height="1.11616">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.484"
|
||||
id="feGaussianBlur1252" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="27.812867"
|
||||
inkscape:cx="12.062762"
|
||||
inkscape:cy="11.865012"
|
||||
inkscape:window-width="1867"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid237"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<circle
|
||||
id="circle694"
|
||||
cx="12"
|
||||
cy="13"
|
||||
r="10"
|
||||
style="fill:#000000;fill-opacity:1;filter:url(#filter1250);opacity:0.25" />
|
||||
<circle
|
||||
id="path291"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="10"
|
||||
style="fill:#45707a;fill-opacity:1" />
|
||||
<circle
|
||||
id="path675"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="3"
|
||||
style="fill:#ffffff;stroke-width:1.2" />
|
||||
<path
|
||||
id="circle689"
|
||||
style="fill:#ffffff;fill-opacity:1;opacity:0.1"
|
||||
d="M 12 2 A 10 10 0 0 0 2 12 A 10 10 0 0 0 2.0351562 12.5 A 10 10 0 0 1 12 3 A 10 10 0 0 1 21.976562 12.341797 A 10 10 0 0 0 22 12 A 10 10 0 0 0 12 2 z " />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="46"
|
||||
height="24"
|
||||
version="1.1"
|
||||
id="svg1878"
|
||||
sodipodi:docname="toggle-off.svg"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1882">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1830"
|
||||
x="-0.108"
|
||||
y="-0.108"
|
||||
width="1.216"
|
||||
height="1.216">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.81"
|
||||
id="feGaussianBlur1832" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview1880"
|
||||
pagecolor="#4d4d4d"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#6b6b6b"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.17193"
|
||||
inkscape:cx="-13.662741"
|
||||
inkscape:cy="-9.2283427"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1878" />
|
||||
<rect
|
||||
x="0"
|
||||
y="0"
|
||||
width="46"
|
||||
height="24"
|
||||
rx="12"
|
||||
ry="12"
|
||||
id="rect2"
|
||||
style="opacity:0.45;fill:#ffffff" />
|
||||
<circle
|
||||
cx="12"
|
||||
cy="13"
|
||||
r="9"
|
||||
id="circle1465"
|
||||
style="opacity:0.1;fill:#000000;filter:url(#filter1830)" />
|
||||
<circle
|
||||
cx="12"
|
||||
cy="12.089559"
|
||||
r="9"
|
||||
id="circle4"
|
||||
style="fill:#ffffff" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,94 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48"
|
||||
height="24"
|
||||
version="1.1"
|
||||
id="svg939"
|
||||
sodipodi:docname="toggle-on-dark.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs943">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter863"
|
||||
x="-0.14699999"
|
||||
y="-0.14699999"
|
||||
width="1.294"
|
||||
height="1.294">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1025"
|
||||
id="feGaussianBlur865" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview941"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="11.8"
|
||||
inkscape:cx="29.533898"
|
||||
inkscape:cy="15.762712"
|
||||
inkscape:window-width="1867"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg939">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid1663"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
transform="scale(-1,1)"
|
||||
x="-48"
|
||||
y="-0.019988"
|
||||
width="48"
|
||||
height="24"
|
||||
rx="12"
|
||||
ry="12"
|
||||
fill="#009688"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#7daea3;fill-opacity:1"
|
||||
id="rect2" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="13"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="opacity:0.35;fill:#000000;paint-order:stroke fill markers;filter:url(#filter863)"
|
||||
id="circle307" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="12"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#1d2021;fill-opacity:1"
|
||||
id="circle4" />
|
||||
<path
|
||||
id="rect876"
|
||||
style="opacity:0.1;fill:#ffffff;paint-order:stroke fill markers"
|
||||
d="m 12,-0.01953125 c -6.6479934,0 -12,5.35200665 -12,12.00000025 0,0.171056 0.00665429,0.340494 0.01367188,0.509765 C 0.27938822,6.080891 5.523063,1 12,1 H 36 C 42.476937,1 47.720612,6.080891 47.986328,12.490234 47.993346,12.320963 48,12.151525 48,11.980469 48,5.3324754 42.647993,-0.01953125 36,-0.01953125 Z" />
|
||||
<path
|
||||
id="circle1665"
|
||||
style="paint-order:stroke fill markers;fill:#ffffff;fill-opacity:1;opacity:0.1"
|
||||
d="M 36 3 A 9 9 0 0 0 27 12 A 9 9 0 0 0 27.035156 12.5 A 9 9 0 0 1 36 4 A 9 9 0 0 1 44.974609 12.359375 A 9 9 0 0 0 45 12 A 9 9 0 0 0 36 3 z " />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48"
|
||||
height="24"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="toggle-on.svg"
|
||||
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs10">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter863"
|
||||
x="-0.14699999"
|
||||
y="-0.14699999"
|
||||
width="1.294"
|
||||
height="1.294">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1025"
|
||||
id="feGaussianBlur865" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview8"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="16.68772"
|
||||
inkscape:cx="22.921046"
|
||||
inkscape:cy="13.183347"
|
||||
inkscape:window-width="1835"
|
||||
inkscape:window-height="977"
|
||||
inkscape:window-x="102"
|
||||
inkscape:window-y="102"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid293"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
transform="scale(-1,1)"
|
||||
x="-48"
|
||||
y="-0.019988"
|
||||
width="48"
|
||||
height="24"
|
||||
rx="12"
|
||||
ry="12"
|
||||
fill="#009688"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#45707a;fill-opacity:1"
|
||||
id="rect2" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="13"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter863);opacity:0.35"
|
||||
id="circle307" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="12"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="circle4" />
|
||||
<path
|
||||
id="rect876"
|
||||
style="paint-order:stroke fill markers;fill:#ffffff;opacity:0.1"
|
||||
d="M -12 -0.01953125 C -5.3520066 -0.01953125 0 5.3324754 0 11.980469 C 0 12.151525 -0.0066542885 12.320963 -0.013671875 12.490234 C -0.27938822 6.080891 -5.523063 1 -12 1 L -36 1 C -42.476937 1 -47.720612 6.080891 -47.986328 12.490234 C -47.993346 12.320963 -48 12.151525 -48 11.980469 C -48 5.3324754 -42.647993 -0.01953125 -36 -0.01953125 L -12 -0.01953125 z "
|
||||
transform="scale(-1,1)" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
|
|
@ -0,0 +1,6 @@
|
|||
<svg width="400" height="120" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -932.36)">
|
||||
<rect x="10" y="942.36" width="380" height="160" rx="18" ry="18" fill="#4d4d4d" stroke-width="0"/>
|
||||
<path class="ColorScheme-Text" d="m200 964.36c-4.4183 0-8 3.5817-8 8h-16v4h48v-4h-16c0-4.4183-3.5817-8-8-8zm0 4c2.2091 1e-5 4 1.7909 4 4h-8c1e-5 -2.2091 1.7909-4 4-4zm-20 12v32c0 4.4321 3.5679 8.0001 8 8.0001h24c4.4321 0 8-3.568 8-8.0001v-32h-38zm4 4h32v28c0 2.2161-1.7839 4.0001-4 4.0001h-24c-2.2161 0-4-1.784-4-4.0001z" fill="#ececec"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 573 B |
2594
local/share/themes/Gruvbox-B-LB-Dark-Medium/cinnamon/cinnamon.css
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
|
||||
<path d="m10 3v10l-5-5z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 149 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
|
||||
<path d="m6 3v10l5-5z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 147 B |
|
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48"
|
||||
height="48"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="calendar-today.svg"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
id="namedview8"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="6.9532167"
|
||||
inkscape:cx="-13.087468"
|
||||
inkscape:cy="15.676198"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid293" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
transform="matrix(2,0,0,2,-939.14001,-1079.92)"
|
||||
id="g4"
|
||||
style="fill:#ffffff">
|
||||
<circle
|
||||
cx="481.57001"
|
||||
cy="559.46002"
|
||||
r="1.5"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
fill-opacity="0.2"
|
||||
image-rendering="auto"
|
||||
shape-rendering="auto"
|
||||
solid-color="#000000"
|
||||
style="isolation:auto;mix-blend-mode:normal;paint-order:normal;fill:#ffffff"
|
||||
id="circle2" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,75 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg1516"
|
||||
sodipodi:docname="checkbox-dark.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1520">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1446"
|
||||
x="-0.05808"
|
||||
y="-0.05808"
|
||||
width="1.11616"
|
||||
height="1.11616">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.484"
|
||||
id="feGaussianBlur1448" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview1518"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.9166667"
|
||||
inkscape:cx="2.338983"
|
||||
inkscape:cy="9.2542372"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1516" />
|
||||
<rect
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
||||
id="rect890"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="3"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<rect
|
||||
style="fill:#80aa9e;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect616"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="2"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<path
|
||||
id="rect340"
|
||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
||||
style="fill:#1a1b26;fill-opacity:1" />
|
||||
<path
|
||||
id="rect885"
|
||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 6,2 C 3.7840022,2 2,3.7840022 2,6 V 7 C 2,4.7840022 3.7840022,3 6,3 h 12 c 2.215998,0 4,1.7840022 4,4 V 6 C 22,3.7840022 20.215998,2 18,2 Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".25"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 168 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 167 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 168 B |
|
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
version="1.1"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg439"
|
||||
sodipodi:docname="checkbox.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs443">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter1446"
|
||||
x="-0.05808"
|
||||
y="-0.05808"
|
||||
width="1.11616"
|
||||
height="1.11616">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.484"
|
||||
id="feGaussianBlur1448" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview441"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="6.9532167"
|
||||
inkscape:cx="-3.955004"
|
||||
inkscape:cy="14.309924"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg439">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid562"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
||||
id="rect890"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="3"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<rect
|
||||
style="opacity:1;fill:#266b79;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect616"
|
||||
width="20"
|
||||
height="20"
|
||||
x="2"
|
||||
y="2"
|
||||
rx="4"
|
||||
ry="4" />
|
||||
<path
|
||||
id="rect340"
|
||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
||||
style="fill:#e9e9ed;fill-opacity:1" />
|
||||
<path
|
||||
id="rect885"
|
||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 6 2 C 3.7840022 2 2 3.7840022 2 6 L 2 7 C 2 4.7840022 3.7840022 3 6 3 L 18 3 C 20.215998 3 22 4.7840022 22 7 L 22 6 C 22 3.7840022 20.215998 2 18 2 L 6 2 z " />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF">
|
||||
<circle cx="12" cy="12" r="12" opacity="0.3"/>
|
||||
<circle cx="12" cy="12" r="4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 189 B |
|
|
@ -0,0 +1,82 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 48 48"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="no-events.svg">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1413"
|
||||
inkscape:window-height="955"
|
||||
id="namedview8"
|
||||
showgrid="true"
|
||||
inkscape:zoom="4.9166667"
|
||||
inkscape:cx="-16.677966"
|
||||
inkscape:cy="15.864407"
|
||||
inkscape:window-x="46"
|
||||
inkscape:window-y="71"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4134" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
d="M0 0h48v48H0z"
|
||||
fill="none"
|
||||
id="path4" />
|
||||
<path
|
||||
d="m 38,6 -2,0 0,-4 -4,0 0,4 -16,0 0,-4 -4,0 0,4 -2,0 C 7.79,6 6.02,7.79 6.02,10 L 6,38 c 0,2.21 1.79,4 4,4 l 28,0 c 2.21,0 4,-1.79 4,-4 L 42,10 C 42,7.79 40.21,6 38,6 Z m 0,32 -28,0 0,-22 28,0 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccccccccsccsssssccccc"
|
||||
style="fill:#f5f5f5;fill-opacity:1;opacity:0.54" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="#FFFFFF" opacity="0.5">
|
||||
<path d="M24 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm12-12V22c0-6.15-3.27-11.28-9-12.64V8c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36c-5.73 1.36-9 6.49-9 12.64v10l-4 4v2h32v-2l-4-4zm-4 2H16V22c0-4.97 3.03-9 8-9s8 4.03 8 9v12z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 345 B |
|
|
@ -0,0 +1,78 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1600"
|
||||
height="900"
|
||||
viewBox="0 0 1600 900"
|
||||
version="1.1"
|
||||
id="svg13"
|
||||
sodipodi:docname="noise-texture.svg"
|
||||
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
|
||||
<metadata
|
||||
id="metadata17">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="698"
|
||||
id="namedview15"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.26222222"
|
||||
inkscape:cx="647.80786"
|
||||
inkscape:cy="422.79535"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg13" />
|
||||
<defs
|
||||
id="defs9">
|
||||
<radialGradient
|
||||
id="a"
|
||||
gradientTransform="matrix(1 1 -1 1 0.5 -0.5)">
|
||||
<stop
|
||||
stop-color="#455A64"
|
||||
stop-opacity="0"
|
||||
offset="0.25"
|
||||
id="stop2"
|
||||
style="stop-color:#444444;stop-opacity:0" />
|
||||
<stop
|
||||
stop-color="#455A64"
|
||||
stop-opacity="0.5"
|
||||
offset="0.75"
|
||||
id="stop4"
|
||||
style="stop-color:#444444;stop-opacity:0.50196081" />
|
||||
<stop
|
||||
stop-color="#455A64"
|
||||
stop-opacity="1"
|
||||
offset="1"
|
||||
id="stop6"
|
||||
style="stop-color:#444444;stop-opacity:1" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<rect
|
||||
width="1600"
|
||||
height="900"
|
||||
fill="url(#a)"
|
||||
id="rect11" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,72 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="32" viewBox="0 0 512 32">
|
||||
<defs>
|
||||
<g id="g" fill="#FFFFFF" opacity="0.7">
|
||||
<circle cx="8" cy="8" r="8" fill="none"/>
|
||||
<path d="m8 1a7 7 0 0 0 -7 7 7 7 0 0 0 7 7 7 7 0 0 0 7 -7h-3a4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4v-3z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<use xlink:href="#g" transform="translate(0) rotate(0 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(16) rotate(5.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(32) rotate(11.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(48) rotate(16.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(64) rotate(22.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(80) rotate(28.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(96) rotate(33.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(112) rotate(39.375 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(128) rotate(45 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(144) rotate(50.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(160) rotate(56.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(176) rotate(61.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(192) rotate(67.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(208) rotate(73.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(224) rotate(78.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(240) rotate(84.375 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(256) rotate(90 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(272) rotate(95.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(288) rotate(101.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(304) rotate(106.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(320) rotate(112.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(336) rotate(118.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(352) rotate(123.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(368) rotate(129.375 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(384) rotate(135 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(400) rotate(140.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(416) rotate(146.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(432) rotate(151.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(448) rotate(157.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(464) rotate(163.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(480) rotate(168.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(496) rotate(174.375 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(0 16) rotate(180 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(16 16) rotate(185.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(32 16) rotate(191.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(48 16) rotate(196.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(64 16) rotate(202.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(80 16) rotate(208.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(96 16) rotate(213.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(112 16) rotate(219.375 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(128 16) rotate(225 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(144 16) rotate(230.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(160 16) rotate(236.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(176 16) rotate(241.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(192 16) rotate(247.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(208 16) rotate(253.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(224 16) rotate(258.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(240 16) rotate(264.375 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(256 16) rotate(270 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(272 16) rotate(275.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(288 16) rotate(281.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(304 16) rotate(286.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(320 16) rotate(292.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(336 16) rotate(298.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(352 16) rotate(303.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(368 16) rotate(309.375 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(384 16) rotate(315 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(400 16) rotate(320.625 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(416 16) rotate(326.25 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(432 16) rotate(331.875 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(448 16) rotate(337.5 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(464 16) rotate(343.125 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(480 16) rotate(348.75 8 8)"/>
|
||||
<use xlink:href="#g" transform="translate(496 16) rotate(354.375 8 8)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
|
|
@ -0,0 +1,59 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48"
|
||||
height="24"
|
||||
version="1.1"
|
||||
id="svg3299"
|
||||
sodipodi:docname="toggle-off.svg"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs3303" />
|
||||
<sodipodi:namedview
|
||||
id="namedview3301"
|
||||
pagecolor="#474747"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.9"
|
||||
inkscape:cx="5.4237288"
|
||||
inkscape:cy="12.542373"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="700"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3299">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3422" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
transform="scale(-1,1)"
|
||||
x="-48"
|
||||
y="-0.019988"
|
||||
width="48"
|
||||
height="24"
|
||||
rx="12"
|
||||
ry="12"
|
||||
fill="#ffffff"
|
||||
opacity="0.45"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="rect3295" />
|
||||
<circle
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#242424;fill-opacity:1"
|
||||
id="circle3297" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,94 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48"
|
||||
height="24"
|
||||
version="1.1"
|
||||
id="svg939"
|
||||
sodipodi:docname="toggle-on-dark.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs943">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter863"
|
||||
x="-0.14699999"
|
||||
y="-0.14699999"
|
||||
width="1.294"
|
||||
height="1.294">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1025"
|
||||
id="feGaussianBlur865" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview941"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="2.95"
|
||||
inkscape:cx="74.067797"
|
||||
inkscape:cy="14.40678"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg939">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid1663"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
transform="scale(-1,1)"
|
||||
x="-48"
|
||||
y="-0.019988"
|
||||
width="48"
|
||||
height="24"
|
||||
rx="12"
|
||||
ry="12"
|
||||
fill="#009688"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#80aa9e;fill-opacity:1"
|
||||
id="rect2" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="13"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="opacity:0.35;fill:#000000;paint-order:stroke fill markers;filter:url(#filter863)"
|
||||
id="circle307" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="12"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#1a1b26;fill-opacity:1"
|
||||
id="circle4" />
|
||||
<path
|
||||
id="rect876"
|
||||
style="opacity:0.1;fill:#ffffff;paint-order:stroke fill markers"
|
||||
d="m 12,-0.01953125 c -6.6479934,0 -12,5.35200665 -12,12.00000025 0,0.171056 0.00665429,0.340494 0.01367188,0.509765 C 0.27938822,6.080891 5.523063,1 12,1 H 36 C 42.476937,1 47.720612,6.080891 47.986328,12.490234 47.993346,12.320963 48,12.151525 48,11.980469 48,5.3324754 42.647993,-0.01953125 36,-0.01953125 Z" />
|
||||
<path
|
||||
id="circle1665"
|
||||
style="paint-order:stroke fill markers;fill:#ffffff;fill-opacity:1;opacity:0.1"
|
||||
d="M 36 3 A 9 9 0 0 0 27 12 A 9 9 0 0 0 27.035156 12.5 A 9 9 0 0 1 36 4 A 9 9 0 0 1 44.974609 12.359375 A 9 9 0 0 0 45 12 A 9 9 0 0 0 36 3 z " />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48"
|
||||
height="24"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="toggle-on.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs10">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter863"
|
||||
x="-0.14699999"
|
||||
y="-0.14699999"
|
||||
width="1.294"
|
||||
height="1.294">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.1025"
|
||||
id="feGaussianBlur865" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview8"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="4.17193"
|
||||
inkscape:cx="17.138351"
|
||||
inkscape:cy="19.295626"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid293"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
units="px"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
transform="scale(-1,1)"
|
||||
x="-48"
|
||||
y="-0.019988"
|
||||
width="48"
|
||||
height="24"
|
||||
rx="12"
|
||||
ry="12"
|
||||
fill="#009688"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#266b79;fill-opacity:1"
|
||||
id="rect2" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="13"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter863);opacity:0.35"
|
||||
id="circle307" />
|
||||
<circle
|
||||
cx="36"
|
||||
cy="12"
|
||||
r="9"
|
||||
fill="#ffffff"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#e9e9ed;fill-opacity:1"
|
||||
id="circle4" />
|
||||
<path
|
||||
id="rect876"
|
||||
style="paint-order:stroke fill markers;fill:#ffffff;opacity:0.1"
|
||||
d="M -12 -0.01953125 C -5.3520066 -0.01953125 0 5.3324754 0 11.980469 C 0 12.151525 -0.0066542885 12.320963 -0.013671875 12.490234 C -0.27938822 6.080891 -5.523063 1 -12 1 L -36 1 C -42.476937 1 -47.720612 6.080891 -47.986328 12.490234 C -47.993346 12.320963 -48 12.151525 -48 11.980469 C -48 5.3324754 -42.647993 -0.01953125 -36 -0.01953125 L -12 -0.01953125 z "
|
||||
transform="scale(-1,1)" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
|
|
@ -0,0 +1 @@
|
|||
assets/no-events.svg
|
||||
|
|
@ -0,0 +1 @@
|
|||
assets/no-notifications.svg
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
.Leader {
|
||||
stroke-width: 0.5 !important;
|
||||
stroke: #535353;
|
||||
fill: none !important;
|
||||
}
|
||||
|
||||
.Button {
|
||||
stroke-width: 0.25;
|
||||
stroke: #ededed;
|
||||
fill: #ededed;
|
||||
}
|
||||
|
||||
.Ring {
|
||||
stroke-width: 0.5 !important;
|
||||
stroke: #535353 !important;
|
||||
fill: none !important;
|
||||
}
|
||||
|
||||
.Label {
|
||||
stroke: none !important;
|
||||
stroke-width: 0.1 !important;
|
||||
font-size: 0.1 !important;
|
||||
fill: transparent !important;
|
||||
}
|
||||
|
||||
.TouchStrip,
|
||||
.TouchRing {
|
||||
stroke-width: 0.1 !important;
|
||||
stroke: #ededed !important;
|
||||
fill: #535353 !important;
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
assets/process-working.svg
|
||||
92
local/share/themes/Gruvbox-B-LB-Dark-Medium/gtk-2.0/apps.rc
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et:
|
||||
#
|
||||
# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g.
|
||||
# custom widgets, programs giving us a chance to alter their UI to fit more with
|
||||
# the theme or stuff that is supposed to look different, like panels.
|
||||
|
||||
# TODO: This could really look nicer
|
||||
style "gimp_spin_scale" {
|
||||
# Spin background
|
||||
bg[NORMAL] = @base_color
|
||||
|
||||
engine "pixmap" {
|
||||
image {
|
||||
function = BOX
|
||||
state = NORMAL
|
||||
detail = "spinbutton_up"
|
||||
overlay_file = "assets/pan-up-alt.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
|
||||
image {
|
||||
function = BOX
|
||||
state = PRELIGHT
|
||||
detail = "spinbutton_up"
|
||||
overlay_file = "assets/pan-up.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
|
||||
image {
|
||||
function = BOX
|
||||
state = ACTIVE
|
||||
detail = "spinbutton_up"
|
||||
overlay_file = "assets/pan-up.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
|
||||
image {
|
||||
function = BOX
|
||||
state = INSENSITIVE
|
||||
detail = "spinbutton_up"
|
||||
overlay_file = "assets/pan-up-alt-disabled.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
|
||||
image {
|
||||
function = BOX
|
||||
state = NORMAL
|
||||
detail = "spinbutton_down"
|
||||
overlay_file = "assets/pan-down-alt.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
|
||||
image {
|
||||
function = BOX
|
||||
state = PRELIGHT
|
||||
detail = "spinbutton_down"
|
||||
overlay_file = "assets/pan-down.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
|
||||
image {
|
||||
function = BOX
|
||||
state = ACTIVE
|
||||
detail = "spinbutton_down"
|
||||
overlay_file = "assets/pan-down.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
|
||||
image {
|
||||
function = BOX
|
||||
state = INSENSITIVE
|
||||
detail = "spinbutton_down"
|
||||
overlay_file = "assets/pan-down-alt-disabled.png"
|
||||
overlay_stretch = FALSE
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
style "chrome_gtk_frame" {
|
||||
ChromeGtkFrame::frame-color = @titlebar_bg_color
|
||||
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
|
||||
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
|
||||
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
|
||||
|
||||
ChromeGtkFrame::frame-gradient-size = 0
|
||||
}
|
||||
|
||||
# Disable spin button assets for GimpSpinScale
|
||||
class "GimpSpinScale" style "gimp_spin_scale"
|
||||
|
||||
# Chromium lets us define some colours and settings for better integration
|
||||
class "ChromeGtkFrame" style "chrome_gtk_frame"
|
||||
|
After Width: | Height: | Size: 123 B |
|
After Width: | Height: | Size: 320 B |
|
After Width: | Height: | Size: 323 B |
|
After Width: | Height: | Size: 331 B |
|
After Width: | Height: | Size: 342 B |
|
After Width: | Height: | Size: 619 B |
|
After Width: | Height: | Size: 595 B |
|
After Width: | Height: | Size: 580 B |
|
After Width: | Height: | Size: 497 B |
|
After Width: | Height: | Size: 527 B |
|
After Width: | Height: | Size: 545 B |
|
After Width: | Height: | Size: 510 B |
|
After Width: | Height: | Size: 472 B |
|
After Width: | Height: | Size: 442 B |
|
After Width: | Height: | Size: 448 B |
|
After Width: | Height: | Size: 440 B |
|
After Width: | Height: | Size: 484 B |
|
After Width: | Height: | Size: 325 B |
|
After Width: | Height: | Size: 241 B |
|
After Width: | Height: | Size: 314 B |
|
After Width: | Height: | Size: 258 B |
|
After Width: | Height: | Size: 343 B |
|
After Width: | Height: | Size: 242 B |
|
After Width: | Height: | Size: 349 B |
|
After Width: | Height: | Size: 246 B |
|
After Width: | Height: | Size: 470 B |
|
After Width: | Height: | Size: 126 B |
|
After Width: | Height: | Size: 126 B |
|
After Width: | Height: | Size: 323 B |
|
After Width: | Height: | Size: 478 B |
|
After Width: | Height: | Size: 342 B |
|
After Width: | Height: | Size: 320 B |
|
After Width: | Height: | Size: 290 B |
|
After Width: | Height: | Size: 331 B |
|
After Width: | Height: | Size: 290 B |
|
After Width: | Height: | Size: 288 B |
|
After Width: | Height: | Size: 128 B |
|
After Width: | Height: | Size: 134 B |