Add new theme "Amarena"
43
config/awesome/decorations/themes/amarena.lua
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
local gears = require("gears")
|
||||
local awful = require("awful")
|
||||
local wibox = require("wibox")
|
||||
local beautiful = require("beautiful")
|
||||
local helpers = require("helpers")
|
||||
local keys = require("keys")
|
||||
|
||||
-- This decoration theme will round clients according to your theme's
|
||||
-- border_radius value
|
||||
-- Disable this if using `picom` to round your corners
|
||||
decorations.enable_rounding()
|
||||
|
||||
-- Button configuration
|
||||
local gen_button_size = dpi(10)
|
||||
local gen_button_shape = gears.shape.circle
|
||||
-- local gen_button_shape = helpers.rrect(dpi(4))
|
||||
local gen_button_margin = dpi(4)
|
||||
|
||||
-- Add a titlebar
|
||||
client.connect_signal("request::titlebars", function(c)
|
||||
awful.titlebar(c, {font = beautiful.titlebar_font, position = beautiful.titlebar_position, size = beautiful.titlebar_size}) : setup {
|
||||
nil,
|
||||
{
|
||||
buttons = keys.titlebar_buttons,
|
||||
font = beautiful.titlebar_font,
|
||||
align = beautiful.titlebar_title_align or "center",
|
||||
widget = beautiful.titlebar_title_enabled and awful.titlebar.widget.titlewidget(c) or wibox.widget.textbox("")
|
||||
},
|
||||
{
|
||||
-- Generated buttons
|
||||
decorations.button(c, gen_button_shape, x.color3, x.color3.."55", x.color11, gen_button_size, gen_button_margin, "minimize"),
|
||||
decorations.button(c, gen_button_shape, x.color4, x.color4.."55", x.color12, gen_button_size, gen_button_margin, "maximize"),
|
||||
decorations.button(c, gen_button_shape, x.color1, x.color1.."55", x.color9, gen_button_size, gen_button_margin, "close"),
|
||||
-- decorations.text_button(c, "", "Material Icons 9", x.color1, gen_button_color_unfocused, x.color9, gen_button_size, gen_button_margin, "close"),
|
||||
|
||||
-- Create some extra padding at the edge
|
||||
helpers.horizontal_pad(dpi(6)),
|
||||
|
||||
layout = wibox.layout.fixed.horizontal
|
||||
},
|
||||
layout = wibox.layout.align.horizontal
|
||||
}
|
||||
end)
|
||||
133
config/awesome/elemental/bar/amarena.lua
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
local awful = require("awful")
|
||||
local gears = require("gears")
|
||||
local wibox = require("wibox")
|
||||
local beautiful = require("beautiful")
|
||||
|
||||
local helpers = require("helpers")
|
||||
local keys = require("keys")
|
||||
|
||||
local taglist_autohide_delay = 1.25 -- seconds
|
||||
|
||||
-- {{{ Widgets
|
||||
local update_taglist = function (item, tag, index)
|
||||
if tag.selected then
|
||||
item.bg = beautiful.taglist_text_color_focused[index]
|
||||
elseif tag.urgent then
|
||||
item.bg = beautiful.taglist_text_color_urgent[index]
|
||||
elseif #tag:clients() > 0 then
|
||||
item.bg = beautiful.taglist_text_color_occupied[index]
|
||||
else
|
||||
item.bg = beautiful.taglist_text_color_empty[index]
|
||||
end
|
||||
end
|
||||
|
||||
-- Create a wibox for each screen and add it
|
||||
awful.screen.connect_for_each_screen(function(s)
|
||||
-- Create a system tray widget
|
||||
s.systray = wibox.widget.systray()
|
||||
s.systray.visible = false
|
||||
|
||||
s.mytaglist = awful.widget.taglist {
|
||||
screen = s,
|
||||
filter = awful.widget.taglist.filter.all,
|
||||
buttons = keys.taglist_buttons,
|
||||
widget_template = {
|
||||
{
|
||||
forced_width = dpi(12),
|
||||
forced_height = dpi(12),
|
||||
shape = gears.shape.circle,
|
||||
widget = wibox.container.background,
|
||||
},
|
||||
left = dpi(12),
|
||||
right = dpi(12),
|
||||
widget = wibox.container.margin,
|
||||
create_callback = function(self, tag, index, _)
|
||||
update_taglist(self:get_all_children()[1], tag, index)
|
||||
end,
|
||||
update_callback = function(self, tag, index, _)
|
||||
update_taglist(self:get_all_children()[1], tag, index)
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
||||
-- Create the wibox
|
||||
s.mywibox = wibox({ screen = s, width = beautiful.wibar_width, height = beautiful.wibar_height, shape = helpers.rrect(beautiful.wibar_border_radius), bg = "#00000000", visible = false, ontop = true})
|
||||
-- Wibar items
|
||||
-- Add or remove widgets here
|
||||
s.mywibox:setup {
|
||||
{
|
||||
nil,
|
||||
s.mytaglist,
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal,
|
||||
},
|
||||
bg = beautiful.wibar_bg,
|
||||
shape = helpers.rrect(beautiful.border_radius),
|
||||
widget = wibox.container.background
|
||||
}
|
||||
|
||||
-- Place bar at the bottom and add margins
|
||||
-- awful.placement.bottom(s.mywibox, {margins = beautiful.useless_gap * 2})
|
||||
awful.placement.bottom(s.mywibox, {margins = { bottom = beautiful.useless_gap * 4 }})
|
||||
|
||||
local popup_timer
|
||||
local autohide = function ()
|
||||
if popup_timer then
|
||||
popup_timer:stop()
|
||||
popup_timer = nil
|
||||
end
|
||||
popup_timer = gears.timer.start_new(taglist_autohide_delay, function()
|
||||
popup_timer = nil
|
||||
s.mywibox.visible = false
|
||||
end)
|
||||
end
|
||||
|
||||
-- Initialize wibox activator
|
||||
s.mywibox_activator = wibox({ screen = s, width = beautiful.wibar_width, height = 1, bg = "#00000000", visible = true, ontop = false})
|
||||
awful.placement.bottom(s.mywibox_activator)
|
||||
s.mywibox_activator:connect_signal("mouse::enter", function()
|
||||
s.mywibox.visible = true
|
||||
autohide()
|
||||
end)
|
||||
|
||||
s.mywibox:connect_signal("mouse::enter", function ()
|
||||
if popup_timer then
|
||||
popup_timer:stop()
|
||||
popup_timer = nil
|
||||
end
|
||||
end)
|
||||
|
||||
s.mywibox:connect_signal("mouse::leave", function ()
|
||||
autohide()
|
||||
end)
|
||||
|
||||
-- Show taglist on tag change
|
||||
awful.tag.attached_connect_signal(s, "property::selected", function (t)
|
||||
if t.selected and not awesome.startup then
|
||||
s.mywibox.visible = true
|
||||
if mouse.current_wibox == s.mywibox then
|
||||
return
|
||||
end
|
||||
autohide()
|
||||
end
|
||||
end)
|
||||
|
||||
-- Show taglist when a tag becomes urgent
|
||||
awful.tag.attached_connect_signal(s, "property::urgent", function (t)
|
||||
if t.urgent then
|
||||
s.mywibox.visible = true
|
||||
autohide()
|
||||
end
|
||||
end)
|
||||
|
||||
end)
|
||||
|
||||
-- Every bar theme should provide these fuctions
|
||||
function wibars_toggle()
|
||||
local s = awful.screen.focused()
|
||||
s.mywibox.visible = not s.mywibox.visible
|
||||
end
|
||||
function tray_toggle()
|
||||
local s = awful.screen.focused()
|
||||
s.systray.visible = not s.systray.visible
|
||||
end
|
||||
533
config/awesome/elemental/sidebar/amarena.lua
Normal file
|
|
@ -0,0 +1,533 @@
|
|||
local awful = require("awful")
|
||||
local gears = require("gears")
|
||||
local wibox = require("wibox")
|
||||
local beautiful = require("beautiful")
|
||||
|
||||
local helpers = require("helpers")
|
||||
|
||||
-- Helper function that changes the appearance of progress bars and their icons
|
||||
local function format_progress_bar(bar)
|
||||
-- Since we will rotate the bars 90 degrees, width and height are reversed
|
||||
bar.forced_width = dpi(70)
|
||||
bar.forced_height = dpi(30)
|
||||
bar.shape = gears.shape.rounded_bar
|
||||
bar.bar_shape = gears.shape.rectangle
|
||||
local w = wibox.widget{
|
||||
bar,
|
||||
direction = 'east',
|
||||
layout = wibox.container.rotate,
|
||||
}
|
||||
return w
|
||||
end
|
||||
|
||||
-- Item configuration
|
||||
-- ==================
|
||||
-- Weather widget with text icons
|
||||
local weather_widget = require("noodle.text_weather")
|
||||
local weather_widget_icon = weather_widget:get_all_children()[1]
|
||||
-- weather_widget_icon.font = "Typicons 18"
|
||||
weather_widget_icon.font = "icomoon 16"
|
||||
weather_widget_icon.align = "center"
|
||||
weather_widget_icon.valign = "center"
|
||||
-- So that content does not get cropped
|
||||
-- weather_widget_icon.forced_width = dpi(50)
|
||||
local weather_widget_description = weather_widget:get_all_children()[2]
|
||||
weather_widget_description.font = "sans medium 14"
|
||||
local weather_widget_temperature = weather_widget:get_all_children()[3]
|
||||
weather_widget_temperature.font = "sans medium 14"
|
||||
|
||||
local weather = wibox.widget{
|
||||
{
|
||||
nil,
|
||||
weather_widget_description,
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal
|
||||
},
|
||||
{
|
||||
nil,
|
||||
{
|
||||
weather_widget_icon,
|
||||
weather_widget_temperature,
|
||||
spacing = dpi(5),
|
||||
layout = wibox.layout.fixed.horizontal
|
||||
},
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal
|
||||
},
|
||||
spacing = dpi(5),
|
||||
layout = wibox.layout.fixed.vertical
|
||||
-- nil,
|
||||
-- weather_widget,
|
||||
-- layout = wibox.layout.align.horizontal,
|
||||
-- expand = "none"
|
||||
}
|
||||
|
||||
local temperature_bar = require("noodle.temperature_bar")
|
||||
local temperature = format_progress_bar(temperature_bar)
|
||||
temperature:buttons(
|
||||
gears.table.join(
|
||||
awful.button({ }, 1, apps.temperature_monitor)
|
||||
))
|
||||
|
||||
local cpu_bar = require("noodle.cpu_bar")
|
||||
local cpu = format_progress_bar(cpu_bar)
|
||||
|
||||
cpu:buttons(
|
||||
gears.table.join(
|
||||
awful.button({ }, 1, apps.process_monitor),
|
||||
awful.button({ }, 3, apps.process_monitor_gui)
|
||||
))
|
||||
|
||||
local ram_bar = require("noodle.ram_bar")
|
||||
local ram = format_progress_bar(ram_bar)
|
||||
|
||||
ram:buttons(
|
||||
gears.table.join(
|
||||
awful.button({ }, 1, apps.process_monitor),
|
||||
awful.button({ }, 3, apps.process_monitor_gui)
|
||||
))
|
||||
|
||||
|
||||
local brightness_bar = require("noodle.brightness_bar")
|
||||
local brightness = format_progress_bar(brightness_bar)
|
||||
|
||||
brightness:buttons(
|
||||
gears.table.join(
|
||||
-- Left click - Toggle redshift
|
||||
awful.button({ }, 1, apps.night_mode),
|
||||
-- Right click - Reset brightness (Set to max)
|
||||
awful.button({ }, 3, function ()
|
||||
awful.spawn.with_shell("light -S 100")
|
||||
end),
|
||||
-- Scroll up - Increase brightness
|
||||
awful.button({ }, 4, function ()
|
||||
awful.spawn.with_shell("light -A 10")
|
||||
end),
|
||||
-- Scroll down - Decrease brightness
|
||||
awful.button({ }, 5, function ()
|
||||
awful.spawn.with_shell("light -U 10")
|
||||
end)
|
||||
))
|
||||
|
||||
local hours = wibox.widget.textclock("%H")
|
||||
local minutes = wibox.widget.textclock("%M")
|
||||
local time = {
|
||||
{
|
||||
font = "sans bold 50",
|
||||
align = "center",
|
||||
valign = "center",
|
||||
widget = hours
|
||||
},
|
||||
{
|
||||
font = "San Francisco Display Heavy 24",
|
||||
align = "center",
|
||||
valign = "center",
|
||||
markup = helpers.colorize_text("✖", x.color9),
|
||||
widget = wibox.widget.textbox
|
||||
},
|
||||
{
|
||||
font = "sans 50",
|
||||
align = "center",
|
||||
valign = "center",
|
||||
widget = minutes
|
||||
},
|
||||
spacing = dpi(2),
|
||||
layout = wibox.layout.fixed.horizontal
|
||||
}
|
||||
|
||||
-- Update text color for clocks
|
||||
local function update_minutes()
|
||||
minutes.markup = helpers.colorize_text(minutes.text, x.background)
|
||||
end
|
||||
local function update_hours()
|
||||
hours.markup = helpers.colorize_text(hours.text, x.background)
|
||||
end
|
||||
update_minutes()
|
||||
update_hours()
|
||||
minutes:connect_signal("widget::redraw_needed", function ()
|
||||
update_minutes()
|
||||
end)
|
||||
hours:connect_signal("widget::redraw_needed", function ()
|
||||
update_hours()
|
||||
end)
|
||||
|
||||
-- Day of the week (dotw)
|
||||
-- local day_of_the_week = require("noodle.day_of_the_week")
|
||||
local dotw = require("noodle.day_of_the_week")
|
||||
local day_of_the_week = wibox.widget {
|
||||
nil,
|
||||
dotw,
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal
|
||||
}
|
||||
|
||||
-- Mpd
|
||||
local mpd_buttons = require("noodle.mpd_buttons")
|
||||
local mpd_song = require("noodle.mpd_song")
|
||||
local mpd_widget_children = mpd_song:get_all_children()
|
||||
local mpd_title = mpd_widget_children[1]
|
||||
local mpd_artist = mpd_widget_children[2]
|
||||
mpd_title.font = "sans medium 14"
|
||||
mpd_artist.font = "sans medium 10"
|
||||
|
||||
-- Set forced height in order to limit the widgets to one line.
|
||||
-- Might need to be adjusted depending on the font.
|
||||
mpd_title.forced_height = dpi(22)
|
||||
mpd_artist.forced_height = dpi(16)
|
||||
|
||||
mpd_song:buttons(gears.table.join(
|
||||
awful.button({ }, 1, function ()
|
||||
awful.spawn.with_shell("mpc -q toggle")
|
||||
end),
|
||||
awful.button({ }, 3, apps.music),
|
||||
awful.button({ }, 4, function ()
|
||||
awful.spawn.with_shell("mpc -q prev")
|
||||
end),
|
||||
awful.button({ }, 5, function ()
|
||||
awful.spawn.with_shell("mpc -q next")
|
||||
end)
|
||||
))
|
||||
|
||||
local search_icon = wibox.widget {
|
||||
font = "icomoon bold 10",
|
||||
align = "center",
|
||||
valign = "center",
|
||||
widget = wibox.widget.textbox()
|
||||
}
|
||||
|
||||
local reset_search_icon = function ()
|
||||
search_icon.markup = helpers.colorize_text("", x.color3)
|
||||
end
|
||||
reset_search_icon()
|
||||
|
||||
local search_text = wibox.widget {
|
||||
-- markup = helpers.colorize_text("Search", x.color8),
|
||||
align = "center",
|
||||
valign = "center",
|
||||
font = "sans 9",
|
||||
widget = wibox.widget.textbox()
|
||||
}
|
||||
|
||||
local search_bar = wibox.widget {
|
||||
shape = gears.shape.rounded_bar,
|
||||
bg = x.color0,
|
||||
widget = wibox.container.background()
|
||||
}
|
||||
|
||||
local search = wibox.widget{
|
||||
-- search_bar,
|
||||
{
|
||||
{
|
||||
search_icon,
|
||||
search_text,
|
||||
-- spacing = dpi(4),
|
||||
-- forced_width = search_bar.forced_width
|
||||
layout = wibox.layout.fixed.horizontal
|
||||
},
|
||||
left = dpi(10),
|
||||
widget = wibox.container.margin
|
||||
},
|
||||
forced_height = dpi(25),
|
||||
forced_width = dpi(200),
|
||||
shape = gears.shape.rounded_bar,
|
||||
bg = x.color0,
|
||||
widget = wibox.container.background()
|
||||
-- layout = wibox.layout.stack
|
||||
}
|
||||
|
||||
local function generate_prompt_icon(icon, color)
|
||||
return "<span font='icomoon 10' foreground='" .. color .."'>" .. icon .. "</span> "
|
||||
end
|
||||
|
||||
function sidebar_activate_prompt(action)
|
||||
sidebar.visible = true
|
||||
search_icon.visible = false
|
||||
local prompt
|
||||
if action == "run" then
|
||||
prompt = generate_prompt_icon("", x.color2)
|
||||
elseif action == "web_search" then
|
||||
prompt = generate_prompt_icon("", x.color4)
|
||||
end
|
||||
helpers.prompt(action, search_text, prompt, function()
|
||||
search_icon.visible = true
|
||||
if mouse.current_wibox ~= sidebar then
|
||||
sidebar.visible = false
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
search:buttons(gears.table.join(
|
||||
awful.button({ }, 1, function ()
|
||||
sidebar_activate_prompt("run")
|
||||
end),
|
||||
awful.button({ }, 3, function ()
|
||||
sidebar_activate_prompt("web_search")
|
||||
end)
|
||||
))
|
||||
|
||||
local volume_bar = require("noodle.volume_bar")
|
||||
local volume = format_progress_bar(volume_bar)
|
||||
|
||||
volume:buttons(gears.table.join(
|
||||
-- Left click - Mute / Unmute
|
||||
awful.button({ }, 1, function ()
|
||||
helpers.volume_control(0)
|
||||
end),
|
||||
-- Right click - Run or raise pavucontrol
|
||||
awful.button({ }, 3, apps.volume),
|
||||
-- Scroll - Increase / Decrease volume
|
||||
awful.button({ }, 4, function ()
|
||||
helpers.volume_control(5)
|
||||
end),
|
||||
awful.button({ }, 5, function ()
|
||||
helpers.volume_control(-5)
|
||||
end)
|
||||
))
|
||||
|
||||
-- Battery
|
||||
local cute_battery_face = require("noodle.cute_battery_face")
|
||||
cute_battery_face:buttons(gears.table.join(
|
||||
awful.button({ }, 1, apps.battery_monitor)
|
||||
))
|
||||
|
||||
-- Create tooltip widget
|
||||
-- It should change depending on what the user is hovering over
|
||||
local adaptive_tooltip = wibox.widget {
|
||||
visible = false,
|
||||
top_only = true,
|
||||
layout = wibox.layout.stack
|
||||
}
|
||||
|
||||
-- Create tooltip for widget w
|
||||
local tooltip_counter = 0
|
||||
local create_tooltip = function(w)
|
||||
local tooltip = wibox.widget {
|
||||
font = "sans medium 10",
|
||||
align = "center",
|
||||
valign = "center",
|
||||
widget = wibox.widget.textbox
|
||||
}
|
||||
|
||||
tooltip_counter = tooltip_counter + 1
|
||||
local index = tooltip_counter
|
||||
|
||||
adaptive_tooltip:insert(index, tooltip)
|
||||
|
||||
w:connect_signal("mouse::enter", function()
|
||||
-- Raise tooltip to the top of the stack
|
||||
adaptive_tooltip:set(1, tooltip)
|
||||
adaptive_tooltip.visible = true
|
||||
end)
|
||||
w:connect_signal("mouse::leave", function ()
|
||||
adaptive_tooltip.visible = false
|
||||
end)
|
||||
|
||||
return tooltip
|
||||
end
|
||||
|
||||
local brightness_tooltip = create_tooltip(brightness_bar)
|
||||
awesome.connect_signal("evil::brightness", function(value)
|
||||
brightness_tooltip.markup = "Your screen is <span foreground='" .. beautiful.brightness_bar_active_color .."'><b>" .. tostring(value) .. "%</b></span> bright"
|
||||
end)
|
||||
|
||||
local cpu_tooltip = create_tooltip(cpu_bar)
|
||||
awesome.connect_signal("evil::cpu", function(value)
|
||||
cpu_tooltip.markup = "You are using <span foreground='" .. beautiful.cpu_bar_active_color .."'><b>" .. tostring(value) .. "%</b></span> of CPU"
|
||||
end)
|
||||
|
||||
local ram_tooltip = create_tooltip(ram_bar)
|
||||
awesome.connect_signal("evil::ram", function(value, _)
|
||||
ram_tooltip.markup = "You are using <span foreground='" .. beautiful.ram_bar_active_color .."'><b>" .. string.format("%.1f", value / 1000) .. "G</b></span> of memory"
|
||||
end)
|
||||
|
||||
local volume_tooltip = create_tooltip(volume_bar)
|
||||
awesome.connect_signal("evil::volume", function(value, muted)
|
||||
volume_tooltip.markup = "The volume is at <span foreground='" .. beautiful.volume_bar_active_color .."'><b>" .. tostring(value) .. "%</b></span>"
|
||||
if muted then
|
||||
volume_tooltip.markup = volume_tooltip.markup.." and <span foreground='" .. beautiful.volume_bar_active_color .."'><b>muted</b></span>"
|
||||
end
|
||||
end)
|
||||
|
||||
local temperature_tooltip = create_tooltip(temperature_bar)
|
||||
awesome.connect_signal("evil::temperature", function(value)
|
||||
temperature_tooltip.markup = "Your CPU temperature is at <span foreground='" .. beautiful.temperature_bar_active_color .."'><b>" .. tostring(value) .. "°C</b></span>"
|
||||
end)
|
||||
|
||||
local battery_tooltip = create_tooltip(cute_battery_face)
|
||||
awesome.connect_signal("evil::battery", function(value)
|
||||
battery_tooltip.markup = "Your battery is at <span foreground='" .. beautiful.battery_bar_active_color .."'><b>" .. tostring(value) .. "%</b></span>"
|
||||
end)
|
||||
|
||||
-- Add clickable mouse effects on some widgets
|
||||
helpers.add_hover_cursor(cpu, "hand1")
|
||||
helpers.add_hover_cursor(ram, "hand1")
|
||||
helpers.add_hover_cursor(temperature, "hand1")
|
||||
helpers.add_hover_cursor(volume, "hand1")
|
||||
helpers.add_hover_cursor(brightness, "hand1")
|
||||
helpers.add_hover_cursor(mpd_song, "hand1")
|
||||
helpers.add_hover_cursor(search, "xterm")
|
||||
helpers.add_hover_cursor(cute_battery_face, "hand1")
|
||||
|
||||
|
||||
-- Create the sidebar
|
||||
sidebar = wibox({visible = false, ontop = true, type = "dock", screen = screen.primary})
|
||||
sidebar.bg = beautiful.sidebar_bg or beautiful.wibar_bg or "#111111"
|
||||
sidebar.fg = beautiful.sidebar_fg or beautiful.wibar_fg or "#FFFFFF"
|
||||
sidebar.opacity = beautiful.sidebar_opacity or 1
|
||||
sidebar.height = screen.primary.geometry.height
|
||||
sidebar.width = beautiful.sidebar_width or dpi(300)
|
||||
sidebar.y = beautiful.sidebar_y or 0
|
||||
local radius = beautiful.sidebar_border_radius or 0
|
||||
if beautiful.sidebar_position == "right" then
|
||||
awful.placement.right(sidebar)
|
||||
sidebar.shape = helpers.prrect(radius, true, false, false, true)
|
||||
else
|
||||
awful.placement.left(sidebar)
|
||||
sidebar.shape = helpers.prrect(radius, false, true, true, false)
|
||||
end
|
||||
-- sidebar.shape = helpers.rrect(radius)
|
||||
|
||||
sidebar:buttons(gears.table.join(
|
||||
-- Middle click - Hide sidebar
|
||||
awful.button({ }, 2, function ()
|
||||
sidebar.visible = false
|
||||
end)
|
||||
-- Right click - Hide sidebar
|
||||
-- awful.button({ }, 3, function ()
|
||||
-- sidebar.visible = false
|
||||
-- -- mymainmenu:show()
|
||||
-- end)
|
||||
))
|
||||
|
||||
sidebar_hide = function()
|
||||
-- Do not hide it if prompt is running
|
||||
-- (The search icon is hidden and replaced by other icons when the prompt is running)
|
||||
if search_icon.visible then
|
||||
sidebar.visible = false
|
||||
end
|
||||
end
|
||||
|
||||
-- Hide sidebar when mouse leaves
|
||||
if user.sidebar_hide_on_mouse_leave then
|
||||
sidebar:connect_signal("mouse::leave", function ()
|
||||
sidebar_hide()
|
||||
end)
|
||||
end
|
||||
-- Activate sidebar by moving the mouse at the edge of the screen
|
||||
if user.sidebar_show_on_mouse_screen_edge then
|
||||
local sidebar_activator = wibox({y = sidebar.y, width = 1, visible = true, ontop = false, opacity = 0, below = true, screen = screen.primary})
|
||||
sidebar_activator.height = sidebar.height
|
||||
sidebar_activator:connect_signal("mouse::enter", function ()
|
||||
sidebar.visible = true
|
||||
end)
|
||||
|
||||
if beautiful.sidebar_position == "right" then
|
||||
awful.placement.right(sidebar_activator)
|
||||
else
|
||||
awful.placement.left(sidebar_activator)
|
||||
end
|
||||
|
||||
sidebar_activator:buttons(
|
||||
gears.table.join(
|
||||
awful.button({ }, 4, function ()
|
||||
awful.tag.viewprev()
|
||||
end),
|
||||
awful.button({ }, 5, function ()
|
||||
awful.tag.viewnext()
|
||||
end)
|
||||
))
|
||||
end
|
||||
|
||||
|
||||
-- Item placement
|
||||
sidebar:setup {
|
||||
{ ----------- TOP GROUP -----------
|
||||
{
|
||||
{
|
||||
helpers.vertical_pad(dpi(30)),
|
||||
{
|
||||
nil,
|
||||
{
|
||||
time,
|
||||
spacing = dpi(12),
|
||||
layout = wibox.layout.fixed.horizontal
|
||||
},
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal
|
||||
},
|
||||
helpers.vertical_pad(dpi(10)),
|
||||
{
|
||||
nil,
|
||||
cute_battery_face,
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal,
|
||||
},
|
||||
helpers.vertical_pad(dpi(30)),
|
||||
layout = wibox.layout.fixed.vertical
|
||||
},
|
||||
bg = x.foreground,
|
||||
shape = helpers.prrect(dpi(40), false, false, true, false),
|
||||
widget = wibox.container.background
|
||||
},
|
||||
day_of_the_week,
|
||||
weather,
|
||||
spacing = dpi(30),
|
||||
layout = wibox.layout.fixed.vertical
|
||||
},
|
||||
{ ----------- MIDDLE GROUP -----------
|
||||
{
|
||||
{
|
||||
mpd_buttons,
|
||||
mpd_song,
|
||||
spacing = dpi(5),
|
||||
layout = wibox.layout.fixed.vertical
|
||||
},
|
||||
top = dpi(40),
|
||||
bottom = dpi(60),
|
||||
left = dpi(20),
|
||||
right = dpi(20),
|
||||
widget = wibox.container.margin
|
||||
},
|
||||
{
|
||||
nil,
|
||||
{
|
||||
volume,
|
||||
cpu,
|
||||
temperature,
|
||||
ram,
|
||||
brightness,
|
||||
spacing = dpi(5),
|
||||
-- layout = wibox.layout.fixed.vertical
|
||||
layout = wibox.layout.fixed.horizontal
|
||||
},
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal
|
||||
},
|
||||
helpers.vertical_pad(dpi(25)),
|
||||
layout = wibox.layout.fixed.vertical
|
||||
},
|
||||
{ ----------- BOTTOM GROUP -----------
|
||||
{
|
||||
{
|
||||
nil,
|
||||
adaptive_tooltip,
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal,
|
||||
},
|
||||
helpers.vertical_pad(dpi(30)),
|
||||
{
|
||||
nil,
|
||||
search,
|
||||
expand = "none",
|
||||
layout = wibox.layout.align.horizontal,
|
||||
},
|
||||
layout = wibox.layout.fixed.vertical
|
||||
},
|
||||
left = dpi(20),
|
||||
right = dpi(20),
|
||||
bottom = dpi(30),
|
||||
widget = wibox.container.margin
|
||||
},
|
||||
layout = wibox.layout.align.vertical,
|
||||
-- expand = "none"
|
||||
}
|
||||
|
|
@ -327,11 +327,11 @@ helpers.add_hover_cursor(temperature, "hand1")
|
|||
helpers.add_hover_cursor(volume, "hand1")
|
||||
|
||||
-- Create the sidebar
|
||||
sidebar = wibox({visible = false, ontop = true, type = "dock"})
|
||||
sidebar = wibox({visible = false, ontop = true, type = "dock", screen = screen.primary})
|
||||
sidebar.bg = beautiful.sidebar_bg or beautiful.wibar_bg or "#111111"
|
||||
sidebar.fg = beautiful.sidebar_fg or beautiful.wibar_fg or "#FFFFFF"
|
||||
sidebar.opacity = beautiful.sidebar_opacity or 1
|
||||
sidebar.height = awful.screen.focused().geometry.height
|
||||
sidebar.height = screen.primary.geometry.height
|
||||
sidebar.width = beautiful.sidebar_width or dpi(300)
|
||||
sidebar.y = beautiful.sidebar_y or 0
|
||||
local radius = beautiful.sidebar_border_radius or 0
|
||||
|
|
@ -364,7 +364,7 @@ if user.sidebar_hide_on_mouse_leave then
|
|||
end
|
||||
-- Activate sidebar by moving the mouse at the edge of the screen
|
||||
if user.sidebar_show_on_mouse_screen_edge then
|
||||
local sidebar_activator = wibox({y = sidebar.y, width = 1, visible = true, ontop = false, opacity = 0, below = true})
|
||||
local sidebar_activator = wibox({y = sidebar.y, width = 1, visible = true, ontop = false, opacity = 0, below = true, screen = screen.primary})
|
||||
sidebar_activator.height = sidebar.height
|
||||
sidebar_activator:connect_signal("mouse::enter", function ()
|
||||
sidebar.visible = true
|
||||
139
config/awesome/notifications/themes/amarena.lua
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
local awful = require("awful")
|
||||
local wibox = require("wibox")
|
||||
local gears = require("gears")
|
||||
local beautiful = require("beautiful")
|
||||
local naughty = require("naughty")
|
||||
|
||||
local helpers = require("helpers")
|
||||
|
||||
-- Note: This theme does not show image notification icons
|
||||
|
||||
-- For antialiasing
|
||||
-- The real background color is set in the widget_template
|
||||
local notification_bg = beautiful.notification_bg
|
||||
beautiful.notification_bg = "#00000000"
|
||||
|
||||
local default_icon = ""
|
||||
local default_color = x.color6
|
||||
|
||||
-- Custom text icons according to the notification's app_name
|
||||
-- plus whether the title should be visible or not
|
||||
-- (This will be removed when notification rules are released)
|
||||
-- Using icomoon font
|
||||
local app_config = {
|
||||
['battery'] = { icon = "", title = false },
|
||||
['charger'] = { icon = "", title = false },
|
||||
['volume'] = { icon = "", title = false },
|
||||
['brightness'] = { icon = "", title = false },
|
||||
['screenshot'] = { icon = "", title = false },
|
||||
['Telegram Desktop'] = { icon = "", title = true },
|
||||
['night_mode'] = { icon = "", title = false },
|
||||
['NetworkManager'] = { icon = "", title = true },
|
||||
['youtube'] = { icon = "", title = true },
|
||||
['mpd'] = { icon = "", title = true },
|
||||
['mpv'] = { icon = "", title = true },
|
||||
['heart'] = { icon = "", title = true },
|
||||
}
|
||||
|
||||
local urgency_bg = {
|
||||
['low'] = x.color6,
|
||||
['normal'] = x.color12,
|
||||
['critical'] = x.color1,
|
||||
}
|
||||
|
||||
-- Template
|
||||
-- ===================================================================
|
||||
naughty.connect_signal("request::display", function(n)
|
||||
|
||||
-- Custom icon widget
|
||||
-- It can be used instead of naughty.widget.icon if you prefer your icon to be
|
||||
-- a textbox instead of an image. However, you have to determine its
|
||||
-- text/markup value from the notification before creating the
|
||||
-- naughty.layout.box.
|
||||
local custom_notification_icon = wibox.widget {
|
||||
font = "icomoon 18",
|
||||
-- font = "icomoon bold 40",
|
||||
align = "center",
|
||||
valign = "center",
|
||||
widget = wibox.widget.textbox
|
||||
}
|
||||
|
||||
local icon, title_visible
|
||||
local color = default_color
|
||||
local bg = urgency_bg[n.urgency] or urgency_bg['normal']
|
||||
-- Set icon according to app_name
|
||||
if app_config[n.app_name] then
|
||||
icon = app_config[n.app_name].icon
|
||||
title_visible = app_config[n.app_name].title
|
||||
else
|
||||
icon = default_icon
|
||||
title_visible = true
|
||||
end
|
||||
|
||||
naughty.layout.box {
|
||||
notification = n,
|
||||
-- type = "splash",
|
||||
-- For antialiasing: The real shape is set in widget_template
|
||||
shape = gears.shape.rectangle,
|
||||
border_width = beautiful.notification_border_width,
|
||||
border_color = beautiful.notification_border_color,
|
||||
position = beautiful.notification_position,
|
||||
widget_template = {
|
||||
{
|
||||
{
|
||||
{
|
||||
{
|
||||
{
|
||||
markup = helpers.colorize_text(icon, color),
|
||||
align = "center",
|
||||
valign = "center",
|
||||
widget = custom_notification_icon,
|
||||
},
|
||||
forced_height = dpi(50),
|
||||
bg = x.foreground,
|
||||
widget = wibox.container.background,
|
||||
},
|
||||
{
|
||||
{
|
||||
{
|
||||
{
|
||||
align = "center",
|
||||
visible = title_visible,
|
||||
widget = naughty.widget.title,
|
||||
},
|
||||
{
|
||||
align = "center",
|
||||
widget = naughty.widget.message,
|
||||
},
|
||||
-- spacing = dpi(4),
|
||||
layout = wibox.layout.fixed.vertical,
|
||||
},
|
||||
margins = beautiful.notification_margin,
|
||||
widget = wibox.container.margin,
|
||||
},
|
||||
bg = bg,
|
||||
widget = wibox.container.background,
|
||||
},
|
||||
-- naughty.list.actions,
|
||||
-- spacing = dpi(4),
|
||||
layout = wibox.layout.fixed.vertical,
|
||||
},
|
||||
strategy = "min",
|
||||
width = dpi(200),
|
||||
widget = wibox.container.constraint,
|
||||
},
|
||||
strategy = "max",
|
||||
width = beautiful.notification_max_width or dpi(500),
|
||||
widget = wibox.container.constraint,
|
||||
},
|
||||
-- Anti-aliasing container
|
||||
bg = notification_bg,
|
||||
-- bg = "#00000000",
|
||||
-- This will be the anti-aliased shape of the notification
|
||||
shape = helpers.rrect(beautiful.notification_border_radius),
|
||||
widget = wibox.container.background
|
||||
}
|
||||
}
|
||||
end)
|
||||
|
||||
-- naughty.disconnect_signal("request::display", naughty.default_notification_handler)
|
||||
|
|
@ -16,17 +16,19 @@ local themes = {
|
|||
"lovelace", -- 2 --
|
||||
"skyfall", -- 3 --
|
||||
"ephemeral", -- 4 --
|
||||
"amarena", -- 5 --
|
||||
}
|
||||
-- Change this number to use a different theme
|
||||
local theme = themes[4]
|
||||
local theme = themes[5]
|
||||
-- ===================================================================
|
||||
-- Affects the window appearance: titlebar, titlebar buttons...
|
||||
local decoration_themes = {
|
||||
"lovelace", -- 1 -- Standard titlebar with 3 buttons (close, max, min)
|
||||
"skyfall", -- 2 -- No buttons, only title
|
||||
"ephemeral", -- 3 -- Anti-aliased, with text-generated titlebar buttons
|
||||
"amarena", -- 4 -- Text-generated titlebar buttons
|
||||
}
|
||||
local decoration_theme = decoration_themes[3]
|
||||
local decoration_theme = decoration_themes[4]
|
||||
-- ===================================================================
|
||||
-- Statusbar themes. Multiple bars can be declared in each theme.
|
||||
local bar_themes = {
|
||||
|
|
@ -34,8 +36,9 @@ local bar_themes = {
|
|||
"lovelace", -- 2 -- Start button, taglist, layout
|
||||
"skyfall", -- 3 -- Weather, taglist, window buttons, pop-up tray
|
||||
"ephemeral", -- 4 -- Taglist, start button, tasklist, and more buttons
|
||||
"amarena", -- 5 -- Popup tasklist
|
||||
}
|
||||
local bar_theme = bar_themes[4]
|
||||
local bar_theme = bar_themes[5]
|
||||
|
||||
-- ===================================================================
|
||||
-- Affects which icon theme will be used by widgets that display image icons.
|
||||
|
|
@ -48,8 +51,15 @@ local icon_theme = icon_themes[2]
|
|||
local notification_themes = {
|
||||
"lovelace", -- 1 --
|
||||
"ephemeral", -- 2 --
|
||||
"amarena", -- 3 --
|
||||
}
|
||||
local notification_theme = notification_themes[2]
|
||||
local notification_theme = notification_themes[3]
|
||||
-- ===================================================================
|
||||
local sidebar_themes = {
|
||||
"lovelace", -- 1 -- Uses image icons
|
||||
"amarena", -- 2 -- Text-only (consumes less RAM)
|
||||
}
|
||||
local sidebar_theme = sidebar_themes[2]
|
||||
-- ===================================================================
|
||||
local exit_screen_themes = {
|
||||
"lovelace", -- 1 -- Uses image icons
|
||||
|
|
@ -194,7 +204,7 @@ require("elemental.bar."..bar_theme)
|
|||
-- Exit screen
|
||||
require("elemental.exit_screen."..exit_screen_theme)
|
||||
-- Sidebar
|
||||
require("elemental.sidebar")
|
||||
require("elemental.sidebar."..sidebar_theme)
|
||||
-- Dashboard (previously called: Start screen)
|
||||
require("elemental.dashboard")
|
||||
-- Lock screen
|
||||
|
|
|
|||
BIN
config/awesome/themes/amarena/layout/floating.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
config/awesome/themes/amarena/layout/max.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
config/awesome/themes/amarena/layout/tile.png
Normal file
|
After Width: | Height: | Size: 6 KiB |
386
config/awesome/themes/amarena/theme.lua
Normal file
|
|
@ -0,0 +1,386 @@
|
|||
local awful = require("awful")
|
||||
local wibox = require("wibox")
|
||||
local gears = require("gears")
|
||||
local theme_name = "amarena"
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local dpi = xresources.apply_dpi
|
||||
local gfs = require("gears.filesystem")
|
||||
local themes_path = gfs.get_themes_dir()
|
||||
local layout_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/" .. theme_name .. "/layout/"
|
||||
local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/" .. theme_name .. "/titlebar/"
|
||||
local taglist_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/" .. theme_name .. "/taglist/"
|
||||
local tip = titlebar_icon_path --alias to save time/space
|
||||
local xrdb = xresources.get_current_theme()
|
||||
-- local theme = dofile(themes_path.."default/theme.lua")
|
||||
local theme = {}
|
||||
|
||||
-- Set theme wallpaper.
|
||||
-- It won't change anything if you are using feh to set the wallpaper like I do.
|
||||
theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/" .. theme_name .. "/wallpaper.jpg"
|
||||
|
||||
-- Set the theme font. This is the font that will be used by default in menus, bars, titlebars etc.
|
||||
-- theme.font = "sans 11"
|
||||
theme.font = "monospace 11"
|
||||
|
||||
-- This is how to get other .Xresources values (beyond colors 0-15, or custom variables)
|
||||
-- local cool_color = awesome.xrdb_get_value("", "color16")
|
||||
|
||||
theme.bg_dark = x.background
|
||||
theme.bg_normal = x.color0
|
||||
theme.bg_focus = x.color8
|
||||
theme.bg_urgent = x.color8
|
||||
theme.bg_minimize = x.color8
|
||||
theme.bg_systray = x.color8
|
||||
|
||||
theme.fg_normal = x.color8
|
||||
theme.fg_focus = x.color4
|
||||
theme.fg_urgent = x.color3
|
||||
theme.fg_minimize = x.color8
|
||||
|
||||
-- Gaps
|
||||
theme.useless_gap = dpi(5)
|
||||
-- This could be used to manually determine how far away from the
|
||||
-- screen edge the bars / notifications should be.
|
||||
theme.screen_margin = dpi(5)
|
||||
|
||||
-- Borders
|
||||
theme.border_width = dpi(0)
|
||||
-- theme.border_color = x.color0
|
||||
theme.border_normal = x.background
|
||||
theme.border_focus = x.background
|
||||
-- Rounded corners
|
||||
theme.border_radius = dpi(6)
|
||||
|
||||
-- Titlebars
|
||||
-- (Titlebar items can be customized in titlebars.lua)
|
||||
theme.titlebars_enabled = true
|
||||
theme.titlebar_size = dpi(35)
|
||||
theme.titlebar_title_enabled = false
|
||||
theme.titlebar_font = "sans bold 9"
|
||||
-- Window title alignment: left, right, center
|
||||
theme.titlebar_title_align = "center"
|
||||
-- Titlebar position: top, bottom, left, right
|
||||
theme.titlebar_position = "top"
|
||||
theme.titlebar_bg = x.background
|
||||
-- theme.titlebar_bg_focus = x.color12
|
||||
-- theme.titlebar_bg_normal = x.color8
|
||||
theme.titlebar_fg_focus = x.background
|
||||
theme.titlebar_fg_normal = x.color8
|
||||
--theme.titlebar_fg = x.color7
|
||||
|
||||
-- Notifications
|
||||
-- ============================
|
||||
-- Note: Some of these options are ignored by my custom
|
||||
-- notification widget_template
|
||||
-- ============================
|
||||
-- Position: bottom_left, bottom_right, bottom_middle,
|
||||
-- top_left, top_right, top_middle
|
||||
theme.notification_position = "top_right"
|
||||
theme.notification_border_width = dpi(0)
|
||||
theme.notification_border_radius = theme.border_radius
|
||||
theme.notification_border_color = x.color10
|
||||
theme.notification_bg = x.background
|
||||
-- theme.notification_bg = x.color8
|
||||
theme.notification_fg = x.foreground
|
||||
theme.notification_crit_bg = x.background
|
||||
theme.notification_crit_fg = x.color1
|
||||
theme.notification_icon_size = dpi(60)
|
||||
-- theme.notification_height = dpi(80)
|
||||
-- theme.notification_width = dpi(300)
|
||||
theme.notification_margin = dpi(16)
|
||||
theme.notification_opacity = 1
|
||||
theme.notification_font = "sans 11"
|
||||
theme.notification_padding = theme.screen_margin * 2
|
||||
theme.notification_spacing = theme.screen_margin * 4
|
||||
|
||||
-- Edge snap
|
||||
theme.snap_shape = gears.shape.rectangle
|
||||
theme.snap_bg = x.foreground
|
||||
theme.snap_border_width = dpi(3)
|
||||
|
||||
-- Tag names
|
||||
theme.tagnames = {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"0",
|
||||
}
|
||||
|
||||
-- Widget separator
|
||||
theme.separator_text = "|"
|
||||
--theme.separator_text = " :: "
|
||||
--theme.separator_text = " • "
|
||||
-- theme.separator_text = " •• "
|
||||
theme.separator_fg = x.color8
|
||||
|
||||
-- Wibar(s)
|
||||
-- Keep in mind that these settings could be ignored by the bar theme
|
||||
theme.wibar_position = "bottom"
|
||||
theme.wibar_height = dpi(45)
|
||||
theme.wibar_fg = x.background
|
||||
theme.wibar_bg = x.foreground
|
||||
--theme.wibar_opacity = 0.7
|
||||
theme.wibar_border_color = x.color0
|
||||
theme.wibar_border_width = dpi(0)
|
||||
theme.wibar_border_radius = dpi(0)
|
||||
theme.wibar_width = dpi(390)
|
||||
|
||||
theme.prefix_fg = x.color8
|
||||
|
||||
--There are other variable sets
|
||||
--overriding the default one when
|
||||
--defined, the sets are:
|
||||
--taglist_[bg|fg]_[focus|urgent|occupied|empty|volatile]
|
||||
--tasklist_[bg|fg]_[focus|urgent]
|
||||
--titlebar_[bg|fg]_[normal|focus]
|
||||
--tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
|
||||
--mouse_finder_[color|timeout|animate_timeout|radius|factor]
|
||||
--prompt_[fg|bg|fg_cursor|bg_cursor|font]
|
||||
--hotkeys_[bg|fg|border_width|border_color|shape|opacity|modifiers_fg|label_bg|label_fg|group_margin|font|description_font]
|
||||
--Example:
|
||||
--theme.taglist_bg_focus = "#ff0000"
|
||||
|
||||
--Tasklist
|
||||
theme.tasklist_font = "sans medium 8"
|
||||
theme.tasklist_disable_icon = true
|
||||
theme.tasklist_plain_task_name = true
|
||||
theme.tasklist_bg_focus = x.color0
|
||||
theme.tasklist_fg_focus = x.foreground
|
||||
theme.tasklist_bg_normal = "#00000000"
|
||||
theme.tasklist_fg_normal = x.foreground.."77"
|
||||
theme.tasklist_bg_minimize = "#00000000"
|
||||
theme.tasklist_fg_minimize = x.color8
|
||||
-- theme.tasklist_font_minimized = "sans italic 8"
|
||||
theme.tasklist_bg_urgent = x.background
|
||||
theme.tasklist_fg_urgent = x.color3
|
||||
theme.tasklist_spacing = dpi(0)
|
||||
theme.tasklist_align = "center"
|
||||
|
||||
-- Sidebar
|
||||
-- (Sidebar items can be customized in sidebar.lua)
|
||||
theme.sidebar_bg = x.background
|
||||
theme.sidebar_fg = x.color7
|
||||
theme.sidebar_opacity = 1
|
||||
theme.sidebar_position = "left" -- left or right
|
||||
theme.sidebar_width = dpi(300)
|
||||
theme.sidebar_x = 0
|
||||
theme.sidebar_y = 0
|
||||
theme.sidebar_border_radius = 0
|
||||
-- theme.sidebar_border_radius = theme.border_radius
|
||||
|
||||
-- Exit screen
|
||||
theme.exit_screen_bg = x.color0 .. "CC"
|
||||
theme.exit_screen_fg = x.color7
|
||||
theme.exit_screen_font = "sans 20"
|
||||
theme.exit_screen_icon_size = dpi(180)
|
||||
|
||||
-- Lock screen
|
||||
theme.lock_screen_bg = x.color0
|
||||
theme.lock_screen_fg = x.color7
|
||||
|
||||
-- Icon taglist
|
||||
local ntags = 10
|
||||
theme.taglist_icons_empty = {}
|
||||
theme.taglist_icons_occupied = {}
|
||||
theme.taglist_icons_focused = {}
|
||||
theme.taglist_icons_urgent = {}
|
||||
-- table.insert(tag_icons, tag)
|
||||
for i = 1, ntags do
|
||||
theme.taglist_icons_empty[i] = taglist_icon_path .. tostring(i) .. "_empty.png"
|
||||
theme.taglist_icons_occupied[i] = taglist_icon_path .. tostring(i) .. "_occupied.png"
|
||||
theme.taglist_icons_focused[i] = taglist_icon_path .. tostring(i) .. "_focused.png"
|
||||
theme.taglist_icons_urgent[i] = taglist_icon_path .. tostring(i) .. "_urgent.png"
|
||||
end
|
||||
|
||||
-- Noodle Text Taglist
|
||||
theme.taglist_text_font = "monospace 25"
|
||||
-- theme.taglist_text_font = "sans bold 15"
|
||||
theme.taglist_text_empty = {"","","","","","","","","",""}
|
||||
theme.taglist_text_occupied = {"","","","","","","","","",""}
|
||||
theme.taglist_text_focused = {"o","o","o","o","o","o","o","o","o","o"}
|
||||
-- theme.taglist_text_focused = {"","","","","","","","","",""}
|
||||
theme.taglist_text_urgent = {"+","+","+","+","+","+","+","+","+","+"}
|
||||
-- theme.taglist_text_urgent = {"","","","","","","","","",""}
|
||||
-- theme.taglist_text_urgent = {"","","","","","","","","",""}
|
||||
|
||||
theme.taglist_text_color_empty = { x.background.."22", x.background.."22", x.background.."22", x.background.."22", x.background.."22", x.background.."22", x.background.."22", x.background.."22", x.background.."22", x.background.."22" }
|
||||
-- theme.taglist_text_color_occupied = { x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0" }
|
||||
-- theme.taglist_text_color_focused = { x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0", x.foreground.."F0" }
|
||||
-- theme.taglist_text_color_urgent = { x.foreground, x.foreground, x.foreground, x.foreground, x.foreground, x.foreground, x.foreground, x.foreground, x.foreground, x.foreground }
|
||||
|
||||
theme.taglist_text_color_occupied = { x.color1.."99", x.color2.."99", x.color3.."99", x.color4.."99", x.color5.."99", x.color6.."99", x.color1.."99", x.color2.."99", x.color3.."99", x.color4.."99" }
|
||||
theme.taglist_text_color_focused = { x.color9, x.color10, x.color11, x.color12, x.color13, x.color14, x.color9, x.color10, x.color11, x.color12 }
|
||||
theme.taglist_text_color_urgent = { x.background, x.background, x.background, x.background, x.background, x.background, x.background, x.background, x.background, x.background }
|
||||
-- theme.taglist_text_color_urgent = { x.color9, x.color10, x.color11, x.color12, x.color13, x.color14, x.color9, x.color10, x.color11, x.color12 }
|
||||
|
||||
-- Prompt
|
||||
theme.prompt_fg = x.color12
|
||||
|
||||
-- Text Taglist (default)
|
||||
theme.taglist_font = "monospace bold 9"
|
||||
theme.taglist_bg_focus = x.background
|
||||
theme.taglist_fg_focus = x.color12
|
||||
theme.taglist_bg_occupied = x.background
|
||||
theme.taglist_fg_occupied = x.color8
|
||||
theme.taglist_bg_empty = x.background
|
||||
theme.taglist_fg_empty = x.background
|
||||
theme.taglist_bg_urgent = x.background
|
||||
theme.taglist_fg_urgent = x.color3
|
||||
theme.taglist_disable_icon = true
|
||||
theme.taglist_spacing = dpi(0)
|
||||
-- Generate taglist squares:
|
||||
local taglist_square_size = dpi(0)
|
||||
theme.taglist_squares_sel = theme_assets.taglist_squares_sel(
|
||||
taglist_square_size, theme.fg_focus
|
||||
)
|
||||
theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel(
|
||||
taglist_square_size, theme.fg_normal
|
||||
)
|
||||
|
||||
-- Variables set for theming the menu:
|
||||
-- theme.menu_submenu_icon = icons.submenu
|
||||
theme.menu_height = dpi(35)
|
||||
theme.menu_width = dpi(180)
|
||||
theme.menu_bg_normal = x.color0
|
||||
theme.menu_fg_normal= x.color7
|
||||
theme.menu_bg_focus = x.color8 .. "55"
|
||||
theme.menu_fg_focus= x.color7
|
||||
theme.menu_border_width = dpi(0)
|
||||
theme.menu_border_color = x.color0
|
||||
|
||||
-- You can add as many variables as
|
||||
-- you wish and access them by using
|
||||
-- beautiful.variable in your rc.lua
|
||||
--theme.bg_widget = "#cc0000"
|
||||
|
||||
-- Titlebar buttons
|
||||
-- Define the images to load
|
||||
theme.titlebar_close_button_normal = tip .. "close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip .. "close_focus.svg"
|
||||
theme.titlebar_minimize_button_normal = tip .. "minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip .. "minimize_focus.svg"
|
||||
theme.titlebar_ontop_button_normal_inactive = tip .. "ontop_normal_inactive.svg"
|
||||
theme.titlebar_ontop_button_focus_inactive = tip .. "ontop_focus_inactive.svg"
|
||||
theme.titlebar_ontop_button_normal_active = tip .. "ontop_normal_active.svg"
|
||||
theme.titlebar_ontop_button_focus_active = tip .. "ontop_focus_active.svg"
|
||||
theme.titlebar_sticky_button_normal_inactive = tip .. "sticky_normal_inactive.svg"
|
||||
theme.titlebar_sticky_button_focus_inactive = tip .. "sticky_focus_inactive.svg"
|
||||
theme.titlebar_sticky_button_normal_active = tip .. "sticky_normal_active.svg"
|
||||
theme.titlebar_sticky_button_focus_active = tip .. "sticky_focus_active.svg"
|
||||
theme.titlebar_floating_button_normal_inactive = tip .. "floating_normal_inactive.svg"
|
||||
theme.titlebar_floating_button_focus_inactive = tip .. "floating_focus_inactive.svg"
|
||||
theme.titlebar_floating_button_normal_active = tip .. "floating_normal_active.svg"
|
||||
theme.titlebar_floating_button_focus_active = tip .. "floating_focus_active.svg"
|
||||
theme.titlebar_maximized_button_normal_inactive = tip .. "maximized_normal_inactive.svg"
|
||||
theme.titlebar_maximized_button_focus_inactive = tip .. "maximized_focus_inactive.svg"
|
||||
theme.titlebar_maximized_button_normal_active = tip .. "maximized_normal_active.svg"
|
||||
theme.titlebar_maximized_button_focus_active = tip .. "maximized_focus_active.svg"
|
||||
-- (hover)
|
||||
theme.titlebar_close_button_normal_hover = tip .. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip .. "close_focus_hover.svg"
|
||||
theme.titlebar_minimize_button_normal_hover = tip .. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip .. "minimize_focus_hover.svg"
|
||||
theme.titlebar_ontop_button_normal_inactive_hover = tip .. "ontop_normal_inactive_hover.svg"
|
||||
theme.titlebar_ontop_button_focus_inactive_hover = tip .. "ontop_focus_inactive_hover.svg"
|
||||
theme.titlebar_ontop_button_normal_active_hover = tip .. "ontop_normal_active_hover.svg"
|
||||
theme.titlebar_ontop_button_focus_active_hover = tip .. "ontop_focus_active_hover.svg"
|
||||
theme.titlebar_sticky_button_normal_inactive_hover = tip .. "sticky_normal_inactive_hover.svg"
|
||||
theme.titlebar_sticky_button_focus_inactive_hover = tip .. "sticky_focus_inactive_hover.svg"
|
||||
theme.titlebar_sticky_button_normal_active_hover = tip .. "sticky_normal_active_hover.svg"
|
||||
theme.titlebar_sticky_button_focus_active_hover = tip .. "sticky_focus_active_hover.svg"
|
||||
theme.titlebar_floating_button_normal_inactive_hover = tip .. "floating_normal_inactive_hover.svg"
|
||||
theme.titlebar_floating_button_focus_inactive_hover = tip .. "floating_focus_inactive_hover.svg"
|
||||
theme.titlebar_floating_button_normal_active_hover = tip .. "floating_normal_active_hover.svg"
|
||||
theme.titlebar_floating_button_focus_active_hover = tip .. "floating_focus_active_hover.svg"
|
||||
theme.titlebar_maximized_button_normal_inactive_hover = tip .. "maximized_normal_inactive_hover.svg"
|
||||
theme.titlebar_maximized_button_focus_inactive_hover = tip .. "maximized_focus_inactive_hover.svg"
|
||||
theme.titlebar_maximized_button_normal_active_hover = tip .. "maximized_normal_active_hover.svg"
|
||||
theme.titlebar_maximized_button_focus_active_hover = tip .. "maximized_focus_active_hover.svg"
|
||||
|
||||
-- You can use your own layout icons like this:
|
||||
theme.layout_fairh = layout_icon_path .. "fairh.png"
|
||||
theme.layout_fairv = layout_icon_path .. "fairv.png"
|
||||
theme.layout_floating = layout_icon_path .. "floating.png"
|
||||
theme.layout_magnifier = layout_icon_path .. "magnifier.png"
|
||||
theme.layout_max = layout_icon_path .. "max.png"
|
||||
theme.layout_fullscreen = layout_icon_path .. "fullscreen.png"
|
||||
theme.layout_tilebottom = layout_icon_path .. "tilebottom.png"
|
||||
theme.layout_tileleft = layout_icon_path .. "tileleft.png"
|
||||
theme.layout_tile = layout_icon_path .. "tile.png"
|
||||
theme.layout_tiletop = layout_icon_path .. "tiletop.png"
|
||||
theme.layout_spiral = layout_icon_path .. "spiral.png"
|
||||
theme.layout_dwindle = layout_icon_path .. "dwindle.png"
|
||||
theme.layout_cornernw = layout_icon_path .. "cornernw.png"
|
||||
theme.layout_cornerne = layout_icon_path .. "cornerne.png"
|
||||
theme.layout_cornersw = layout_icon_path .. "cornersw.png"
|
||||
theme.layout_cornerse = layout_icon_path .. "cornerse.png"
|
||||
|
||||
-- Recolor layout icons
|
||||
--theme = theme_assets.recolor_layout(theme, x.color1)
|
||||
|
||||
-- Noodle widgets customization --
|
||||
-- Desktop mode widget variables
|
||||
-- Symbols
|
||||
-- theme.desktop_mode_color_floating = x.color4
|
||||
-- theme.desktop_mode_color_tile = x.color3
|
||||
-- theme.desktop_mode_color_max = x.color1
|
||||
-- theme.desktop_mode_text_floating = "f"
|
||||
-- theme.desktop_mode_text_tile = "t"
|
||||
-- theme.desktop_mode_text_max = "m"
|
||||
|
||||
-- Minimal tasklist widget variables
|
||||
theme.minimal_tasklist_visible_clients_color = x.color4
|
||||
theme.minimal_tasklist_visible_clients_text = ""
|
||||
theme.minimal_tasklist_hidden_clients_color = x.color7
|
||||
theme.minimal_tasklist_hidden_clients_text = ""
|
||||
|
||||
-- Mpd song
|
||||
theme.mpd_song_title_color = x.color7
|
||||
theme.mpd_song_artist_color = x.color7
|
||||
theme.mpd_song_paused_color = x.color8
|
||||
|
||||
-- Volume bar
|
||||
theme.volume_bar_active_color = x.color5
|
||||
theme.volume_bar_active_background_color = x.color0
|
||||
theme.volume_bar_muted_color = x.color8
|
||||
theme.volume_bar_muted_background_color = x.color0
|
||||
|
||||
-- Temperature bar
|
||||
theme.temperature_bar_active_color = x.color1
|
||||
theme.temperature_bar_background_color = x.color0
|
||||
|
||||
-- Battery bar
|
||||
theme.battery_bar_active_color = x.color6
|
||||
theme.battery_bar_background_color = x.color0
|
||||
|
||||
-- CPU bar
|
||||
theme.cpu_bar_active_color = x.color2
|
||||
theme.cpu_bar_background_color = x.color0
|
||||
|
||||
-- RAM bar
|
||||
theme.ram_bar_active_color = x.color4
|
||||
theme.ram_bar_background_color = x.color0
|
||||
|
||||
-- Brightness bar
|
||||
theme.brightness_bar_active_color = x.color3
|
||||
theme.brightness_bar_background_color = x.color0
|
||||
|
||||
-- Generate Awesome icon:
|
||||
theme.awesome_icon = theme_assets.awesome_icon(
|
||||
theme.menu_height, theme.bg_focus, theme.fg_focus
|
||||
)
|
||||
|
||||
-- Define the icon theme for application icons. If not set then the icons
|
||||
-- from /usr/share/icons and /usr/share/icons/hicolor will be used.
|
||||
theme.icon_theme = "/usr/share/icons/Numix"
|
||||
|
||||
return theme
|
||||
|
||||
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
||||
66
config/awesome/themes/amarena/titlebar/close_focus.svg
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="cross.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.959798"
|
||||
inkscape:cx="-11.895218"
|
||||
inkscape:cy="30.6447"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#F37F97;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M -8.4863203,66.513663 58.486311,133.48632"
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f37f97;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 58.486311,66.513682 -8.4863203,133.48634"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
66
config/awesome/themes/amarena/titlebar/close_focus_hover.svg
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="cross.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.959798"
|
||||
inkscape:cx="-11.895218"
|
||||
inkscape:cy="30.6447"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#FF4971;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M -8.4863203,66.513663 58.486311,133.48632"
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#FF4971;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 58.486311,66.513682 -8.4863203,133.48634"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
66
config/awesome/themes/amarena/titlebar/close_normal.svg
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="cross.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.959798"
|
||||
inkscape:cx="-11.895218"
|
||||
inkscape:cy="30.6447"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#414458;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M -8.4863203,66.513663 58.486311,133.48632"
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#414458;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 58.486311,66.513682 -8.4863203,133.48634"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="cross.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.959798"
|
||||
inkscape:cx="-11.895218"
|
||||
inkscape:cy="30.6447"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#FF4971;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M -8.4863203,66.513663 58.486311,133.48632"
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#FF4971;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 58.486311,66.513682 -8.4863203,133.48634"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#5ADECD;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#18E3C8;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#5ADECD;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#18E3C8;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#414458;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#18E3C8;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#414458;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle_inv.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="-3.4607017"
|
||||
inkscape:cy="18.444214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#18E3C8;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 24.997406,129.52331 -34.2434739,-59.311457 68.4921259,0 -34.249238,59.321437"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#79E6F3;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#3FDCEE;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#79E6F3;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#3FDCEE;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#414458;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#3FDCEE;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#414458;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="circle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="-1.0520498"
|
||||
inkscape:cy="18.798632"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
style="display:inline">
|
||||
<circle
|
||||
style="opacity:1;fill:#3FDCEE;fill-opacity:1;stroke:#87cdde;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1"
|
||||
id="path4816"
|
||||
cx="24.999996"
|
||||
cy="99.999992"
|
||||
r="52.650002" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
63
config/awesome/themes/amarena/titlebar/minimize_focus.svg
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="6.7892982"
|
||||
inkscape:cy="18.694214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#C574DD;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.002584,70.476684 34.243474,59.311456 -68.4921259,0 L 25.00317,70.466707"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="6.7892982"
|
||||
inkscape:cy="18.694214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#B043D1;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.002584,70.476684 34.243474,59.311456 -68.4921259,0 L 25.00317,70.466707"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
63
config/awesome/themes/amarena/titlebar/minimize_normal.svg
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="6.7892982"
|
||||
inkscape:cy="18.694214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#414458;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.002584,70.476684 34.243474,59.311456 -68.4921259,0 L 25.00317,70.466707"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,63 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8.0000001"
|
||||
inkscape:cx="6.7892982"
|
||||
inkscape:cy="18.694214"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#B043D1;stroke-width:41.27938843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.002584,70.476684 34.243474,59.311456 -68.4921259,0 L 25.00317,70.466707"
|
||||
id="path4967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#F2A272;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#F2A272;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#F2A272;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#F2A272;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#414458;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#414458;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#414458;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#414458;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,66 @@
|
|||
<?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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="something.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="-20.328971"
|
||||
inkscape:cy="28.674686"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356812,130.31016 94.713627,-2e-5"
|
||||
id="path817-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#FF8037;stroke-width:40.88542557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -22.356814,69.689864 94.713631,-2.8e-5"
|
||||
id="path817-3-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#8897F4;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#556FFF;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#8897F4;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#556FFF;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#414458;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#556FFF;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#414458;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
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="40"
|
||||
height="50"
|
||||
viewBox="-25 -50 100 300"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="square.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
id="linearGradient4144"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#0092b8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="18.36755"
|
||||
inkscape:cx="15.412029"
|
||||
inkscape:cy="23.734304"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1572"
|
||||
inkscape:window-height="1114"
|
||||
inkscape:window-x="10"
|
||||
inkscape:window-y="68"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Layer 3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:1;fill:#556FFF;fill-opacity:1;stroke:#a618ff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:189.06040955;stroke-opacity:1;"
|
||||
id="rect5598"
|
||||
width="98.90657"
|
||||
height="98.906555"
|
||||
rx="15"
|
||||
ry="15"
|
||||
x="-24.453283"
|
||||
y="50.546719" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |