From 05d23f34073d09e31bc7fc2a0b72023e1dccd00d Mon Sep 17 00:00:00 2001 From: elijah Date: Sat, 26 Jan 2013 00:44:19 -0800 Subject: added icons and Rakefile for rendering to svg to png. --- README.md | 56 +- Rakefile | 152 ++++++ android/leap-icon.png | Bin 0 -> 44718 bytes android/res/drawable-hdpi/leap-launcher.png | Bin 0 -> 4254 bytes android/res/drawable-ldpi/leap-launcher.png | Bin 0 -> 1517 bytes android/res/drawable-mdpi/leap-launcher.png | Bin 0 -> 2320 bytes android/res/drawable-xhdpi/leap-launcher.png | Bin 0 -> 6320 bytes mac/leap-128x128.png | Bin 0 -> 9082 bytes mac/leap.icns | Bin 0 -> 28795 bytes qt/dark/16/accept.png | Bin 0 -> 285 bytes qt/dark/16/error.png | Bin 0 -> 355 bytes qt/dark/16/refresh.png | Bin 0 -> 472 bytes qt/dark/32/accept.png | Bin 0 -> 426 bytes qt/dark/32/error.png | Bin 0 -> 453 bytes qt/dark/32/refresh.png | Bin 0 -> 754 bytes qt/dark/64/accept.png | Bin 0 -> 412 bytes qt/dark/64/error.png | Bin 0 -> 755 bytes qt/dark/64/refresh.png | Bin 0 -> 1408 bytes qt/light/16/accept.png | Bin 0 -> 285 bytes qt/light/16/error.png | Bin 0 -> 355 bytes qt/light/16/refresh.png | Bin 0 -> 472 bytes qt/light/32/accept.png | Bin 0 -> 426 bytes qt/light/32/error.png | Bin 0 -> 453 bytes qt/light/32/refresh.png | Bin 0 -> 754 bytes qt/light/64/accept.png | Bin 0 -> 412 bytes qt/light/64/error.png | Bin 0 -> 755 bytes qt/light/64/refresh.png | Bin 0 -> 1408 bytes status/dark/16/network-vpn-acquiring.png | Bin 0 -> 339 bytes status/dark/16/network-vpn-down.png | Bin 0 -> 504 bytes status/dark/16/network-vpn-up.png | Bin 0 -> 271 bytes status/dark/32/network-vpn-acquiring.png | Bin 0 -> 457 bytes status/dark/32/network-vpn-down.png | Bin 0 -> 810 bytes status/dark/32/network-vpn-up.png | Bin 0 -> 309 bytes status/dark/64/network-vpn-acquiring.png | Bin 0 -> 712 bytes status/dark/64/network-vpn-down.png | Bin 0 -> 1429 bytes status/dark/64/network-vpn-up.png | Bin 0 -> 426 bytes status/light/16/network-vpn-acquiring.png | Bin 0 -> 377 bytes status/light/16/network-vpn-down.png | Bin 0 -> 507 bytes status/light/16/network-vpn-up.png | Bin 0 -> 271 bytes status/light/32/network-vpn-acquiring.png | Bin 0 -> 525 bytes status/light/32/network-vpn-down.png | Bin 0 -> 823 bytes status/light/32/network-vpn-up.png | Bin 0 -> 309 bytes status/light/64/network-vpn-acquiring.png | Bin 0 -> 791 bytes status/light/64/network-vpn-down.png | Bin 0 -> 1457 bytes status/light/64/network-vpn-up.png | Bin 0 -> 426 bytes svg/android/leap-launcher.svg | 736 ++++++++++++++++++++++++++ svg/kid-jumping.svg | 757 +++++++++++++++++++++++++++ svg/qt/dark/accept.svg | 17 + svg/qt/dark/error.svg | 19 + svg/qt/dark/refresh.svg | 17 + svg/qt/light/accept.svg | 63 +++ svg/qt/light/error.svg | 68 +++ svg/qt/light/refresh.svg | 63 +++ svg/status/dark/network-vpn-acquiring.svg | 25 + svg/status/dark/network-vpn-down.svg | 94 ++++ svg/status/dark/network-vpn-up.svg | 20 + svg/status/light/network-vpn-acquiring.svg | 100 ++++ svg/status/light/network-vpn-down.svg | 94 ++++ svg/status/light/network-vpn-up.svg | 79 +++ 59 files changed, 2359 insertions(+), 1 deletion(-) create mode 100644 Rakefile create mode 100644 android/leap-icon.png create mode 100644 android/res/drawable-hdpi/leap-launcher.png create mode 100644 android/res/drawable-ldpi/leap-launcher.png create mode 100644 android/res/drawable-mdpi/leap-launcher.png create mode 100644 android/res/drawable-xhdpi/leap-launcher.png create mode 100644 mac/leap-128x128.png create mode 100644 mac/leap.icns create mode 100644 qt/dark/16/accept.png create mode 100644 qt/dark/16/error.png create mode 100644 qt/dark/16/refresh.png create mode 100644 qt/dark/32/accept.png create mode 100644 qt/dark/32/error.png create mode 100644 qt/dark/32/refresh.png create mode 100644 qt/dark/64/accept.png create mode 100644 qt/dark/64/error.png create mode 100644 qt/dark/64/refresh.png create mode 100644 qt/light/16/accept.png create mode 100644 qt/light/16/error.png create mode 100644 qt/light/16/refresh.png create mode 100644 qt/light/32/accept.png create mode 100644 qt/light/32/error.png create mode 100644 qt/light/32/refresh.png create mode 100644 qt/light/64/accept.png create mode 100644 qt/light/64/error.png create mode 100644 qt/light/64/refresh.png create mode 100644 status/dark/16/network-vpn-acquiring.png create mode 100644 status/dark/16/network-vpn-down.png create mode 100644 status/dark/16/network-vpn-up.png create mode 100644 status/dark/32/network-vpn-acquiring.png create mode 100644 status/dark/32/network-vpn-down.png create mode 100644 status/dark/32/network-vpn-up.png create mode 100644 status/dark/64/network-vpn-acquiring.png create mode 100644 status/dark/64/network-vpn-down.png create mode 100644 status/dark/64/network-vpn-up.png create mode 100644 status/light/16/network-vpn-acquiring.png create mode 100644 status/light/16/network-vpn-down.png create mode 100644 status/light/16/network-vpn-up.png create mode 100644 status/light/32/network-vpn-acquiring.png create mode 100644 status/light/32/network-vpn-down.png create mode 100644 status/light/32/network-vpn-up.png create mode 100644 status/light/64/network-vpn-acquiring.png create mode 100644 status/light/64/network-vpn-down.png create mode 100644 status/light/64/network-vpn-up.png create mode 100644 svg/android/leap-launcher.svg create mode 100644 svg/kid-jumping.svg create mode 100644 svg/qt/dark/accept.svg create mode 100644 svg/qt/dark/error.svg create mode 100644 svg/qt/dark/refresh.svg create mode 100644 svg/qt/light/accept.svg create mode 100644 svg/qt/light/error.svg create mode 100644 svg/qt/light/refresh.svg create mode 100644 svg/status/dark/network-vpn-acquiring.svg create mode 100644 svg/status/dark/network-vpn-down.svg create mode 100644 svg/status/dark/network-vpn-up.svg create mode 100644 svg/status/light/network-vpn-acquiring.svg create mode 100644 svg/status/light/network-vpn-down.svg create mode 100644 svg/status/light/network-vpn-up.svg diff --git a/README.md b/README.md index 56342dc..c096e5d 100644 --- a/README.md +++ b/README.md @@ -1 +1,55 @@ -icons and images for LEAP. +Icons and Images for LEAP +==================================== + +Here lies all the assets for the various LEAP clients. All sources are in SVG format, and rendered to PNG. + +Generating PNG images +====================================== + +Requirements: + + apt-get install ruby inkscape optipng icnsutils + +Usage: + + cd leap_assets + rake + +Android Launcher Icons +===================================== + +See https://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html + +Pixels height and width for launcher icons: + +36x36 -- ldpi, 120 dpi, Low density screen +48x48 -- hdpi, 160 dpi, Medium density screen +72x72 -- mdpi, 240 dpi, High density screen +96x96 -- xhdpi, 320 dpi, Extra-high density screen +512x512 -- displayed in Google Play website. + +Links: + +* Android Launcher Icon Guidelines -- https://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html + +Android Action Bar Icons +==================================== + +See https://developer.android.com/guide/practices/ui_guidelines/icon_design_action_bar.html + +18x18 -- ldpi, 120 dpi, Low density screen +24x24 -- hdpi, 160 dpi, Medium density screen +36x36 -- mdpi, 240 dpi, High density screen +48x48 -- xhdpi, 320 dpi, Extra-high density screen + +Resources +===================== + +Android Design Downloads +http://developer.android.com/design/downloads/index.html + +Launcher Icon Generator +https://android-ui-utils.googlecode.com/hg/asset-studio/dist/icons-launcher.html + +Nice Symbolic Icons +check /usr/share/icons/gnome/scalable/**-symbolic.svg diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..5429ffa --- /dev/null +++ b/Rakefile @@ -0,0 +1,152 @@ +## +## CONFIGURATION +## + +output_directories = [ + 'android', + 'android/res', + 'android/res/drawable-ldpi', + 'android/res/drawable-mdpi', + 'android/res/drawable-hdpi', + 'android/res/drawable-xhdpi', + 'mac', + 'status/dark/16', + 'status/dark/32', + 'status/dark/64', + 'status/light/16', + 'status/light/32', + 'status/light/64', + 'qt/dark/16', + 'qt/dark/32', + 'qt/dark/64', + 'qt/light/16', + 'qt/light/32', + 'qt/light/64' +] + +android_launcher_target = [ + {:size => 36, :dpi => 120, :dest => 'android/res/drawable-ldpi'}, + {:size => 48, :dpi => 160, :dest => 'android/res/drawable-mdpi'}, + {:size => 72, :dpi => 240, :dest => 'android/res/drawable-hdpi'}, + {:size => 96, :dpi => 320, :dest => 'android/res/drawable-xhdpi'} +] + +android_icon_target = [ + {:size => 18, :dpi => 120, :dest => 'android/res/drawable-ldpi'}, + {:size => 24, :dpi => 160, :dest => 'android/res/drawable-mdpi'}, + {:size => 36, :dpi => 240, :dest => 'android/res/drawable-hdpi'}, + {:size => 48, :dpi => 320, :dest => 'android/res/drawable-xhdpi'} +] + +status_dark_icon_target = [ + {:size => 16, :dest => 'status/dark/16'}, + {:size => 32, :dest => 'status/dark/32'}, + {:size => 64, :dest => 'status/dark/64'} +] + +status_light_icon_target = [ + {:size => 16, :dest => 'status/light/16'}, + {:size => 32, :dest => 'status/light/32'}, + {:size => 64, :dest => 'status/light/64'} +] + +qt_dark_icon_target = [ + {:size => 16, :dest => 'qt/dark/16'}, + {:size => 32, :dest => 'qt/dark/32'}, + {:size => 64, :dest => 'qt/dark/64'} +] + +qt_light_icon_target = [ + {:size => 16, :dest => 'qt/light/16'}, + {:size => 32, :dest => 'qt/light/32'}, + {:size => 64, :dest => 'qt/light/64'} +] + +svg_to_png = [ + ['svg/android/leap-launcher.svg', android_launcher_target], + ['svg/android/leap-launcher.svg', {:size => 512, :dest => 'android/leap-icon.png'}], + ['svg/android/icons/*.svg', android_icon_target], + ['svg/status/dark/*.svg', status_dark_icon_target], + ['svg/status/light/*.svg', status_light_icon_target], + ['svg/qt/dark/*.svg', qt_dark_icon_target], + ['svg/qt/light/*.svg', qt_light_icon_target], + ['svg/android/leap-launcher.svg', {:size => 128, :dest => 'mac/leap-128x128.png'}] +] + +png_to_icns = [ + [['mac/leap-128x128.png'], 'mac/leap.icns'] +] + +## +## HELPERS +## + +def run(cmd) + system(cmd + ' >/dev/null 2>/dev/null') + unless $? == 0 + puts "ERROR: failed to run #{cmd}" + puts "bailing out." + exit + end +end + +def render_svg_to_png(source, targets) + Dir.glob(source).each do |src_file| + [targets].flatten.each do |target| + dest_file = if File.directory?(target[:dest]) + File.join(target[:dest], File.basename(src_file).sub(/\.svg$/,'.png')) + else + target[:dest] + end + if target[:size] + height = width = target[:size] + else + height = target[:height] + width = target[:width] + end + options = ["--file=#{src_file}", "--export-png=#{dest_file}", "-w #{width}", "-h #{height}", + "--export-background=0xffffff", "--export-background-opacity=0x00"] + options << "--export-dpi=#{target[:dpi]}" if target[:dpi] + run("inkscape #{options.join ' '}") + run("optipng #{dest_file}") + progress + end + end +end + +def render_png_to_icns(sources, target) + run("png2icns #{target} #{sources.join(' ')}") + progress +end + +def progress + putc '.' + STDOUT.flush +end + +## +## RENDER TASK +## + +require 'fileutils' + +task :default => :render + +desc "render SVG images to PNGs" +task :render do + Dir.chdir(File.dirname(__FILE__)) do + output_directories.each do |dir| + FileUtils.mkdir_p(dir) + Dir.entries(dir).grep(/\.(png|icns|jpg)$/).each do |file| + File.unlink File.join(dir,file) + end + end + svg_to_png.each do |source, targets| + render_svg_to_png(source, targets) + end + png_to_icns.each do |sources, target| + render_png_to_icns(sources, target) + end + end + puts +end diff --git a/android/leap-icon.png b/android/leap-icon.png new file mode 100644 index 0000000..5f358a6 Binary files /dev/null and b/android/leap-icon.png differ diff --git a/android/res/drawable-hdpi/leap-launcher.png b/android/res/drawable-hdpi/leap-launcher.png new file mode 100644 index 0000000..a07db1e Binary files /dev/null and b/android/res/drawable-hdpi/leap-launcher.png differ diff --git a/android/res/drawable-ldpi/leap-launcher.png b/android/res/drawable-ldpi/leap-launcher.png new file mode 100644 index 0000000..6f25cd0 Binary files /dev/null and b/android/res/drawable-ldpi/leap-launcher.png differ diff --git a/android/res/drawable-mdpi/leap-launcher.png b/android/res/drawable-mdpi/leap-launcher.png new file mode 100644 index 0000000..4b3456f Binary files /dev/null and b/android/res/drawable-mdpi/leap-launcher.png differ diff --git a/android/res/drawable-xhdpi/leap-launcher.png b/android/res/drawable-xhdpi/leap-launcher.png new file mode 100644 index 0000000..dbb53ee Binary files /dev/null and b/android/res/drawable-xhdpi/leap-launcher.png differ diff --git a/mac/leap-128x128.png b/mac/leap-128x128.png new file mode 100644 index 0000000..0a9ee26 Binary files /dev/null and b/mac/leap-128x128.png differ diff --git a/mac/leap.icns b/mac/leap.icns new file mode 100644 index 0000000..b26b0d7 Binary files /dev/null and b/mac/leap.icns differ diff --git a/qt/dark/16/accept.png b/qt/dark/16/accept.png new file mode 100644 index 0000000..9a5e3de Binary files /dev/null and b/qt/dark/16/accept.png differ diff --git a/qt/dark/16/error.png b/qt/dark/16/error.png new file mode 100644 index 0000000..05153ae Binary files /dev/null and b/qt/dark/16/error.png differ diff --git a/qt/dark/16/refresh.png b/qt/dark/16/refresh.png new file mode 100644 index 0000000..244642b Binary files /dev/null and b/qt/dark/16/refresh.png differ diff --git a/qt/dark/32/accept.png b/qt/dark/32/accept.png new file mode 100644 index 0000000..261c93d Binary files /dev/null and b/qt/dark/32/accept.png differ diff --git a/qt/dark/32/error.png b/qt/dark/32/error.png new file mode 100644 index 0000000..c9dd8ed Binary files /dev/null and b/qt/dark/32/error.png differ diff --git a/qt/dark/32/refresh.png b/qt/dark/32/refresh.png new file mode 100644 index 0000000..19f9aad Binary files /dev/null and b/qt/dark/32/refresh.png differ diff --git a/qt/dark/64/accept.png b/qt/dark/64/accept.png new file mode 100644 index 0000000..01f6844 Binary files /dev/null and b/qt/dark/64/accept.png differ diff --git a/qt/dark/64/error.png b/qt/dark/64/error.png new file mode 100644 index 0000000..853cb4d Binary files /dev/null and b/qt/dark/64/error.png differ diff --git a/qt/dark/64/refresh.png b/qt/dark/64/refresh.png new file mode 100644 index 0000000..73425ca Binary files /dev/null and b/qt/dark/64/refresh.png differ diff --git a/qt/light/16/accept.png b/qt/light/16/accept.png new file mode 100644 index 0000000..917a68c Binary files /dev/null and b/qt/light/16/accept.png differ diff --git a/qt/light/16/error.png b/qt/light/16/error.png new file mode 100644 index 0000000..edc2098 Binary files /dev/null and b/qt/light/16/error.png differ diff --git a/qt/light/16/refresh.png b/qt/light/16/refresh.png new file mode 100644 index 0000000..a948a07 Binary files /dev/null and b/qt/light/16/refresh.png differ diff --git a/qt/light/32/accept.png b/qt/light/32/accept.png new file mode 100644 index 0000000..652d292 Binary files /dev/null and b/qt/light/32/accept.png differ diff --git a/qt/light/32/error.png b/qt/light/32/error.png new file mode 100644 index 0000000..2b01a42 Binary files /dev/null and b/qt/light/32/error.png differ diff --git a/qt/light/32/refresh.png b/qt/light/32/refresh.png new file mode 100644 index 0000000..4d3617e Binary files /dev/null and b/qt/light/32/refresh.png differ diff --git a/qt/light/64/accept.png b/qt/light/64/accept.png new file mode 100644 index 0000000..bd87116 Binary files /dev/null and b/qt/light/64/accept.png differ diff --git a/qt/light/64/error.png b/qt/light/64/error.png new file mode 100644 index 0000000..076aeb3 Binary files /dev/null and b/qt/light/64/error.png differ diff --git a/qt/light/64/refresh.png b/qt/light/64/refresh.png new file mode 100644 index 0000000..2ea9f02 Binary files /dev/null and b/qt/light/64/refresh.png differ diff --git a/status/dark/16/network-vpn-acquiring.png b/status/dark/16/network-vpn-acquiring.png new file mode 100644 index 0000000..7c4ffba Binary files /dev/null and b/status/dark/16/network-vpn-acquiring.png differ diff --git a/status/dark/16/network-vpn-down.png b/status/dark/16/network-vpn-down.png new file mode 100644 index 0000000..fc9db94 Binary files /dev/null and b/status/dark/16/network-vpn-down.png differ diff --git a/status/dark/16/network-vpn-up.png b/status/dark/16/network-vpn-up.png new file mode 100644 index 0000000..6cb4f99 Binary files /dev/null and b/status/dark/16/network-vpn-up.png differ diff --git a/status/dark/32/network-vpn-acquiring.png b/status/dark/32/network-vpn-acquiring.png new file mode 100644 index 0000000..dedd833 Binary files /dev/null and b/status/dark/32/network-vpn-acquiring.png differ diff --git a/status/dark/32/network-vpn-down.png b/status/dark/32/network-vpn-down.png new file mode 100644 index 0000000..3fb87ac Binary files /dev/null and b/status/dark/32/network-vpn-down.png differ diff --git a/status/dark/32/network-vpn-up.png b/status/dark/32/network-vpn-up.png new file mode 100644 index 0000000..1c72928 Binary files /dev/null and b/status/dark/32/network-vpn-up.png differ diff --git a/status/dark/64/network-vpn-acquiring.png b/status/dark/64/network-vpn-acquiring.png new file mode 100644 index 0000000..31b6e61 Binary files /dev/null and b/status/dark/64/network-vpn-acquiring.png differ diff --git a/status/dark/64/network-vpn-down.png b/status/dark/64/network-vpn-down.png new file mode 100644 index 0000000..85669af Binary files /dev/null and b/status/dark/64/network-vpn-down.png differ diff --git a/status/dark/64/network-vpn-up.png b/status/dark/64/network-vpn-up.png new file mode 100644 index 0000000..a5d2049 Binary files /dev/null and b/status/dark/64/network-vpn-up.png differ diff --git a/status/light/16/network-vpn-acquiring.png b/status/light/16/network-vpn-acquiring.png new file mode 100644 index 0000000..a7c815d Binary files /dev/null and b/status/light/16/network-vpn-acquiring.png differ diff --git a/status/light/16/network-vpn-down.png b/status/light/16/network-vpn-down.png new file mode 100644 index 0000000..0783adf Binary files /dev/null and b/status/light/16/network-vpn-down.png differ diff --git a/status/light/16/network-vpn-up.png b/status/light/16/network-vpn-up.png new file mode 100644 index 0000000..8861ed7 Binary files /dev/null and b/status/light/16/network-vpn-up.png differ diff --git a/status/light/32/network-vpn-acquiring.png b/status/light/32/network-vpn-acquiring.png new file mode 100644 index 0000000..714ddc4 Binary files /dev/null and b/status/light/32/network-vpn-acquiring.png differ diff --git a/status/light/32/network-vpn-down.png b/status/light/32/network-vpn-down.png new file mode 100644 index 0000000..432d318 Binary files /dev/null and b/status/light/32/network-vpn-down.png differ diff --git a/status/light/32/network-vpn-up.png b/status/light/32/network-vpn-up.png new file mode 100644 index 0000000..6821265 Binary files /dev/null and b/status/light/32/network-vpn-up.png differ diff --git a/status/light/64/network-vpn-acquiring.png b/status/light/64/network-vpn-acquiring.png new file mode 100644 index 0000000..83e3ea7 Binary files /dev/null and b/status/light/64/network-vpn-acquiring.png differ diff --git a/status/light/64/network-vpn-down.png b/status/light/64/network-vpn-down.png new file mode 100644 index 0000000..8cee20f Binary files /dev/null and b/status/light/64/network-vpn-down.png differ diff --git a/status/light/64/network-vpn-up.png b/status/light/64/network-vpn-up.png new file mode 100644 index 0000000..a0db2a2 Binary files /dev/null and b/status/light/64/network-vpn-up.png differ diff --git a/svg/android/leap-launcher.svg b/svg/android/leap-launcher.svg new file mode 100644 index 0000000..47a5687 --- /dev/null +++ b/svg/android/leap-launcher.svg @@ -0,0 +1,736 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/kid-jumping.svg b/svg/kid-jumping.svg new file mode 100644 index 0000000..7a330fd --- /dev/null +++ b/svg/kid-jumping.svg @@ -0,0 +1,757 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/qt/dark/accept.svg b/svg/qt/dark/accept.svg new file mode 100644 index 0000000..fd38fe7 --- /dev/null +++ b/svg/qt/dark/accept.svg @@ -0,0 +1,17 @@ + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + diff --git a/svg/qt/dark/error.svg b/svg/qt/dark/error.svg new file mode 100644 index 0000000..c73fcf9 --- /dev/null +++ b/svg/qt/dark/error.svg @@ -0,0 +1,19 @@ + + + + Gnome Symbolic Icon Theme + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + + diff --git a/svg/qt/dark/refresh.svg b/svg/qt/dark/refresh.svg new file mode 100644 index 0000000..bb7ae0d --- /dev/null +++ b/svg/qt/dark/refresh.svg @@ -0,0 +1,17 @@ + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + diff --git a/svg/qt/light/accept.svg b/svg/qt/light/accept.svg new file mode 100644 index 0000000..8b2f5a1 --- /dev/null +++ b/svg/qt/light/accept.svg @@ -0,0 +1,63 @@ + + + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + diff --git a/svg/qt/light/error.svg b/svg/qt/light/error.svg new file mode 100644 index 0000000..90d9241 --- /dev/null +++ b/svg/qt/light/error.svg @@ -0,0 +1,68 @@ + + + + + + + Gnome Symbolic Icon Theme + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + + diff --git a/svg/qt/light/refresh.svg b/svg/qt/light/refresh.svg new file mode 100644 index 0000000..3ced261 --- /dev/null +++ b/svg/qt/light/refresh.svg @@ -0,0 +1,63 @@ + + + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + diff --git a/svg/status/dark/network-vpn-acquiring.svg b/svg/status/dark/network-vpn-acquiring.svg new file mode 100644 index 0000000..a255a39 --- /dev/null +++ b/svg/status/dark/network-vpn-acquiring.svg @@ -0,0 +1,25 @@ + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + diff --git a/svg/status/dark/network-vpn-down.svg b/svg/status/dark/network-vpn-down.svg new file mode 100644 index 0000000..a01dc57 --- /dev/null +++ b/svg/status/dark/network-vpn-down.svg @@ -0,0 +1,94 @@ + + + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + + + + + + diff --git a/svg/status/dark/network-vpn-up.svg b/svg/status/dark/network-vpn-up.svg new file mode 100644 index 0000000..5db1174 --- /dev/null +++ b/svg/status/dark/network-vpn-up.svg @@ -0,0 +1,20 @@ + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + + + + diff --git a/svg/status/light/network-vpn-acquiring.svg b/svg/status/light/network-vpn-acquiring.svg new file mode 100644 index 0000000..4a2d059 --- /dev/null +++ b/svg/status/light/network-vpn-acquiring.svg @@ -0,0 +1,100 @@ + + + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + diff --git a/svg/status/light/network-vpn-down.svg b/svg/status/light/network-vpn-down.svg new file mode 100644 index 0000000..cf4e1dc --- /dev/null +++ b/svg/status/light/network-vpn-down.svg @@ -0,0 +1,94 @@ + + + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + + + + + + diff --git a/svg/status/light/network-vpn-up.svg b/svg/status/light/network-vpn-up.svg new file mode 100644 index 0000000..b0ae33b --- /dev/null +++ b/svg/status/light/network-vpn-up.svg @@ -0,0 +1,79 @@ + + + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + Gnome Symbolic Icon Theme + + + + + + + -- cgit v1.2.3