Add option for panel transparency

This commit is contained in:
vinceliuice 2020-08-18 21:44:43 +08:00
parent 09c1dba39b
commit cddcba7eff
35 changed files with 16392 additions and 92 deletions

View file

@ -71,6 +71,7 @@ Usage: `./Install` **[OPTIONS...]**
|-c, --color | Specify theme color variant(s) **[light/dark]** (Default: All variants)|
|-o, --opacity | Specify theme opacity variant(s) **[standard/solid]** (Default: All variants)|
|-a, --alt | Specify titlebutton variant(s) **[standard/alt]** (Default: All variants)|
|-t, --trans | Run a dialg to change the panel transparency (Default: 85%)|
|-s, --size | Run a dialg to change the nautilus sidebar width size (Default: 200px)|
|-i, --icon | activities icon variant(s) **[standard/normal/gnome/ubuntu/arch/manjaro/fedora/debian/void]** (Default: standard variant)|
|-g, --gdm | Install GDM theme, you should run this with sudo!|
@ -81,6 +82,10 @@ If you want to change the nautilus sidebar width size, then you can run:
./install.sh -s
If you want to change the panel transparency, then you can run:
./install.sh -t
### Suggested themes
| Suggested themes | links | preview |
|:--------------------|:-------------|:-------------|

View file

@ -69,6 +69,7 @@ usage() {
printf " %-25s%s\n" "-o, --opacity VARIANTS" "Specify theme opacity variant(s) [standard|solid] (Default: All variants)"
printf " %-25s%s\n" "-c, --color VARIANTS" "Specify theme color variant(s) [light|dark] (Default: All variants)"
printf " %-25s%s\n" "-a, --alt VARIANTS" "Specify theme titilebutton variant(s) [standard|alt] (Default: All variants)"
printf " %-25s%s\n" "-t, --trans VARIANTS" "Run a dialg to change the panel transparency (Default: 85%)"
printf " %-25s%s\n" "-s, --size VARIANTS" "Run a dialg to change the nautilus sidebar width size (Default: 200px)"
printf " %-25s%s\n" "-i, --icon VARIANTS" "Specify activities icon variant(s) for gnome-shell [standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void] (Default: standard variant)"
printf " %-25s%s\n" "-g, --gdm" "Install GDM theme, this option need root user authority! please run this with sudo"
@ -111,10 +112,15 @@ install() {
mkdir -p ${THEME_DIR}/gnome-shell
cp -r ${SRC_DIR}/assets/gnome-shell/source-assets/* ${THEME_DIR}/gnome-shell
cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}${alt}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
cp -r ${SRC_DIR}/assets/gnome-shell/common-assets ${THEME_DIR}/gnome-shell/assets
cp -r ${SRC_DIR}/assets/gnome-shell/assets${color}/*.svg ${THEME_DIR}/gnome-shell/assets
cp -r ${SRC_DIR}/assets/gnome-shell/activities/activities${icon}.svg ${THEME_DIR}/gnome-shell/assets/activities.svg
if [[ ${alt} == '-alt' || ${opacity} == '-solid' ]] && [[ ${color} == '-light' ]]; then
cp -r ${SRC_DIR}/assets/gnome-shell/activities-black/activities${icon}.svg ${THEME_DIR}/gnome-shell/assets/activities.svg
fi
cd ${THEME_DIR}/gnome-shell
mkdir -p ${THEME_DIR}/gtk-2.0
@ -256,10 +262,10 @@ install_dialog() {
fi
}
run_dialog() {
run_sidebar_dialog() {
if [[ -x /usr/bin/dialog ]]; then
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
--radiolist "Choose your nautilus sidebar size (default is 200px width): " 15 40 5 \
--radiolist "Choose your nautilus sidebar size (default is 200px width):" 15 40 5 \
1 "200px" on \
2 "220px" off \
3 "240px" off \
@ -276,6 +282,37 @@ run_dialog() {
fi
}
run_shell_dialog() {
if [[ -x /usr/bin/dialog ]]; then
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
--radiolist "Choose your panel transparency
(default is 85%, 100% is full transparent!):" 20 50 10 \
1 "80%" on \
2 "75%" off \
3 "70%" off \
4 "65%" off \
5 "60%" off \
6 "55%" off \
7 "50%" off \
8 "45%" off \
9 "40%" off \
0 "35%" off --output-fd 1 )
case "$tui" in
1) panel_trans="0.20" ;;
2) panel_trans="0.25" ;;
3) panel_trans="0.30" ;;
4) panel_trans="0.35" ;;
5) panel_trans="0.40" ;;
6) panel_trans="0.45" ;;
7) panel_trans="0.50" ;;
8) panel_trans="0.55" ;;
9) panel_trans="0.60" ;;
0) panel_trans="0.65" ;;
*) operation_canceled ;;
esac
fi
}
parse_sass() {
cd ${REPO_DIR} && ./parse-sass.sh
}
@ -287,11 +324,25 @@ change_size() {
prompt -w "Change nautilus sidebar size ..."
}
restore_file() {
change_transparency() {
cd ${SRC_DIR}/sass
cp -an _colors.scss _colors.scss.bak
sed -i "s/0.16/$panel_trans/g" _colors.scss
prompt -w "Change panel transparency ..."
}
restore_applications_file() {
cd ${SRC_DIR}/sass/gtk
[[ -f _applications.scss.bak ]] && rm -rf _applications.scss
mv _applications.scss.bak _applications.scss
prompt -w "Restore scss file ..."
prompt -w "Restore _applications.scss file ..."
}
restore_colors_file() {
cd ${SRC_DIR}/sass
[[ -f _colors.scss.bak ]] && rm -rf _colors.scss
mv _colors.scss.bak _colors.scss
prompt -w "Restore _colors.scss file ..."
}
while [[ $# -gt 0 ]]; do
@ -316,6 +367,10 @@ while [[ $# -gt 0 ]]; do
size='true'
shift 1
;;
-t|--trans)
trans='true'
shift 1
;;
-r|--revert)
revert='true'
shift 1
@ -465,13 +520,17 @@ done
}
if [[ "${size:-}" == 'true' ]]; then
install_dialog && run_dialog
install_dialog && run_sidebar_dialog
if [[ "$sidebar_size" != '200px' ]]; then
change_size && parse_sass
fi
fi
if [[ "${trans:-}" == 'true' ]]; then
install_dialog && run_shell_dialog && change_transparency && parse_sass
fi
if [[ "${gdm:-}" != 'true' && "${revert:-}" != 'true' ]]; then
install_theme
fi
@ -485,7 +544,11 @@ if [[ "${gdm:-}" != 'true' && "${revert:-}" == 'true' && "$UID" -eq "$ROOT_UID"
fi
if [[ -f "${SRC_DIR}"/sass/gtk/_applications.scss.bak ]]; then
restore_file && parse_sass
restore_applications_file && parse_sass
fi
if [[ -f "${SRC_DIR}"/sass/_colors.scss.bak ]]; then
restore_colors_file && parse_sass
fi
echo

View file

@ -27,13 +27,25 @@ if [ ! -z "${TRANS_VARIANTS:-}" ]; then
IFS=', ' read -r -a _TRANS_VARIANTS <<< "${TRANS_VARIANTS:-}"
fi
_ALT_VARIANTS=('' '-alt')
if [ ! -z "${TRANS_VARIANTS:-}" ]; then
IFS=', ' read -r -a _TRANS_VARIANTS <<< "${TRANS_VARIANTS:-}"
fi
for color in "${_COLOR_VARIANTS[@]}"; do
for trans in "${_TRANS_VARIANTS[@]}"; do
sassc $SASSC_OPT src/main/gtk-3.0/gtk${color}${trans}.{scss,css}
echo "==> Generating the gtk${color}${trans}.css..."
sassc $SASSC_OPT src/main/gnome-shell/gnome-shell${color}${trans}.{scss,css}
echo "==> Generating the gnome-shell${color}${trans}.css..."
sassc $SASSC_OPT src/main/cinnamon/cinnamon${color}${trans}.{scss,css}
echo "==> Generating the cinnamon${color}${trans}.css..."
done
done
for color in "${_COLOR_VARIANTS[@]}"; do
for trans in "${_TRANS_VARIANTS[@]}"; do
for alt in "${_ALT_VARIANTS[@]}"; do
sassc $SASSC_OPT src/main/gnome-shell/gnome-shell${color}${trans}${alt}.{scss,css}
echo "==> Generating the gnome-shell${color}${trans}${alt}.css..."
done
done
done

View file

@ -0,0 +1,153 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
width="24"
height="24"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="activities-arch.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline;enable-background:new">
<sodipodi:namedview
stroke="#ef2929"
fill="#f57900"
id="base"
pagecolor="#bebebe"
bordercolor="#525252"
borderopacity="1"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-21.058413"
inkscape:cy="5.92008"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="true"
inkscape:window-width="1366"
inkscape:window-height="710"
inkscape:window-x="0"
inkscape:window-y="28"
width="400px"
height="300px"
inkscape:snap-nodes="true"
inkscape:snap-bbox="true"
gridtolerance="10000"
inkscape:object-nodes="true"
inkscape:snap-grids="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-maximized="1"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
objecttolerance="10000"
guidetolerance="10000"
borderlayer="true"
showborder="true"
guidecolor="#ff0b00"
guideopacity="1"
guidehicolor="#001aff"
guidehiopacity="0.49803922">
<inkscape:grid
type="xygrid"
id="grid3123"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
position="12,12"
orientation="1,0"
id="guide4135"
inkscape:locked="false" />
</sodipodi:namedview>
<defs
id="defs3">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4140" />
</linearGradient>
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:source />
<cc:license
rdf:resource="" />
<dc:title />
<dc:subject>
<rdf:Bag />
</dc:subject>
<dc:date />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:relation />
<dc:language />
<dc:coverage />
<dc:description />
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
inkscape:groupmode="layer"
inkscape:label="Base"
id="layer1"
transform="translate(0,-276)">
<path
inkscape:connector-curvature="0"
style="fill:#383838;fill-rule:evenodd;stroke-width:3.77960205;fill-opacity:1"
d="m 11.998949,278.99999 c -0.801466,1.96409 -1.284045,3.25011 -2.1769246,5.15469 0.5463576,0.58031 1.2181436,1.25414 2.3087316,2.01937 -1.171373,-0.48252 -1.972839,-0.96717 -2.5702179,-1.47095 -1.1416106,2.38286 -2.9294954,5.77539 -6.5605385,12.29689 2.852963,-1.64526 5.0660288,-2.66132 7.1260294,-3.04819 a 5.2233454,5.2227208 0 0 1 -0.1339323,-1.22224 l 0.0021,-0.0914 c 0.046766,-1.82806 0.9970493,-3.23311 2.1237773,-3.13746 1.126729,0.0957 2.000476,1.65588 1.955832,3.48182 a 5.1595683,5.1589513 0 0 1 -0.114799,0.98206 c 2.038741,0.39962 4.226297,1.41143 7.040993,3.03543 -0.554861,-1.02032 -1.050196,-1.94072 -1.524273,-2.81861 -0.744066,-0.57818 -1.522147,-1.32853 -3.105945,-2.14266 1.088462,0.28271 1.870796,0.61006 2.476677,0.97567 -4.808805,-8.95323 -5.197846,-10.14359 -6.847547,-14.0144 z"
id="path14" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.3 KiB

View file

@ -0,0 +1,153 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
width="24"
height="24"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="activities-fedora.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline;enable-background:new">
<sodipodi:namedview
stroke="#ef2929"
fill="#f57900"
id="base"
pagecolor="#bebebe"
bordercolor="#525252"
borderopacity="1"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-21.058413"
inkscape:cy="5.92008"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="true"
inkscape:window-width="695"
inkscape:window-height="458"
inkscape:window-x="722"
inkscape:window-y="361"
width="400px"
height="300px"
inkscape:snap-nodes="true"
inkscape:snap-bbox="true"
gridtolerance="10000"
inkscape:object-nodes="true"
inkscape:snap-grids="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-maximized="0"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
objecttolerance="10000"
guidetolerance="10000"
borderlayer="true"
showborder="true"
guidecolor="#ff0b00"
guideopacity="1"
guidehicolor="#001aff"
guidehiopacity="0.49803922">
<inkscape:grid
type="xygrid"
id="grid3123"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
position="12,12"
orientation="1,0"
id="guide4135"
inkscape:locked="false" />
</sodipodi:namedview>
<defs
id="defs3">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4140" />
</linearGradient>
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:source />
<cc:license
rdf:resource="" />
<dc:title></dc:title>
<dc:subject>
<rdf:Bag />
</dc:subject>
<dc:date />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:relation />
<dc:language />
<dc:coverage />
<dc:description />
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
inkscape:groupmode="layer"
inkscape:label="Base"
id="layer1"
transform="translate(0,-276)">
<path
inkscape:connector-curvature="0"
style="fill:#383838;fill-opacity:1;stroke-width:3.77960205"
d="m 12.002118,279 a 9.0017158,9.0010657 0 0 0 -8.9995893,8.99469 v 7.60859 c 0,0.77383 0.622933,1.39672 1.396817,1.39672 H 12.00637 a 9.0006533,9.0000033 0 0 0 -0.0043,-18 z m 2.712846,1.97284 c 0.36143,0 0.618682,0.0425 0.952473,0.12755 0.488992,0.12755 0.886564,0.52935 0.886564,0.99492 0,0.56124 -0.406076,0.97154 -1.01838,0.97154 -0.289143,0 -0.395446,-0.0574 -0.820657,-0.0574 -1.256498,0 -2.274879,1.02043 -2.277004,2.27471 v 1.96858 c 0,0.17858 0.142445,0.32314 0.318908,0.32314 h 1.498868 a 1.004565,1.0044925 0 1 1 0,2.00898 H 12.43796 v 2.2981 a 4.3158911,4.3155794 0 0 1 -4.3158913,4.31558 c -0.36143,0 -0.618683,-0.0425 -0.952473,-0.12968 -0.488993,-0.12755 -0.888691,-0.52723 -0.888691,-0.9928 0,-0.56336 0.408203,-0.97153 1.020506,-0.97153 0.289144,0 0.395446,0.0553 0.820658,0.0553 1.256497,0 2.2748783,-1.0183 2.2770043,-2.27471 v -1.97709 a 0.32103426,0.32101107 0 0 0 -0.321035,-0.32314 H 8.5812957 a 1.004575,1.0045024 0 1 1 0.01063,-2.00897 h 1.8071463 v -2.28748 a 4.3158911,4.3155794 0 0 1 4.315891,-4.31557 z"
id="path14-3" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -0,0 +1,153 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
width="24"
height="24"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="activities-gnome.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline;enable-background:new">
<sodipodi:namedview
stroke="#ef2929"
fill="#f57900"
id="base"
pagecolor="#bebebe"
bordercolor="#525252"
borderopacity="1"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-0.995913"
inkscape:cy="5.92008"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="true"
inkscape:window-width="1366"
inkscape:window-height="710"
inkscape:window-x="0"
inkscape:window-y="28"
width="400px"
height="300px"
inkscape:snap-nodes="true"
inkscape:snap-bbox="true"
gridtolerance="10000"
inkscape:object-nodes="true"
inkscape:snap-grids="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-maximized="1"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
objecttolerance="10000"
guidetolerance="10000"
borderlayer="true"
showborder="true"
guidecolor="#ff0b00"
guideopacity="1"
guidehicolor="#001aff"
guidehiopacity="0.49803922">
<inkscape:grid
type="xygrid"
id="grid3123"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
position="12,12"
orientation="1,0"
id="guide4135"
inkscape:locked="false" />
</sodipodi:namedview>
<defs
id="defs3">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4140" />
</linearGradient>
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:source />
<cc:license
rdf:resource="" />
<dc:title></dc:title>
<dc:subject>
<rdf:Bag />
</dc:subject>
<dc:date />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:relation />
<dc:language />
<dc:coverage />
<dc:description />
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
inkscape:groupmode="layer"
inkscape:label="Base"
id="layer1"
transform="translate(0,-276)">
<path
inkscape:connector-curvature="0"
style="fill:#383838;fill-opacity:1;stroke-width:3.77960181"
d="m 17.73448,279 c -3.554505,0 -4.219911,5.39978 -2.221565,5.39978 1.998346,0 5.77607,-5.39978 2.221565,-5.39978 z m -5.642138,0.61226 c -2.03236,0.28699 -1.318058,4.11574 -0.233849,4.18802 1.079957,0.0702 2.268335,-4.47289 0.233849,-4.18802 z m -3.6778075,1.19051 a 1.2457773,1.2457773 0 0 0 -0.333766,0.085 c -1.902681,0.7228 -0.289123,3.70332 0.778079,3.50348 0.999173,-0.1892 1.113972,-3.73946 -0.442187,-3.58639 z m -2.500058,2.39801 a 1.0098024,1.0098024 0 0 0 -0.550608,0.15732 c -1.564662,0.92264 0.527223,3.15058 1.445612,2.80619 0.807842,-0.304 0.293374,-2.92949 -0.895004,-2.96564 z m 7.2960885,1.80064 c -2.79981,-0.051 -6.4946245,1.42009 -7.1238905,4.37085 C 5.4042605,292.5675 8.8949885,297 12.538781,297 c 1.792133,0 3.858508,-1.69434 4.245422,-3.83938 0.2955,-1.63482 -3.716073,-0.97791 -3.580015,0.10205 0.110546,0.88437 -0.3529,1.34357 -0.990669,1.36057 -0.87162,-0.1063 -1.2968,-0.61013 -1.413724,-1.3712 -0.155191,-1.9941 6.131095,-3.41845 5.633635,-6.51164 -0.182828,-1.1331 -1.541278,-1.70922 -3.222865,-1.73898 z"
id="path12" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -0,0 +1,154 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
width="24"
height="24"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="activities-manjaro.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline;enable-background:new">
<sodipodi:namedview
stroke="#ef2929"
fill="#f57900"
id="base"
pagecolor="#bebebe"
bordercolor="#525252"
borderopacity="1"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-7.2122802"
inkscape:cy="17.418278"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="true"
inkscape:window-width="1366"
inkscape:window-height="710"
inkscape:window-x="0"
inkscape:window-y="28"
width="400px"
height="300px"
inkscape:snap-nodes="true"
inkscape:snap-bbox="true"
gridtolerance="10000"
inkscape:object-nodes="true"
inkscape:snap-grids="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-maximized="1"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
objecttolerance="10000"
guidetolerance="10000"
borderlayer="true"
showborder="true"
guidecolor="#ff0b00"
guideopacity="1"
guidehicolor="#001aff"
guidehiopacity="0.49803922">
<inkscape:grid
type="xygrid"
id="grid3123"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
position="12,12"
orientation="1,0"
id="guide4135"
inkscape:locked="false" />
</sodipodi:namedview>
<defs
id="defs3">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4140" />
</linearGradient>
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:source />
<cc:license
rdf:resource="" />
<dc:title></dc:title>
<dc:subject>
<rdf:Bag />
</dc:subject>
<dc:date />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:relation />
<dc:language />
<dc:coverage />
<dc:description />
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
inkscape:groupmode="layer"
inkscape:label="Base"
id="layer1"
transform="translate(0,-276)">
<path
inkscape:connector-curvature="0"
style="fill:#383838;fill-opacity:1;fill-rule:evenodd;stroke-width:2.83470154"
d="m 3.0000002,278.99999 v 5.34239 h 0.00285 L 3.0000002,286 h 5.0003151 v -2 h 6.9987397 v -4.98513 H 3.0000002 m 12.9996858,-0.0106 v 17.99575 H 21 V 279.00427 M 8.9990547,285 8.9981107,297.00002 H 14.999056 L 15,285 m -11.9971648,2 v 10.00002 H 8.0031494 V 287"
id="path19"
sodipodi:nodetypes="ccccccccccccccccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -0,0 +1,80 @@
<?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="24"
height="24"
viewBox="0 0 22.5 22.5"
id="svg4366"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="activities-normal.svg">
<defs
id="defs4368" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="11.256241"
inkscape:cy="11.964962"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1366"
inkscape:window-height="710"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1" />
<metadata
id="metadata4371">
<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"
transform="translate(0,-1029.8622)">
<g
id="g4494"
transform="translate(0,1.7382813e-5)">
<circle
r="1.875"
cy="1041.1122"
cx="3.75"
id="circle4787"
style="opacity:1;fill:#383838;fill-opacity:1;stroke:none;stroke-width:0.9375;stroke-opacity:1" />
<circle
r="1.875"
style="opacity:1;fill:#383838;fill-opacity:1;stroke:none;stroke-width:0.9375;stroke-opacity:1"
id="circle4789"
cx="11.25"
cy="1041.1122" />
<circle
r="1.875"
cy="1041.1122"
cx="18.75"
id="circle4791"
style="opacity:1;fill:#383838;fill-opacity:1;stroke:none;stroke-width:0.9375;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,153 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
width="24"
height="24"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="activities-ubuntu.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline;enable-background:new">
<sodipodi:namedview
stroke="#ef2929"
fill="#f57900"
id="base"
pagecolor="#bebebe"
bordercolor="#525252"
borderopacity="1"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-0.995913"
inkscape:cy="5.92008"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="true"
inkscape:window-width="1366"
inkscape:window-height="710"
inkscape:window-x="0"
inkscape:window-y="28"
width="400px"
height="300px"
inkscape:snap-nodes="true"
inkscape:snap-bbox="true"
gridtolerance="10000"
inkscape:object-nodes="true"
inkscape:snap-grids="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-maximized="1"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
objecttolerance="10000"
guidetolerance="10000"
borderlayer="true"
showborder="true"
guidecolor="#ff0b00"
guideopacity="1"
guidehicolor="#001aff"
guidehiopacity="0.49803922">
<inkscape:grid
type="xygrid"
id="grid3123"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
position="12,12"
orientation="1,0"
id="guide4135"
inkscape:locked="false" />
</sodipodi:namedview>
<defs
id="defs3">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4140" />
</linearGradient>
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:source />
<cc:license
rdf:resource="" />
<dc:title></dc:title>
<dc:subject>
<rdf:Bag />
</dc:subject>
<dc:date />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:relation />
<dc:language />
<dc:coverage />
<dc:description />
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
inkscape:groupmode="layer"
inkscape:label="Base"
id="layer1"
transform="translate(0,-276)">
<path
inkscape:connector-curvature="0"
style="fill:#383838;fill-opacity:1;stroke-width:3.77960205"
d="m 12,279 a 9,9 0 1 0 0,18 9,9 0 0 0 0,-18 z m 3.207984,2.50857 a 1.1990079,1.1990079 0 0 1 0.892878,1.79213 1.2011338,1.2011338 0 1 1 -0.892878,-1.79213 z m -3.21011,1.27128 c 0.484706,0 0.952404,0.0659 1.396717,0.18921 a 1.6858392,1.6858392 0 0 0 2.259832,1.30955 c 0.888627,0.87375 1.466871,2.06213 1.551907,3.38657 l -1.711349,0.0234 a 3.5098618,3.5098618 0 0 0 -4.974608,-2.86996 L 9.684894,283.31985 A 5.2020787,5.2020787 0 0 1 12,282.77988 Z m -2.895476,0.87588 0.880123,1.47324 a 3.50561,3.50561 0 0 0 0,5.74206 l -0.880123,1.47112 a 5.2254636,5.2254636 0 0 1 -2.155664,-3.03365 1.6815874,1.6815874 0 0 0 0,-2.61699 5.2297154,5.2297154 0 0 1 2.155664,-3.03578 z m -3.222866,3.14208 a 1.2021968,1.2021968 0 1 1 0,2.40439 1.201135,1.201135 0 0 1 0,-2.40227 z m 9.615449,1.51151 1.711349,0.0276 a 5.2042046,5.2042046 0 0 1 -1.551907,3.38443 1.6794615,1.6794615 0 0 0 -2.259832,1.30743 5.21696,5.21696 0 0 1 -3.709697,-0.34865 l 0.835479,-1.49664 a 3.5077359,3.5077359 0 0 0 4.974608,-2.87421 z m -0.584623,3.79686 a 1.2037273,1.2037273 0 1 1 0.293374,2.38951 1.2037273,1.2037273 0 0 1 -0.293374,-2.38951 z"
id="path14" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg5556"
version="1.1"
viewBox="0 0 6.3499999 6.3500002"
height="24"
width="24"
sodipodi:docname="activities-void.svg"
inkscape:version="">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview8"
showgrid="false"
inkscape:zoom="9.8333333"
inkscape:cx="12"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg5556" />
<defs
id="defs5550" />
<metadata
id="metadata5553">
<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
transform="translate(0,-290.64998)"
id="layer1"
style="fill:#383838">
<g
transform="matrix(0.02262785,0,0,0.02262785,0.27826107,291.44373)"
id="g5457"
style="fill:#383838">
<path
id="path5443"
transform="translate(-178.44539,-506.5705)"
d="m 306.46289,506.57031 c -22.03188,0.0468 -43.49376,7.00749 -61.35937,19.90039 l 23.90234,23.90235 c 11.27745,-6.8986 24.23694,-10.55955 37.45703,-10.58203 39.77241,-8e-5 72.01375,32.24125 72.01367,72.01367 -0.0318,13.21538 -3.69961,26.16761 -10.60156,37.4375 l 23.94727,23.94922 c 12.8888,-17.87595 19.84123,-39.3488 19.875,-61.38672 0,-58.11963 -47.11476,-105.23438 -105.23438,-105.23438 z m -85.36133,43.84961 c -12.88881,17.87594 -19.84123,39.34684 -19.875,61.38477 0,58.11962 47.1167,105.23633 105.23633,105.23633 22.03188,-0.0468 43.4918,-7.00749 61.35742,-19.9004 l -23.90234,-23.90234 c -11.27745,6.89859 -24.235,10.55956 -37.45508,10.58203 -39.77242,8e-5 -72.0157,-32.24321 -72.01562,-72.01562 0.0318,-13.21538 3.6996,-26.16566 10.60156,-37.43555 z m 85.34375,27.88281 a 33.503357,33.503357 0 0 0 -33.5039,33.50196 33.503357,33.503357 0 0 0 33.5039,33.5039 33.503357,33.503357 0 0 0 33.50391,-33.5039 33.503357,33.503357 0 0 0 -33.50391,-33.50196 z"
style="fill:#383838" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,153 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
width="24"
height="24"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="activities-active.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
style="display:inline;enable-background:new">
<sodipodi:namedview
stroke="#ef2929"
fill="#f57900"
id="base"
pagecolor="#bebebe"
bordercolor="#525252"
borderopacity="1"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="19.066587"
inkscape:cy="5.92008"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="true"
inkscape:window-width="1600"
inkscape:window-height="848"
inkscape:window-x="0"
inkscape:window-y="25"
width="400px"
height="300px"
inkscape:snap-nodes="true"
inkscape:snap-bbox="true"
gridtolerance="10000"
inkscape:object-nodes="true"
inkscape:snap-grids="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-maximized="1"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="false"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-bbox-midpoints="false"
objecttolerance="10000"
guidetolerance="10000"
borderlayer="true"
showborder="true"
guidecolor="#ff0b00"
guideopacity="1"
guidehicolor="#001aff"
guidehiopacity="0.49803922">
<inkscape:grid
type="xygrid"
id="grid3123"
empspacing="4"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
position="12,12"
orientation="1,0"
id="guide4135"
inkscape:locked="false" />
</sodipodi:namedview>
<defs
id="defs3">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4140" />
</linearGradient>
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:source />
<cc:license
rdf:resource="" />
<dc:title />
<dc:subject>
<rdf:Bag />
</dc:subject>
<dc:date />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:relation />
<dc:language />
<dc:coverage />
<dc:description />
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
inkscape:groupmode="layer"
inkscape:label="Base"
id="layer1"
transform="translate(0,-276)">
<path
d="m 14.650304,281.88776 c 0.620878,-0.77302 1.041834,-1.82329 0.92569,-2.88776 -0.894246,0.0375 -2.008404,0.62113 -2.653878,1.37165 -0.570167,0.66588 -1.076685,1.75428 -0.945499,2.78022 1.003541,0.0749 2.031336,-0.5078 2.673646,-1.26403 z m 2.262563,6.68786 c -0.02145,-2.2764 1.862638,-3.38167 1.947958,-3.43437 -1.065909,-1.55571 -2.718649,-1.76653 -3.301395,-1.78574 -1.388986,-0.14152 -2.73355,0.83455 -3.442114,0.83455 -0.721121,-1e-4 -1.810143,-0.81766 -2.9830046,-0.79441 -1.5117804,0.0226 -2.9274451,0.89797 -3.7024427,2.25353 -1.5954995,2.7706 -0.4060754,6.83989 1.1263547,9.07398 0.7676472,1.09975 1.6618734,2.32383 2.8347546,2.27546 1.147124,-0.0436 1.57477,-0.72834 2.961253,-0.72834 1.371964,0 1.773853,0.72834 2.970827,0.70491 1.231826,-0.0202 2.006542,-1.10173 2.747592,-2.20603 0.882569,-1.25975 1.238934,-2.49475 1.253154,-2.56053 -0.02746,-0.0102 -2.387701,-0.9078 -2.412937,-3.63301 z"
style="display:inline;fill:#383838;fill-opacity:1;fill-rule:evenodd;stroke-width:0.20028363;enable-background:new"
id="path121"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -1458,7 +1458,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
spacing: 1em;
padding: 16px;
color: white;
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
}
.osd-window {
@ -1470,7 +1470,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
min-height: 64px;
color: white;
border-radius: 0;
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
border: none;
border-image: url("assets/menu.svg") 15 15 15 15;
}
@ -2061,16 +2061,16 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
.workspace-graph .workspace .windows {
-active-window-background: rgba(38, 38, 38, 0.15);
-active-window-background: rgba(38, 38, 38, 0.16);
-active-window-border: rgba(0, 0, 0, 0.8);
-inactive-window-background: rgba(38, 38, 38, 0.15);
-inactive-window-background: rgba(38, 38, 38, 0.16);
-inactive-window-border: rgba(0, 0, 0, 0.8);
}
.workspace-graph .workspace:active .windows {
-active-window-background: rgba(51, 51, 51, 0.15);
-active-window-background: rgba(51, 51, 51, 0.16);
-active-window-border: rgba(0, 0, 0, 0.8);
-inactive-window-background: rgba(13, 13, 13, 0.15);
-inactive-window-background: rgba(13, 13, 13, 0.16);
-inactive-window-border: rgba(0, 0, 0, 0.8);
}

View file

@ -1442,7 +1442,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
spacing: 1em;
padding: 16px;
color: white;
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
}
.osd-window {
@ -1454,7 +1454,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
min-height: 64px;
color: white;
border-radius: 0;
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
border: none;
border-image: url("assets/menu.svg") 15 15 15 15;
}
@ -2045,16 +2045,16 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
.workspace-graph .workspace .windows {
-active-window-background: rgba(255, 255, 255, 0.15);
-active-window-background: rgba(255, 255, 255, 0.16);
-active-window-border: rgba(0, 0, 0, 0.8);
-inactive-window-background: rgba(255, 255, 255, 0.15);
-inactive-window-background: rgba(255, 255, 255, 0.16);
-inactive-window-border: rgba(0, 0, 0, 0.8);
}
.workspace-graph .workspace:active .windows {
-active-window-background: rgba(255, 255, 255, 0.15);
-active-window-background: rgba(255, 255, 255, 0.16);
-active-window-border: rgba(0, 0, 0, 0.8);
-inactive-window-background: rgba(255, 255, 255, 0.15);
-inactive-window-background: rgba(255, 255, 255, 0.16);
-inactive-window-border: rgba(0, 0, 0, 0.8);
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,10 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/gnome-shell/drawing';
@import '../../sass/gnome-shell/common';
@import '../../sass/gnome-shell/extensions';

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,10 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/gnome-shell/drawing';
@import '../../sass/gnome-shell/common';
@import '../../sass/gnome-shell/extensions';

View file

@ -1252,7 +1252,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
/* TOP BAR */
#panel {
background-color: rgba(0, 0, 0, 0.15);
background-color: #2a2a2a;
/* transition from solid to transparent */
transition-duration: 250ms;
font-weight: bold;
@ -1261,7 +1261,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen {
background-color: rgba(0, 0, 0, 0.15);
background-color: #2a2a2a;
}
#panel #panelLeft, #panel #panelCenter {
@ -1270,13 +1270,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel .panel-corner {
-panel-corner-radius: 0;
-panel-corner-background-color: rgba(0, 0, 0, 0.15);
-panel-corner-background-color: #2a2a2a;
-panel-corner-border-width: 2px;
-panel-corner-border-color: transparent;
}
#panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus {
-panel-corner-border-color: white;
-panel-corner-border-color: #dadada;
}
#panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen {
@ -1293,7 +1293,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
-natural-hpadding: 8px;
-minimum-hpadding: 8px;
font-weight: bold;
color: white;
color: #dadada;
transition-duration: 150ms;
border-radius: 6px;
}
@ -1336,13 +1336,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel .panel-button:hover {
color: white;
color: #dadada;
background-color: rgba(255, 255, 255, 0.15);
}
#panel .panel-button:active, #panel .panel-button:active:hover, #panel .panel-button:overview, #panel .panel-button:overview:hover, #panel .panel-button:focus, #panel .panel-button:focus:hover, #panel .panel-button:checked, #panel .panel-button:checked:hover {
background-color: rgba(255, 255, 255, 0.3);
color: white;
color: #dadada;
box-shadow: none;
}
@ -1352,11 +1352,11 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
.unlock-screen #panel .panel-button, .login-screen #panel .panel-button, .lock-screen #panel .panel-button {
color: white;
color: #dadada;
}
.unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, .login-screen #panel .panel-button:focus, .login-screen #panel .panel-button:hover, .login-screen #panel .panel-button:active, .lock-screen #panel .panel-button:focus, .lock-screen #panel .panel-button:hover, .lock-screen #panel .panel-button:active {
color: white;
color: #dadada;
}
#panel .panel-button.clock-display:active .clock, #panel .panel-button.clock-display:overview .clock, #panel .panel-button.clock-display:focus .clock, #panel .panel-button.clock-display:checked .clock {
@ -1428,6 +1428,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel #panelActivities.panel-button > * {
background-image: url("assets/activities.svg");
background-position: center top;
background-size: 18px 18px;
width: 24px;
height: 24px;
background-color: transparent !important;

View file

@ -1,6 +1,7 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'false';
$black: 'false';
@import '../../sass/colors';
@import '../../sass/variables';

View file

@ -1252,7 +1252,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
/* TOP BAR */
#panel {
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
/* transition from solid to transparent */
transition-duration: 250ms;
font-weight: bold;
@ -1261,7 +1261,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen {
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
}
#panel #panelLeft, #panel #panelCenter {
@ -1270,7 +1270,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel .panel-corner {
-panel-corner-radius: 0;
-panel-corner-background-color: rgba(0, 0, 0, 0.15);
-panel-corner-background-color: rgba(0, 0, 0, 0.16);
-panel-corner-border-width: 2px;
-panel-corner-border-color: transparent;
}
@ -1382,7 +1382,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel.solid {
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
/* transition from transparent to solid */
transition-duration: 250ms;
background-gradient-direction: none;
@ -1394,7 +1394,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel.solid .panel-corner {
-panel-corner-background-color: rgba(0, 0, 0, 0.15);
-panel-corner-background-color: rgba(0, 0, 0, 0.16);
}
#panel.solid .panel-button {
@ -1428,6 +1428,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel #panelActivities.panel-button > * {
background-image: url("assets/activities.svg");
background-position: center top;
background-size: 18px 18px;
width: 24px;
height: 24px;
background-color: transparent !important;

View file

@ -1,6 +1,7 @@
$variant: 'dark';
$laptop: 'true';
$trans: 'true';
$black: 'false';
@import '../../sass/colors';
@import '../../sass/variables';

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,10 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'true';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/gnome-shell/drawing';
@import '../../sass/gnome-shell/common';
@import '../../sass/gnome-shell/extensions';

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,10 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
@import '../../sass/colors';
@import '../../sass/variables';
@import '../../sass/gnome-shell/drawing';
@import '../../sass/gnome-shell/common';
@import '../../sass/gnome-shell/extensions';

View file

@ -777,7 +777,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
.audio-selection-device:hover, .audio-selection-device:focus {
background-color: rgba(0, 0, 0, 0.16);
background-color: rgba(0, 0, 0, 0.35);
}
.audio-selection-device:active {
@ -1252,7 +1252,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
/* TOP BAR */
#panel {
background-color: rgba(255, 255, 255, 0.15);
background-color: #f1f1f1;
/* transition from solid to transparent */
transition-duration: 250ms;
font-weight: bold;
@ -1261,7 +1261,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen {
background-color: rgba(255, 255, 255, 0.15);
background-color: #f1f1f1;
}
#panel #panelLeft, #panel #panelCenter {
@ -1270,13 +1270,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel .panel-corner {
-panel-corner-radius: 0;
-panel-corner-background-color: rgba(255, 255, 255, 0.15);
-panel-corner-background-color: #f1f1f1;
-panel-corner-border-width: 2px;
-panel-corner-border-color: transparent;
}
#panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus {
-panel-corner-border-color: white;
-panel-corner-border-color: #363636;
}
#panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen {
@ -1293,7 +1293,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
-natural-hpadding: 8px;
-minimum-hpadding: 8px;
font-weight: bold;
color: white;
color: #363636;
transition-duration: 150ms;
border-radius: 6px;
}
@ -1336,13 +1336,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel .panel-button:hover {
color: white;
color: #363636;
background-color: rgba(255, 255, 255, 0.15);
}
#panel .panel-button:active, #panel .panel-button:active:hover, #panel .panel-button:overview, #panel .panel-button:overview:hover, #panel .panel-button:focus, #panel .panel-button:focus:hover, #panel .panel-button:checked, #panel .panel-button:checked:hover {
background-color: rgba(255, 255, 255, 0.3);
color: white;
color: #363636;
box-shadow: none;
}
@ -1352,11 +1352,11 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
.unlock-screen #panel .panel-button, .login-screen #panel .panel-button, .lock-screen #panel .panel-button {
color: white;
color: #363636;
}
.unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, .login-screen #panel .panel-button:focus, .login-screen #panel .panel-button:hover, .login-screen #panel .panel-button:active, .lock-screen #panel .panel-button:focus, .lock-screen #panel .panel-button:hover, .lock-screen #panel .panel-button:active {
color: white;
color: #363636;
}
#panel .panel-button.clock-display:active .clock, #panel .panel-button.clock-display:overview .clock, #panel .panel-button.clock-display:focus .clock, #panel .panel-button.clock-display:checked .clock {
@ -1428,6 +1428,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel #panelActivities.panel-button > * {
background-image: url("assets/activities.svg");
background-position: center top;
background-size: 18px 18px;
width: 24px;
height: 24px;
background-color: transparent !important;

View file

@ -1,6 +1,7 @@
$variant: 'light';
$laptop: 'true';
$trans: 'false';
$black: 'true';
@import '../../sass/colors';
@import '../../sass/variables';

View file

@ -777,7 +777,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
.audio-selection-device:hover, .audio-selection-device:focus {
background-color: rgba(0, 0, 0, 0.16);
background-color: rgba(0, 0, 0, 0.35);
}
.audio-selection-device:active {
@ -1252,7 +1252,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
/* TOP BAR */
#panel {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
/* transition from solid to transparent */
transition-duration: 250ms;
font-weight: bold;
@ -1261,7 +1261,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
}
#panel #panelLeft, #panel #panelCenter {
@ -1270,7 +1270,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel .panel-corner {
-panel-corner-radius: 0;
-panel-corner-background-color: rgba(255, 255, 255, 0.15);
-panel-corner-background-color: rgba(255, 255, 255, 0.16);
-panel-corner-border-width: 2px;
-panel-corner-border-color: transparent;
}
@ -1382,7 +1382,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel.solid {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
/* transition from transparent to solid */
transition-duration: 250ms;
background-gradient-direction: none;
@ -1394,7 +1394,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}
#panel.solid .panel-corner {
-panel-corner-background-color: rgba(255, 255, 255, 0.15);
-panel-corner-background-color: rgba(255, 255, 255, 0.16);
}
#panel.solid .panel-button {
@ -1428,6 +1428,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
#panel #panelActivities.panel-button > * {
background-image: url("assets/activities.svg");
background-position: center top;
background-size: 18px 18px;
width: 24px;
height: 24px;
background-color: transparent !important;

View file

@ -1,6 +1,7 @@
$variant: 'light';
$laptop: 'true';
$trans: 'true';
$black: 'false';
@import '../../sass/colors';
@import '../../sass/variables';

View file

@ -6654,12 +6654,12 @@ panel-toplevel.background #tasklist-button image {
.mate-panel-menu-bar .wnck-pager,
panel-toplevel.background .wnck-pager {
color: gray;
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
}
.mate-panel-menu-bar .wnck-pager:hover,
panel-toplevel.background .wnck-pager:hover {
background-color: rgba(13, 13, 13, 0.15);
background-color: rgba(13, 13, 13, 0.16);
}
.mate-panel-menu-bar .wnck-pager:selected,
@ -6773,7 +6773,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
}
.xfce4-panel.panel {
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
text-shadow: none;
-gtk-icon-shadow: none;
border: none;
@ -6786,7 +6786,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
}
.xfce4-panel {
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
color: white;
font-weight: 700;
text-shadow: none;
@ -7576,7 +7576,7 @@ menubar.-vala-panel-background > menuitem:disabled {
}
.menubar.panel .panel.maximized {
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
background-image: none;
border: none;
}
@ -7735,7 +7735,7 @@ menubar.-vala-panel-background > menuitem:disabled {
.composited-indicator .keyboard {
background-color: white;
border-radius: 2px;
color: rgba(0, 0, 0, 0.15);
color: rgba(0, 0, 0, 0.16);
padding: 0 3px;
font-weight: normal;
box-shadow: none;
@ -8366,10 +8366,10 @@ GtkListBox .h4 {
}
#panel_window {
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
color: white;
font-weight: bold;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.16);
}
#panel_window menubar {
@ -9021,7 +9021,7 @@ popover.background.places-menu row {
.budgie-panel {
transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
background-color: rgba(0, 0, 0, 0.15);
background-color: rgba(0, 0, 0, 0.16);
color: white;
font-weight: 500;
box-shadow: none;
@ -10071,7 +10071,7 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
@define-color titlebar_gradient_b #373737;
@define-color budgie_tasklist_indicator_color #0860f2;
@define-color budgie_tasklist_indicator_color_active #0860f2;
@define-color budgie_tasklist_indicator_color_active_window rgba(7, 90, 226, 0.609);
@define-color budgie_tasklist_indicator_color_active_window rgba(7, 89, 225, 0.6136);
@define-color budgie_tasklist_indicator_color_attention #F27835;
@define-color STRAWBERRY_100 #FF9262;
@define-color STRAWBERRY_300 #FF793E;

View file

@ -6670,12 +6670,12 @@ panel-toplevel.background #tasklist-button image {
.mate-panel-menu-bar .wnck-pager,
panel-toplevel.background .wnck-pager {
color: gray;
background-color: rgba(230, 230, 230, 0.15);
background-color: rgba(230, 230, 230, 0.16);
}
.mate-panel-menu-bar .wnck-pager:hover,
panel-toplevel.background .wnck-pager:hover {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
}
.mate-panel-menu-bar .wnck-pager:selected,
@ -6789,7 +6789,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
}
.xfce4-panel.panel {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
text-shadow: none;
-gtk-icon-shadow: none;
border: none;
@ -6802,7 +6802,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
}
.xfce4-panel {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
color: white;
font-weight: 700;
text-shadow: none;
@ -7603,7 +7603,7 @@ menubar.-vala-panel-background > menuitem:disabled {
}
.menubar.panel .panel.maximized {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
background-image: none;
border: none;
}
@ -7763,7 +7763,7 @@ menubar.-vala-panel-background > menuitem:disabled {
.composited-indicator .keyboard {
background-color: white;
border-radius: 2px;
color: rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.16);
padding: 0 3px;
font-weight: normal;
box-shadow: none;
@ -8397,10 +8397,10 @@ GtkListBox .h4 {
}
#panel_window {
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
color: white;
font-weight: bold;
box-shadow: inset 0 -1px rgba(237, 237, 237, 0.15);
box-shadow: inset 0 -1px rgba(237, 237, 237, 0.16);
}
#panel_window menubar {
@ -9059,7 +9059,7 @@ popover.background.places-menu row {
.budgie-panel {
transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
background-color: rgba(255, 255, 255, 0.15);
background-color: rgba(255, 255, 255, 0.16);
color: white;
font-weight: 500;
box-shadow: none;
@ -10108,7 +10108,7 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
@define-color titlebar_gradient_b #ffffff;
@define-color budgie_tasklist_indicator_color #0860f2;
@define-color budgie_tasklist_indicator_color_active #0860f2;
@define-color budgie_tasklist_indicator_color_active_window rgba(24, 106, 243, 0.609);
@define-color budgie_tasklist_indicator_color_active_window rgba(25, 107, 243, 0.6136);
@define-color budgie_tasklist_indicator_color_attention #F27835;
@define-color STRAWBERRY_100 #FF9262;
@define-color STRAWBERRY_300 #FF793E;

View file

@ -14,7 +14,7 @@ $alt_fg_color: if($variant == 'light', #424242, #afafaf);
$hint_fg_color: if($variant == 'light', #565656, #999999);
$track_color: if($variant == 'light', rgba(black, 0.20), rgba(white, 0.10));
$visit_color: if($variant == 'light', rgba(black, 0.16), rgba(white, 0.08));
$visit_color: if($variant == 'light', rgba(black, 0.35), rgba(white, 0.08));
$divider_color: if($variant == 'light', rgba(black, 0.12), rgba(white, 0.06));
$light_fg_color: white;
@ -115,21 +115,19 @@ $menu_bd: if($variant == 'light', rgba(black, 0.05), r
}
// Panel colors
$panel_opacity: 0.16;
$panel_bg: if($variant == 'light', #f1f1f1, #2a2a2a);
@if $trans == 'true' {
$panel_bg: if($variant == 'light', rgba(white, 0.15), rgba(black, 0.15));
$panel_bg: if($variant == 'light', rgba(white, $panel_opacity), rgba(black, $panel_opacity));
}
$panel_fg: $text_color;
@if $trans == 'true' {
$panel_fg: white;
}
$panel_fg: if($trans == 'true', white, $text_color);
$panel_top_color: if($variant == 'dark', #333333, #f5f5f5);
$panel_bottom_color: if($variant == 'dark', #2a2a2a, #e2e2e2);
$panel_border_color: if($variant =='light', rgba(white, 0.22), rgba(black, 0.22));
$panel_border_color: if($variant == 'light', rgba(white, 0.22), rgba(black, 0.22));
// Entry colors
$entry_bg: if($variant == 'light', rgba(black, 0.05), rgba(white, 0.05));

View file

@ -19,7 +19,7 @@ $lower_opacity: 0.3;
$secondary_opacity: 0.75;
$hint_opacity: 0.6;
$disabled_opacity: 0.5;
$disabled_opacity: 0.45;
// sizes
$small_size: if($laptop == 'false', 24px, 20px);

View file

@ -1070,13 +1070,13 @@ $popop_menuitem_radius: $wm_radius - 4px;
}
/* TOP BAR */
$panel_bg_color: if($variant == 'light', rgba(white, 0.15), rgba(black, 0.15));
$panel_fg_color: white;
$panel_shadow: 0 2px 3px rgba(black, 0.03), 0 3px 5px rgba(black, 0.03), 0 5px 10px rgba(black, 0.02);
$panel_asset_shadow: 0 1px 3px 3px rgba(black, 0.15);
@if $black == 'true' { $panel_fg: $text_color; }
#panel {
background-color: $panel_bg_color;
background-color: $panel_bg;
/* transition from solid to transparent */
transition-duration: 250ms;
font-weight: bold;
@ -1087,7 +1087,7 @@ $panel_asset_shadow: 0 1px 3px 3px rgba(black, 0.15);
&.unlock-screen,
&.login-screen,
&.lock-screen {
background-color: $panel_bg_color;
background-color: $panel_bg;
}
#panelLeft, #panelCenter { // spacing between activities<>app menu and such
@ -1096,12 +1096,12 @@ $panel_asset_shadow: 0 1px 3px 3px rgba(black, 0.15);
.panel-corner {
-panel-corner-radius: $panel-corner-radius;
-panel-corner-background-color: $panel_bg_color;
-panel-corner-background-color: $panel_bg;
-panel-corner-border-width: 2px;
-panel-corner-border-color: transparent;
&:active, &:overview, &:focus {
-panel-corner-border-color: $panel_fg_color;
-panel-corner-border-color: $panel_fg;
}
&.lock-screen, &.login-screen, &.unlock-screen {
@ -1117,7 +1117,7 @@ $panel_asset_shadow: 0 1px 3px 3px rgba(black, 0.15);
-natural-hpadding: 8px;
-minimum-hpadding: 8px;
font-weight: bold;
color: $panel_fg_color;
color: $panel_fg;
transition-duration: $longer_duration;
border-radius: $bt_radius;
// margin-top: 2px;
@ -1147,14 +1147,14 @@ $panel_asset_shadow: 0 1px 3px 3px rgba(black, 0.15);
.popup-menu-arrow { width: 0; height: 0; } // Remove arrow on panel button
&:hover {
color: $panel_fg_color;
color: $panel_fg;
background-color: $light_divider_color;
}
&:active, &:overview, &:focus, &:checked {
&, &:hover {
background-color: $light_track_color;
color: $panel_fg_color;
color: $panel_fg;
box-shadow: none;
}
}
@ -1163,8 +1163,8 @@ $panel_asset_shadow: 0 1px 3px 3px rgba(black, 0.15);
.unlock-screen &,
.login-screen &,
.lock-screen & {
color: $panel_fg_color;
&:focus, &:hover, &:active { color: $panel_fg_color; }
color: $panel_fg;
&:focus, &:hover, &:active { color: $panel_fg; }
}
}
@ -1227,10 +1227,10 @@ $panel_asset_shadow: 0 1px 3px 3px rgba(black, 0.15);
// Activities button
#panel #panelActivities.panel-button {
> * {
background-image: url("assets/activities.svg");
background-position: center top;
background-size: 18px 18px;
width: 24px;
height: 24px;
background-color: transparent !important;