From d404c8b6b94d973334a1136223fbf5c412083bdb Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 10 Feb 2025 01:16:17 +0900 Subject: Initial upload of various rofi themes --- config/hypr/UserConfigs/UserKeybinds.conf | 2 + config/hypr/UserScripts/QuickEdit.sh | 3 +- config/hypr/UserScripts/RofiBeats.sh | 12 +- config/hypr/UserScripts/RofiCalc.sh | 6 +- config/hypr/UserScripts/WallpaperEffects.sh | 15 +- config/hypr/UserScripts/WallpaperSelect.sh | 3 +- config/hypr/UserScripts/ZshChangeTheme.sh | 6 +- config/hypr/scripts/Animations.sh | 12 +- config/hypr/scripts/ClipManager.sh | 5 +- config/hypr/scripts/KeyBinds.sh | 3 +- config/hypr/scripts/RofiEmoji.sh | 5 +- config/hypr/scripts/RofiSearch.sh | 5 +- config/hypr/scripts/RofiThemeSelector.sh | 75 ++++++++ config/hypr/v2.3.10 | 5 - config/hypr/v2.3.11 | 5 + config/rofi/config-Animations.rasi | 32 +++- config/rofi/config-calc.rasi | 22 ++- config/rofi/config-clipboard.rasi | 34 +++- config/rofi/config-compact.rasi | 43 ----- config/rofi/config-edit.rasi | 49 +++++ config/rofi/config-emoji.rasi | 26 ++- config/rofi/config-keybinds.rasi | 28 ++- config/rofi/config-rofi-Beats-menu.rasi | 21 ++- config/rofi/config-rofi-Beats.rasi | 27 ++- config/rofi/config-rofi-theme.rasi | 43 +++++ config/rofi/config-search.rasi | 21 +-- config/rofi/config-wallpaper-effect.rasi | 27 ++- config/rofi/config-wallpaper.rasi | 21 +-- config/rofi/config-waybar-layout.rasi | 36 +++- config/rofi/config-waybar-style.rasi | 34 +++- config/rofi/config-zsh-theme.rasi | 26 ++- config/rofi/config.rasi | 37 ++-- config/rofi/master-config.rasi | 237 ------------------------ config/rofi/resolution/1080p/config.rasi | 31 ---- config/rofi/resolution/1080p/master-config.rasi | 237 ------------------------ config/rofi/resolution/1440p/config.rasi | 37 ---- config/rofi/resolution/1440p/master-config.rasi | 237 ------------------------ config/rofi/wallust/colors-rofi.rasi | 67 ++++--- 38 files changed, 544 insertions(+), 991 deletions(-) create mode 100755 config/hypr/scripts/RofiThemeSelector.sh delete mode 100644 config/hypr/v2.3.10 create mode 100644 config/hypr/v2.3.11 delete mode 100644 config/rofi/config-compact.rasi create mode 100644 config/rofi/config-edit.rasi create mode 100644 config/rofi/config-rofi-theme.rasi mode change 100755 => 100644 config/rofi/config.rasi delete mode 100644 config/rofi/master-config.rasi delete mode 100755 config/rofi/resolution/1080p/config.rasi delete mode 100644 config/rofi/resolution/1080p/master-config.rasi delete mode 100755 config/rofi/resolution/1440p/config.rasi delete mode 100644 config/rofi/resolution/1440p/master-config.rasi (limited to 'config') diff --git a/config/hypr/UserConfigs/UserKeybinds.conf b/config/hypr/UserConfigs/UserKeybinds.conf index 3975f60f..ebcd2e6d 100644 --- a/config/hypr/UserConfigs/UserKeybinds.conf +++ b/config/hypr/UserConfigs/UserKeybinds.conf @@ -23,6 +23,8 @@ bind = $mainMod, A, exec, pkill rofi || true && ags -t 'overview' bind = $mainMod, Return, exec, $term #terminal bind = $mainMod, T, exec, $files #file manager +bind = $mainMod CTRL, R, exec, $scriptsDir/RofiThemeSelector.sh # modified Rofi Theme Selector + bind = $mainMod ALT, C, exec, $UserScripts/RofiCalc.sh # calculator (qalculate) # pyprland diff --git a/config/hypr/UserScripts/QuickEdit.sh b/config/hypr/UserScripts/QuickEdit.sh index e0af9dce..c71fb166 100755 --- a/config/hypr/UserScripts/QuickEdit.sh +++ b/config/hypr/UserScripts/QuickEdit.sh @@ -9,6 +9,7 @@ tty=kitty # Paths to configuration directories configs="$HOME/.config/hypr/configs" UserConfigs="$HOME/.config/hypr/UserConfigs" +rofi_theme="~/.config/rofi/config-edit.rasi" # Function to display the menu options menu() { @@ -29,7 +30,7 @@ EOF # Main function to handle menu selection main() { - choice=$(menu | rofi -i -dmenu -config ~/.config/rofi/config-compact.rasi | cut -d. -f1) + choice=$(menu | rofi -i -dmenu -config $rofi_theme | cut -d. -f1) # Map choices to corresponding files case $choice in diff --git a/config/hypr/UserScripts/RofiBeats.sh b/config/hypr/UserScripts/RofiBeats.sh index 380f6b29..58241256 100755 --- a/config/hypr/UserScripts/RofiBeats.sh +++ b/config/hypr/UserScripts/RofiBeats.sh @@ -2,11 +2,11 @@ # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## # For Rofi Beats to play online Music or Locally save media files -# Directory local music folder +# Variables mDIR="$HOME/Music/" - -# Directory for icons iDIR="$HOME/.config/swaync/icons" +rofi_theme="~/.config/rofi/config-rofi-Beats.rasi" +rofi_theme_1="~/.config/rofi/config-rofi-Beats-menu.rasi" # Online Stations. Edit as required declare -A online_music=( @@ -47,7 +47,7 @@ play_local_music() { populate_local_music # Prompt the user to select a song - choice=$(printf "%s\n" "${filenames[@]}" | rofi -i -dmenu -config ~/.config/rofi/config-rofi-Beats.rasi) + choice=$(printf "%s\n" "${filenames[@]}" | rofi -i -dmenu -config $rofi_theme) if [ -z "$choice" ]; then exit 1 @@ -77,7 +77,7 @@ shuffle_local_music() { # Main function for playing online music play_online_music() { - choice=$(printf "%s\n" "${!online_music[@]}" | rofi -i -dmenu -config ~/.config/rofi/config-rofi-Beats.rasi) + choice=$(printf "%s\n" "${!online_music[@]}" | rofi -i -dmenu -config $rofi_theme) if [ -z "$choice" ]; then exit 1 @@ -101,7 +101,7 @@ fi # Prompt the user to choose between local and online music -user_choice=$(printf "Play from Online Stations\nPlay from Music Folder\nShuffle Play from Music Folder" | rofi -dmenu -config ~/.config/rofi/config-rofi-Beats-menu.rasi) +user_choice=$(printf "Play from Online Stations\nPlay from Music Folder\nShuffle Play from Music Folder" | rofi -dmenu -config $rofi_theme_1) case "$user_choice" in "Play from Music Folder") diff --git a/config/hypr/UserScripts/RofiCalc.sh b/config/hypr/UserScripts/RofiCalc.sh index cef80b81..7bef4b6c 100755 --- a/config/hypr/UserScripts/RofiCalc.sh +++ b/config/hypr/UserScripts/RofiCalc.sh @@ -3,7 +3,7 @@ # /* Calculator (using qalculate) and rofi */ # /* Submitted by: https://github.com/JosephArmas */ -rofi_config="$HOME/.config/rofi/config-calc.rasi" +rofi_theme="$HOME/.config/rofi/config-calc.rasi" # Kill Rofi if already running before execution if pgrep -x "rofi" >/dev/null; then @@ -15,8 +15,8 @@ fi while true; do result=$( rofi -i -dmenu \ - -config "$rofi_config" \ - -mesg "$result = $calc_result" + -config $rofi_theme \ + -mesg "$result = $calc_result" ) if [ $? -ne 0 ]; then diff --git a/config/hypr/UserScripts/WallpaperEffects.sh b/config/hypr/UserScripts/WallpaperEffects.sh index 215fdf6f..2573f5e0 100755 --- a/config/hypr/UserScripts/WallpaperEffects.sh +++ b/config/hypr/UserScripts/WallpaperEffects.sh @@ -8,6 +8,7 @@ wallpaper_current="$HOME/.config/hypr/wallpaper_effects/.wallpaper_current" wallpaper_output="$HOME/.config/hypr/wallpaper_effects/.wallpaper_modified" SCRIPTSDIR="$HOME/.config/hypr/scripts" focused_monitor=$(hyprctl monitors | awk '/^Monitor/{name=$2} /focused: yes/{print name}') +rofi_theme="~/.config/rofi/config-wallpaper-effect.rasi" # Directory for swaync iDIR="$HOME/.config/swaync/images" @@ -45,9 +46,7 @@ declare -A effects=( # Function to apply no effects no-effects() { swww img -o "$focused_monitor" "$wallpaper_current" $SWWW_PARAMS && - # Wait for swww command to complete wait $! - # Run other commands after swww wallust run "$wallpaper_current" -s && wait $! # Refresh rofi, waybar, wallust palettes @@ -67,7 +66,7 @@ main() { [[ "$effect" != "No Effects" ]] && options+=("$effect") done - choice=$(printf "%s\n" "${options[@]}" | LC_COLLATE=C sort | rofi -dmenu -i -config ~/.config/rofi/config-wallpaper-effect.rasi) + choice=$(printf "%s\n" "${options[@]}" | LC_COLLATE=C sort | rofi -dmenu -i -config $rofi_theme) # Process user choice if [[ -n "$choice" ]]; then @@ -77,16 +76,14 @@ main() { # Apply selected effect notify-send -u normal -i "$iDIR/ja.png" "Applying:" "$choice effects" eval "${effects[$choice]}" - # Wait for effects to be applied + sleep 1 - # Execute swww command after image conversion swww img -o "$focused_monitor" "$wallpaper_output" $SWWW_PARAMS & - # Wait for swww command to complete + sleep 2 - # Wait for other commands to finish + wallust run "$wallpaper_output" -s & - # Wait for other commands to finish - sleep 0.5 + sleep 1 # Refresh rofi, waybar, wallust palettes "${SCRIPTSDIR}/Refresh.sh" notify-send -u low -i "$iDIR/ja.png" "$choice" "effects applied" diff --git a/config/hypr/UserScripts/WallpaperSelect.sh b/config/hypr/UserScripts/WallpaperSelect.sh index 19bb145d..61253cb3 100755 --- a/config/hypr/UserScripts/WallpaperSelect.sh +++ b/config/hypr/UserScripts/WallpaperSelect.sh @@ -13,6 +13,7 @@ iDIR="$HOME/.config/swaync/images" iDIRi="$HOME/.config/swaync/icons" # variables +rofi_theme="~/.config/rofi/config-wallpaper.rasi" focused_monitor=$(hyprctl monitors | awk '/^Monitor/{name=$2} /focused: yes/{print name}') # swww transition config FPS=60 @@ -33,7 +34,7 @@ RANDOM_PIC="${PICS[$((RANDOM % ${#PICS[@]}))]}" RANDOM_PIC_NAME=". random" # Rofi command -rofi_command="rofi -i -show -dmenu -config ~/.config/rofi/config-wallpaper.rasi" +rofi_command="rofi -i -show -dmenu -config $rofi_theme" # Sorting Wallpapers menu() { diff --git a/config/hypr/UserScripts/ZshChangeTheme.sh b/config/hypr/UserScripts/ZshChangeTheme.sh index edfc2ecd..d43b6ff9 100755 --- a/config/hypr/UserScripts/ZshChangeTheme.sh +++ b/config/hypr/UserScripts/ZshChangeTheme.sh @@ -8,15 +8,16 @@ themes_dir="$HOME/.oh-my-zsh/themes" file_extension=".zsh-theme" -# Directory for swaync +# Variables iDIR="$HOME/.config/swaync/images" +rofi_theme="~/.config/rofi/config-zsh-theme.rasi" themes_array=($(find "$themes_dir" -type f -name "*$file_extension" -exec basename {} \; | sed -e "s/$file_extension//")) # Add "Random" option to the beginning of the array themes_array=("Random" "${themes_array[@]}") -rofi_command="rofi -i -dmenu -config ~/.config/rofi/config-zsh-theme.rasi" +rofi_command="rofi -i -dmenu -config $rofi_theme" menu() { for theme in "${themes_array[@]}"; do @@ -29,7 +30,6 @@ main() { # if nothing selected, script won't change anything if [ -z "$choice" ]; then - notify-send -u low -i "$iDIR/ja.png" "No theme selected." "No changes made!" exit 0 fi diff --git a/config/hypr/scripts/Animations.sh b/config/hypr/scripts/Animations.sh index 7789cb05..b4d368e9 100755 --- a/config/hypr/scripts/Animations.sh +++ b/config/hypr/scripts/Animations.sh @@ -12,23 +12,19 @@ iDIR="$HOME/.config/swaync/images" SCRIPTSDIR="$HOME/.config/hypr/scripts" animations_dir="$HOME/.config/hypr/animations" UserConfigs="$HOME/.config/hypr/UserConfigs" +rofi_theme="~/.config/rofi/config-Animations.rasi" # list of animation files, sorted alphabetically with numbers first animations_list=$(find "$animations_dir" -maxdepth 1 -type f | sed 's/.*\///' | sed 's/\.conf$//' | sort -V) # Rofi Menu -chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config ~/.config/rofi/config-Animations.rasi) +chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config $rofi_theme) # Check if a file was selected if [[ -n "$chosen_file" ]]; then - # Find the full path of the chosen file - full_path="$animations_dir/$chosen_file.conf" - - cp "$full_path" "$UserConfigs/UserAnimations.conf" - + full_path="$animations_dir/$chosen_file.conf" + cp "$full_path" "$UserConfigs/UserAnimations.conf" notify-send -u low -i "$iDIR/ja.png" "$chosen_file" "Hyprland Animation Loaded" -else - notify-send -u low -i "$iDIR/ja.png" "You chose NOT" "to apply other Hyprland animations" fi sleep 1 diff --git a/config/hypr/scripts/ClipManager.sh b/config/hypr/scripts/ClipManager.sh index 13f90a9e..642adb82 100755 --- a/config/hypr/scripts/ClipManager.sh +++ b/config/hypr/scripts/ClipManager.sh @@ -2,6 +2,9 @@ # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## # Clipboard Manager. This script uses cliphist, rofi, and wl-copy. +# Variables +rofi_theme="~/.config/rofi/config-clipboard.rasi" + # Actions: # CTRL Del to delete an entry # ALT Del to wipe clipboard contents @@ -16,7 +19,7 @@ while true; do rofi -i -dmenu \ -kb-custom-1 "Control-Delete" \ -kb-custom-2 "Alt-Delete" \ - -config ~/.config/rofi/config-clipboard.rasi < <(cliphist list) + -config $rofi_theme < <(cliphist list) ) case "$?" in diff --git a/config/hypr/scripts/KeyBinds.sh b/config/hypr/scripts/KeyBinds.sh index 9e01a7c3..f80211f5 100755 --- a/config/hypr/scripts/KeyBinds.sh +++ b/config/hypr/scripts/KeyBinds.sh @@ -14,6 +14,7 @@ fi KEYBINDS_CONF="$HOME/.config/hypr/configs/Keybinds.conf" USER_KEYBINDS_CONF="$HOME/.config/hypr/UserConfigs/UserKeybinds.conf" LAPTOP_CONF="$HOME/.config/hypr/UserConfigs/Laptop.conf" +rofi_theme="~/.config/rofi/config-keybinds.rasi" # Combine the contents of the keybinds files and filter for keybinds KEYBINDS=$(cat "$KEYBINDS_CONF" "$USER_KEYBINDS_CONF" | grep -E '^(bind|bindl|binde|bindm)') @@ -31,4 +32,4 @@ if [[ -z "$KEYBINDS" ]]; then fi # Use rofi to display the keybinds -echo "$KEYBINDS" | rofi -dmenu -i -p "Keybinds" -config ~/.config/rofi/config-keybinds.rasi \ No newline at end of file +echo "$KEYBINDS" | rofi -dmenu -i -config $rofi_theme \ No newline at end of file diff --git a/config/hypr/scripts/RofiEmoji.sh b/config/hypr/scripts/RofiEmoji.sh index fa27a341..1079bfdd 100755 --- a/config/hypr/scripts/RofiEmoji.sh +++ b/config/hypr/scripts/RofiEmoji.sh @@ -2,13 +2,16 @@ # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## # Rofi Emoticons. Not my own. Cant remember the source +# Variables +rofi_theme="~/.config/rofi/config-emoji.rasi" + # Check if rofi is already running if pidof rofi > /dev/null; then pkill rofi fi sed '1,/^# # DATA # #$/d' "$0" | \ -rofi -i -dmenu -config ~/.config/rofi/config-emoji.rasi | \ +rofi -i -dmenu -config $rofi_theme | \ awk -F'\t' '{print $1}' | \ tr -d '\n' | \ wl-copy diff --git a/config/hypr/scripts/RofiSearch.sh b/config/hypr/scripts/RofiSearch.sh index faf07865..d9576a1a 100755 --- a/config/hypr/scripts/RofiSearch.sh +++ b/config/hypr/scripts/RofiSearch.sh @@ -4,7 +4,7 @@ # Opens rofi in dmenu mod and waits for input. Then pushes the input to the query of the URL. -rofi_config="$HOME/.config/rofi/config-search.rasi" +rofi_theme="$HOME/.config/rofi/config-search.rasi" # Kill Rofi if already running before execution if pgrep -x "rofi" >/dev/null; then @@ -13,5 +13,6 @@ if pgrep -x "rofi" >/dev/null; then fi # Open rofi with a dmenu and pass the selected item to xdg-open for Google search -echo "" | rofi -dmenu -config "$rofi_config" | xargs -I{} xdg-open "https://www.google.com/search?q={}" +#echo "" | rofi -dmenu -config "$rofi_config" | xargs -I{} xdg-open "https://www.google.com/search?q={}" +echo "" | rofi -dmenu -config $rofi_theme | xargs -I{} xdg-open "https://www.google.com/search?q={}" diff --git a/config/hypr/scripts/RofiThemeSelector.sh b/config/hypr/scripts/RofiThemeSelector.sh new file mode 100755 index 00000000..420316bd --- /dev/null +++ b/config/hypr/scripts/RofiThemeSelector.sh @@ -0,0 +1,75 @@ +#!/bin/bash +# /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## +# Script for adding a selected theme to the Rofi config + +IFS=$'\n\t' + +# Define directories and variables +rofi_theme_dir="$HOME/.local/share/rofi/themes" +rofi_config_file="$HOME/.config/rofi/config.rasi" +SED=$(which sed) +iDIR="$HOME/.config/swaync/images" +rofi_theme="$HOME/.config/rofi/config-rofi-theme.rasi" + +# Function to display menu options +menu() { + options=() + while IFS= read -r file; do + options+=("$(basename "$file")") + done < <(find "$rofi_theme_dir" -maxdepth 1 -type f -exec basename {} \; | sort) + + printf '%s\n' "${options[@]}" +} + +# Function to add or update theme in the config.rasi +add_theme_to_config() { + local theme_name="$1" + local theme_path="$rofi_theme_dir/$theme_name" + + # if config in $HOME to write as $HOME + if [[ "$theme_path" == $HOME/* ]]; then + theme_path_with_tilde="~${theme_path#$HOME}" + else + theme_path_with_tilde="$theme_path" + fi + + # If no @theme is in the file, add it + if ! grep -q '^\s*@theme' "$rofi_config_file"; then + echo -e "\n\n@theme \"$theme_path_with_tilde\"" >> "$rofi_config_file" + echo "Added @theme \"$theme_path_with_tilde\" to $rofi_config_file" + else + $SED -i "s/^\(\s*@theme.*\)/\/\/\1/" "$rofi_config_file" + echo -e "@theme \"$theme_path_with_tilde\"" >> "$rofi_config_file" + echo "Updated @theme line to $theme_path_with_tilde" + fi + + # Ensure no more than max # of lines with //@theme lines + max_line="9" + total_lines=$(grep -c '^\s*//@theme' "$rofi_config_file") + + if [ "$total_lines" -gt "$max_line" ]; then + excess=$((total_lines - max_line)) + # Remove the oldest or the very top //@theme lines + for i in $(seq 1 "$excess"); do + $SED -i '0,/^\s*\/\/@theme/ { /^\s*\/\/@theme/ {d; q; }}' "$rofi_config_file" + done + echo "Removed excess //@theme lines" + fi +} + +# Main function +main() { + choice=$(menu | rofi rofi -dmenu -i -config $rofi_theme) + + if [[ -z "$choice" ]]; then + exit 0 + fi + add_theme_to_config "$choice" + notify-send -i "$iDIR/ja.png" -u low 'Rofi Theme' "$choice applied." +} + +if pgrep -x "rofi" >/dev/null; then + pkill rofi +fi + +main diff --git a/config/hypr/v2.3.10 b/config/hypr/v2.3.10 deleted file mode 100644 index 31b3414d..00000000 --- a/config/hypr/v2.3.10 +++ /dev/null @@ -1,5 +0,0 @@ -### https://github.com/JaKooLit ### -## https://github.com/JaKooLit/Hyprland-Dots -## This is to have a reference of which version would be - -## note that this will always be higher than the released versions \ No newline at end of file diff --git a/config/hypr/v2.3.11 b/config/hypr/v2.3.11 new file mode 100644 index 00000000..31b3414d --- /dev/null +++ b/config/hypr/v2.3.11 @@ -0,0 +1,5 @@ +### https://github.com/JaKooLit ### +## https://github.com/JaKooLit/Hyprland-Dots +## This is to have a reference of which version would be + +## note that this will always be higher than the released versions \ No newline at end of file diff --git a/config/rofi/config-Animations.rasi b/config/rofi/config-Animations.rasi index 2064cd1b..7ce1c9f5 100644 --- a/config/rofi/config-Animations.rasi +++ b/config/rofi/config-Animations.rasi @@ -1,20 +1,40 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Rofi Beats Config (compact) */ +/* Animations Menu */ + +@import "~/.config/rofi/config.rasi" + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} -@import "~/.config/rofi/config-compact.rasi" /* ---- Window ---- */ window { - width: 35%; + width: 30%; } /* ---- Entry ---- */ entry { - width: 25%; - placeholder: " โœจ Choose which Animations to load"; + width: 28%; + placeholder: " โœจ Search / Choose which Animations to load"; } /* ---- Listview ---- */ listview { - lines: 10; + columns: 2; + lines: 9; + fixed-height: false; + margin: 10px; +} + +/* ---- Elements ---- */ +element-icon { + size: 0%; } +element-text { + horizontal-align: 0.0; + vertical-align: 0.0; + margin: 5px 30px 5px 30px; +} \ No newline at end of file diff --git a/config/rofi/config-calc.rasi b/config/rofi/config-calc.rasi index 54653491..61be7642 100644 --- a/config/rofi/config-calc.rasi +++ b/config/rofi/config-calc.rasi @@ -2,21 +2,23 @@ /* Main Config Calculator */ /* Submitted by: https://github.com/JosephArmas */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" + +/* ---- Mainbox ---- */ +mainbox { + children: [ "entry", "message" ]; +} + /* ---- Entry ---- */ entry { - width: 27%; + expand: true; placeholder: " ๐Ÿงฎ Calculate"; } -/* ---- Window ---- */ -window { - width: 30%; +textbox { + padding: 12px; + border-radius: 10px; } -/* ---- Message ---- */ -textbox { - background-color: @selected; - text-color: @background; -} \ No newline at end of file +listview {enable: false;} \ No newline at end of file diff --git a/config/rofi/config-clipboard.rasi b/config/rofi/config-clipboard.rasi index 7c6dd91e..648a96af 100644 --- a/config/rofi/config-clipboard.rasi +++ b/config/rofi/config-clipboard.rasi @@ -1,16 +1,42 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Clipboard Config - Clipboard */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" + +/* ---- Window ---- */ +window { + width: 45%; +} + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} /* ---- Entry ---- */ entry { - width: 37%; - placeholder: " ๐Ÿ“‹ Search Clipboard **note** ๐Ÿ‘€ CTRL Del - Cliphist del or Alt Del - cliphist wipe"; + width: 42%; + placeholder: " ๐Ÿ“‹ Search Clipboard **note** ๐Ÿ‘€ CTRL Del - Cliphist del or Alt Del - cliphist wipe"; } /* ---- Listview ---- */ listview { columns: 1; lines: 8; -} \ No newline at end of file + fixed-height: false; +} + +/* ---- Elements ---- */ +element { + orientation: horizontal; +} + +element-icon { + size: 0%; +} + +element-text { + horizontal-align: 0.0; + vertical-align: 0.5; +} diff --git a/config/rofi/config-compact.rasi b/config/rofi/config-compact.rasi deleted file mode 100644 index 0887a936..00000000 --- a/config/rofi/config-compact.rasi +++ /dev/null @@ -1,43 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Main Config (compact) */ - -@import "~/.config/rofi/master-config.rasi" - -/* ---- Configuration ---- */ -configuration { - modi: "drun"; -} - -/* ---- Window ---- */ -window { - width: 50%; - border-radius: 15px; -} - -/* ---- Inputbar ---- */ -inputbar { - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -/* ---- Imagebox ---- */ -imagebox { - orientation: vertical; - children: [ "entry", "listview"]; -} - -/* ---- Entry input ---- */ -entry { - width: 23%; - placeholder: " ๐Ÿ‘€ View / Edit Hyprland Configs"; -} - -/* ---- Listview ---- */ -listview { - spacing: 4px; - border-radius: 12px; -} - -/* ---- Element ---- */ -element { - border-radius: 10px; -} diff --git a/config/rofi/config-edit.rasi b/config/rofi/config-edit.rasi new file mode 100644 index 00000000..568de812 --- /dev/null +++ b/config/rofi/config-edit.rasi @@ -0,0 +1,49 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* Main Config (compact) */ + +@import "~/.config/rofi/config.rasi" + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} + + +/* ---- Configuration ---- */ +configuration { + modi: "drun"; +} + +/* ---- Window ---- */ +window { + width: 45%; +} + + +/* ---- Listview ---- */ +listview { + columns: 2; + lines: 6; + fixed-height: false; +} + +/* ---- Entry input ---- */ +entry { + expand: true; + placeholder: " ๐Ÿ‘€ View / Edit KooL Hyprland Configs"; +} + + +/* ---- Elements ---- */ +element { + orientation: horizontal; +} + +element-icon { + size: 0%; +} +element-text { + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; +} \ No newline at end of file diff --git a/config/rofi/config-emoji.rasi b/config/rofi/config-emoji.rasi index 39eab54c..0f98892f 100644 --- a/config/rofi/config-emoji.rasi +++ b/config/rofi/config-emoji.rasi @@ -1,16 +1,38 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Main Config - emoji */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} /* ---- Entry ---- */ entry { width: 37%; - placeholder: " ๐Ÿ’ซ Search Emoji's **note** ๐Ÿ‘€ Click or Return to choose | Ctrl V to Paste"; + placeholder: " ๐Ÿ’ซ Search / Choose Emoji's **note** ๐Ÿ‘€ Click or Return to choose | Ctrl V to Paste"; + horizontal-align: 0.0; } /* ---- Listview ---- */ listview { columns: 1; lines: 8; + fixed-height: false; +} + +/* ---- Elements ---- */ +element { + orientation: horizontal; +} + +element-icon { + size: 0%; +} + +element-text { + horizontal-align: 0.0; + vertical-align: 0.5; } \ No newline at end of file diff --git a/config/rofi/config-keybinds.rasi b/config/rofi/config-keybinds.rasi index 206928cb..6c8e2d5a 100644 --- a/config/rofi/config-keybinds.rasi +++ b/config/rofi/config-keybinds.rasi @@ -1,11 +1,18 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Main Config - For Keybinds generation */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" + + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} /* ---- Entry ---- */ entry { - width: 85%; + expand: true; placeholder: " ๐Ÿงฎ Search Keybinds โ˜ฃ๏ธ NOTE โ˜ฃ๏ธ: Clicking with Mouse or Pressing ENTER will have NO function"; } @@ -13,8 +20,23 @@ entry { listview { columns: 2; lines: 12; + fixed-height: false; } window { - width: 95%; + width: 90%; +} + +/* ---- Elements ---- */ +element { + orientation: horizontal; +} + +element-icon { + size: 0%; +} + +element-text { + horizontal-align: 0.0; + vertical-align: 0.5; } \ No newline at end of file diff --git a/config/rofi/config-rofi-Beats-menu.rasi b/config/rofi/config-rofi-Beats-menu.rasi index 3e29881e..bcb45ac2 100644 --- a/config/rofi/config-rofi-Beats-menu.rasi +++ b/config/rofi/config-rofi-Beats-menu.rasi @@ -1,22 +1,37 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Main config Rofi Beats Config (compact) */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} /* ---- Entry ---- */ entry { - width: 20%; + expand: true; placeholder: " ๐Ÿ“ป Choose Music Source"; } /* ---- Window ---- */ window { - width: 24%; + width: 20%; } /* ---- Listview ---- */ listview { fixed-columns: false; + scrollbar: false; colums: 1; lines: 3; } + +/* ---- Element ---- */ +element-icon { + size: 0%; +} +element-text { + horizontal-align: 0.5; +} \ No newline at end of file diff --git a/config/rofi/config-rofi-Beats.rasi b/config/rofi/config-rofi-Beats.rasi index 97bb9643..a674fa3a 100644 --- a/config/rofi/config-rofi-Beats.rasi +++ b/config/rofi/config-rofi-Beats.rasi @@ -1,7 +1,13 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Rofi Beats Config (compact) */ -@import "~/.config/rofi/config-compact.rasi" +@import "~/.config/rofi/config.rasi" + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} /* ---- Entry ---- */ entry { @@ -10,5 +16,22 @@ entry { /* ---- Listview ---- */ listview { - lines: 7; + columns: 2; + lines: 8; + fixed-height: false; + margin: 10px; +} + +/* ---- Elements ---- */ +element { + orientation: horizontal; } + +element-icon { + size: 0%; +} + +element-text { + horizontal-align: 0.0; + vertical-align: 0.5; +} \ No newline at end of file diff --git a/config/rofi/config-rofi-theme.rasi b/config/rofi/config-rofi-theme.rasi new file mode 100644 index 00000000..531a2c2c --- /dev/null +++ b/config/rofi/config-rofi-theme.rasi @@ -0,0 +1,43 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* Main Config Rofi Theme */ + +@import "~/.config/rofi/config.rasi" + + +/* ---- Window ---- */ +window { + width: 45%; +} + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} + +/* ---- Listview ---- */ +listview { + columns: 2; + lines: 8; + fixed-height: false; +} + +/* ---- Entry input ---- */ +entry { + expand: true; + placeholder: " โฌ‡๏ธ Select Which Rofi Theme wanted to apply"; +} + + +/* ---- Elements ---- */ +element { + orientation: vertical; +} + +element-icon { + size: 0%; +} +element-text { + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; +} diff --git a/config/rofi/config-search.rasi b/config/rofi/config-search.rasi index 70cb08f1..b216d0a6 100644 --- a/config/rofi/config-search.rasi +++ b/config/rofi/config-search.rasi @@ -1,28 +1,25 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Rofi Config for Google Search) */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" /* ---- Window ---- */ window { width: 40%; + height: inherit; + background-color: inherit; + text-color: inherit; y-offset: 6px; location: north; -} - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; -} - -/* ---- Mainbox ---- */ -mainbox { - padding: 0px; - children: [ "entry"]; + children: [ "entry" ]; + border: 2px; + border-color: white/50%; } /* ---- Entry ---- */ entry { placeholder: " ๐Ÿ”Ž Google Search via web browser"; + padding: 15px; + border: 0px; } diff --git a/config/rofi/config-wallpaper-effect.rasi b/config/rofi/config-wallpaper-effect.rasi index 684c00a2..0fb534e3 100644 --- a/config/rofi/config-wallpaper-effect.rasi +++ b/config/rofi/config-wallpaper-effect.rasi @@ -1,12 +1,19 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Wallpaper Effects */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" + + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} /* ---- Entry ---- */ entry { width: 20%; - placeholder: " ๐Ÿ™๏ธ Choose desired wallpaper effect"; + placeholder: " ๐Ÿ™๏ธ Search / Choose desired wallpaper effect"; } /* ---- Window ---- */ @@ -16,11 +23,23 @@ window { /* ---- Listview ---- */ listview { - fixed-columns: false; + columns: 2; lines: 8; + fixed-height: false; } /* ---- Inputbar ---- */ inputbar { - background-image: url("~/.config/hypr/wallpaper_effects/.wallpaper_modified", width); + background-image: url("~/.config/hypr/wallpaper_effects/.wallpaper_modified", width); +} + +/* ---- Element ---- */ +element-icon { + size: 0%; +} + +element-text { + horizontal-align: 0.0; + vertical-align: 0.0; + margin: 5px 30px 5px 30px; } \ No newline at end of file diff --git a/config/rofi/config-wallpaper.rasi b/config/rofi/config-wallpaper.rasi index 8665f6c0..eab47606 100644 --- a/config/rofi/config-wallpaper.rasi +++ b/config/rofi/config-wallpaper.rasi @@ -1,7 +1,7 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Main Config (wallpaper) */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" /* ---- Configuration ---- */ configuration { @@ -12,17 +12,16 @@ window { width: 60%; } -/* ---- Imagebox ---- */ -imagebox { - orientation: vertical; +/* ---- Mainbox ---- */ +mainbox { children: - [ "entry", "listbox"]; + [ "inputbar", "listview"]; } - entry { - expand: false; - placeholder: " ๐ŸŽž๏ธ Choose Wallpaper"; + expand: true; + placeholder: " ๐ŸŽž๏ธ Search / Choose Wallpaper"; + horizontal-align: 0.0; } /* ---- Listview ---- */ @@ -35,17 +34,13 @@ listview { /* ---- Element ---- */ element { orientation: vertical; - padding: 0px; - spacing: 0px; - border-radius: 12px; } element-icon { - size: 15%; + size: 10%; } element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; vertical-align: 0.5; horizontal-align: 0.5; } diff --git a/config/rofi/config-waybar-layout.rasi b/config/rofi/config-waybar-layout.rasi index 4dd06a1c..cc24a170 100644 --- a/config/rofi/config-waybar-layout.rasi +++ b/config/rofi/config-waybar-layout.rasi @@ -1,10 +1,40 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Layout Config (Waybar) */ +/* Main Config (Waybar Layout) */ -@import "~/.config/rofi/config-waybar-style.rasi" +@import "~/.config/rofi/config.rasi" + + + +/* ---- Configuration ---- */ +configuration { + modi: "drun"; +} + +/* ---- Mainbox ---- */ +mainbox { + children: + [ "inputbar", "listview"]; +} /* ---- Entry ---- */ entry { - placeholder: " ๐Ÿ–ผ๏ธ Choose Waybar Layout"; + expand: true; + placeholder: " ๐Ÿ–ผ๏ธ Search / Choose Waybar Layout"; +} + +/* ---- Listview ---- */ +listview { + columns: 2; + lines: 9; + fixed-height: false; + margin: 10px; } +/* ---- Elements ---- */ +element-icon { + size: 0%; +} +element-text { + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; +} diff --git a/config/rofi/config-waybar-style.rasi b/config/rofi/config-waybar-style.rasi index ee23793f..bfb3829a 100644 --- a/config/rofi/config-waybar-style.rasi +++ b/config/rofi/config-waybar-style.rasi @@ -1,12 +1,7 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Main Config (waybar) */ +/* Main Config (waybar style) */ -@import "~/.config/rofi/master-config.rasi" - -/* ---- Configuration ---- */ -configuration { - modi: "drun"; -} +@import "~/.config/rofi/config.rasi" /* ---- Mainbox ---- */ mainbox { @@ -14,8 +9,31 @@ mainbox { [ "inputbar", "listview"]; } +/* ---- Configuration ---- */ +configuration { + modi: "drun"; +} + +/* ---- Entry ---- */ entry { expand: true; - placeholder: " ๐Ÿ–ผ๏ธ Choose Waybar Style"; + placeholder: " ๐Ÿ–ผ๏ธ Search / Choose Waybar Style"; } + +/* ---- Listview ---- */ +listview { + columns: 2; + lines: 9; + fixed-height: false; + margin: 10px; +} + +/* ---- Elements ---- */ +element-icon { + size: 0%; +} +element-text { + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; +} diff --git a/config/rofi/config-zsh-theme.rasi b/config/rofi/config-zsh-theme.rasi index b3aff7e8..c2293b4e 100644 --- a/config/rofi/config-zsh-theme.rasi +++ b/config/rofi/config-zsh-theme.rasi @@ -1,7 +1,7 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Main Config (compact) */ +/* Oh My ZSH Theme */ -@import "~/.config/rofi/master-config.rasi" +@import "~/.config/rofi/config.rasi" /* ---- Configuration ---- */ configuration { @@ -14,13 +14,11 @@ window { border-radius: 15px; } -/* ---- Imagebox ---- */ -imagebox { - orientation: vertical; - children: - [ "inputbar", "listbox"]; +mainbox { + children: [ "inputbar" , "listview" ]; } + /* ---- Listbox ---- */ listbox { border-radius: 12px; @@ -33,7 +31,8 @@ inputbar { } entry { - placeholder: " ๓ฐธ‰ Choose ZSH theme"; + expand: true; + placeholder: " ๐ŸชŸ Search / Choose ZSH theme"; } /* ---- Listview ---- */ @@ -46,7 +45,7 @@ listview { /* ---- Element ---- */ element { - border-radius: 10px; + orientation: horizontal; } /* ---- Message ---- */ @@ -57,3 +56,12 @@ message { textbox { padding: 15px; } + +/* ---- Element ---- */ +element-icon { + size: 0%; +} +element-text { + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; +} diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi old mode 100755 new mode 100644 index eca05ea6..51a70f2c --- a/config/rofi/config.rasi +++ b/config/rofi/config.rasi @@ -1,31 +1,18 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Main Config 1080p */ +/* Ja KooLit - Default -@import "~/.config/rofi/master-config.rasi" +* All main themes or configs are located in ~/.local/share/rofi/themes +* If you want to edit the config, that is where you should edit NOT here -/* ---- Window ---- */ -window { - width: 50%; -} -/* ---- Listview ---- */ -listview { - columns: 5; - lines: 5; - fixed-height: true; -} +* To load a new theme, manually edit the file path below or choose desired theme via rofi theme selector -/* ---- Element ---- */ -element { - orientation: vertical; - padding: 10px 5px 10px 5px; - spacing: 6px; -} +* Alternative way to Load (preferred) own cooked by Ja +* SUPER CTRL R - Choose style -element-icon { - size: 3%; -} +* TIPS +* If you have edited a config, rename it with a unique name. During update, the contents of +* ~/.local/share/rofi/themes will be replaced. However, it wont overwrite your own config if you +* renamed with your own unique file name */ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 10"; - horizontal-align: 0.5; -} \ No newline at end of file + +@theme "~/.local/share/rofi/themes/KooL_style-2-Dark.rasi" diff --git a/config/rofi/master-config.rasi b/config/rofi/master-config.rasi deleted file mode 100644 index 09032268..00000000 --- a/config/rofi/master-config.rasi +++ /dev/null @@ -1,237 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Master Config 1080p*/ - -/* ---- Configuration ---- */ - -configuration { - font: "JetBrainsMono Nerd Font SemiBold 12"; - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - - background-alt: @selected-active-background; // Buttons background - selected: @selected-urgent-background; // Button selected - active: @selected-normal-background; // Window activated - urgent: @selected; // When hovering the activated window (maybe more?) - - text-selected: @background; - text-color: @foreground; - border-color: @selected; -} - -/* ---- Window ---- */ -window { - // Default - enabled: true; - fullscreen: false; - transparency: "real"; - cursor: "default"; - spacing: 0px; - border: 3px 0px 3px 0px; - border-radius: 30px; - location: center; - anchor: center; - - // Style Values - width: 50%; - background-color: @background; -} - -/* ----- Main Box ----- */ -mainbox { - padding: 12px; - enabled: true; - orientation: vertical; - children: [ "inputbar", "listbox" ]; - background-color: transparent; -} - - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - padding: 10px 10px 50px 10px; - margin: 10px; - background-color: transparent; - border-radius: 25px; - orientation: horizontal; - children: ["entry", "dummy", "mode-switcher" ]; - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -/* ---- Entry input ---- */ -entry { - enabled: true; - expand: false; - width: 20%; - padding: 10px; - border-radius: 12px; - background-color: @selected; - text-color: @text-selected; - cursor: text; - placeholder: " ๐Ÿ–ฅ๏ธ Search "; // << Search symbol - placeholder-color: inherit; -} - -/* ---- Listbox ---- */ -listbox { - spacing: 10px; - padding: 10px; - background-color: transparent; - orientation: vertical; - children: [ "message", "listview" ]; -} - -/* ---- Listview ---- */ -listview { - enabled: true; - columns: 2; - lines: 6; - cycle: true; - dynamic: true; - scrollbar: true; - layout: vertical; - reverse: false; - fixed-height: false; - fixed-columns: true; - spacing: 10px; - background-color: transparent; - -// Adapt rofi theme - border: 0px; -} - -/* ---- Dummy ---- */ -dummy { - expand: true; - background-color: transparent; -} - -/* ---- Mode Switcher ---- */ -mode-switcher{ - enabled: true; - spacing: 10px; - background-color: transparent; -} -button { - width: 5%; - padding: 12px; - border-radius: 12px; - background-color: @text-selected; - text-color: @text-color; - cursor: pointer; -} -button selected { - background-color: @selected; - text-color: @text-selected; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0; - handle-color: @background-alt; - handle-width: 2px ; - padding: 0; -} - -/* ---- Elements ---- */ -element { - enabled: true; - spacing: 10px; - padding: 10px; - border-radius: 12px; - background-color: transparent; - cursor: pointer; -} - -element normal.normal { - background-color: inherit; - text-color: inherit; -} -element normal.urgent { - background-color: @urgent; - text-color: @foreground; -} -element normal.active { - background-color: @active; - text-color: @foreground; -} - -element selected.normal { - border: 0px 3px 0px 3px; - border-radius: 16px; - border-color: @selected; - background-color: transparent; - text-color: @background-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @text-selected; -} -element selected.active { - background-color: @urgent; - text-color: @text-selected; -} -// Adapt rofi theme -element alternate.normal { - background-color: transparent; - text-color: inherit; -} -element alternate.urgent { - background-color: transparent; - text-color: inherit; -} -element alternate.active { - background-color: transparent; - text-color: inherit; -} -element-icon { - background-color: transparent; - text-color: inherit; - cursor: inherit; -} -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; - background-color: transparent; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - padding: 12px; - border-radius: 10px; - background-color: @background-alt; - text-color: @background; - vertical-align: 0.5; - horizontal-align: 0.0; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: @background-alt; - text-color: @background; -} diff --git a/config/rofi/resolution/1080p/config.rasi b/config/rofi/resolution/1080p/config.rasi deleted file mode 100755 index eca05ea6..00000000 --- a/config/rofi/resolution/1080p/config.rasi +++ /dev/null @@ -1,31 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Main Config 1080p */ - -@import "~/.config/rofi/master-config.rasi" - -/* ---- Window ---- */ -window { - width: 50%; -} -/* ---- Listview ---- */ -listview { - columns: 5; - lines: 5; - fixed-height: true; -} - -/* ---- Element ---- */ -element { - orientation: vertical; - padding: 10px 5px 10px 5px; - spacing: 6px; -} - -element-icon { - size: 3%; -} - -element-text { - font: "JetBrainsMono Nerd Font SemiBold 10"; - horizontal-align: 0.5; -} \ No newline at end of file diff --git a/config/rofi/resolution/1080p/master-config.rasi b/config/rofi/resolution/1080p/master-config.rasi deleted file mode 100644 index 09032268..00000000 --- a/config/rofi/resolution/1080p/master-config.rasi +++ /dev/null @@ -1,237 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Master Config 1080p*/ - -/* ---- Configuration ---- */ - -configuration { - font: "JetBrainsMono Nerd Font SemiBold 12"; - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - - background-alt: @selected-active-background; // Buttons background - selected: @selected-urgent-background; // Button selected - active: @selected-normal-background; // Window activated - urgent: @selected; // When hovering the activated window (maybe more?) - - text-selected: @background; - text-color: @foreground; - border-color: @selected; -} - -/* ---- Window ---- */ -window { - // Default - enabled: true; - fullscreen: false; - transparency: "real"; - cursor: "default"; - spacing: 0px; - border: 3px 0px 3px 0px; - border-radius: 30px; - location: center; - anchor: center; - - // Style Values - width: 50%; - background-color: @background; -} - -/* ----- Main Box ----- */ -mainbox { - padding: 12px; - enabled: true; - orientation: vertical; - children: [ "inputbar", "listbox" ]; - background-color: transparent; -} - - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - padding: 10px 10px 50px 10px; - margin: 10px; - background-color: transparent; - border-radius: 25px; - orientation: horizontal; - children: ["entry", "dummy", "mode-switcher" ]; - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -/* ---- Entry input ---- */ -entry { - enabled: true; - expand: false; - width: 20%; - padding: 10px; - border-radius: 12px; - background-color: @selected; - text-color: @text-selected; - cursor: text; - placeholder: " ๐Ÿ–ฅ๏ธ Search "; // << Search symbol - placeholder-color: inherit; -} - -/* ---- Listbox ---- */ -listbox { - spacing: 10px; - padding: 10px; - background-color: transparent; - orientation: vertical; - children: [ "message", "listview" ]; -} - -/* ---- Listview ---- */ -listview { - enabled: true; - columns: 2; - lines: 6; - cycle: true; - dynamic: true; - scrollbar: true; - layout: vertical; - reverse: false; - fixed-height: false; - fixed-columns: true; - spacing: 10px; - background-color: transparent; - -// Adapt rofi theme - border: 0px; -} - -/* ---- Dummy ---- */ -dummy { - expand: true; - background-color: transparent; -} - -/* ---- Mode Switcher ---- */ -mode-switcher{ - enabled: true; - spacing: 10px; - background-color: transparent; -} -button { - width: 5%; - padding: 12px; - border-radius: 12px; - background-color: @text-selected; - text-color: @text-color; - cursor: pointer; -} -button selected { - background-color: @selected; - text-color: @text-selected; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0; - handle-color: @background-alt; - handle-width: 2px ; - padding: 0; -} - -/* ---- Elements ---- */ -element { - enabled: true; - spacing: 10px; - padding: 10px; - border-radius: 12px; - background-color: transparent; - cursor: pointer; -} - -element normal.normal { - background-color: inherit; - text-color: inherit; -} -element normal.urgent { - background-color: @urgent; - text-color: @foreground; -} -element normal.active { - background-color: @active; - text-color: @foreground; -} - -element selected.normal { - border: 0px 3px 0px 3px; - border-radius: 16px; - border-color: @selected; - background-color: transparent; - text-color: @background-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @text-selected; -} -element selected.active { - background-color: @urgent; - text-color: @text-selected; -} -// Adapt rofi theme -element alternate.normal { - background-color: transparent; - text-color: inherit; -} -element alternate.urgent { - background-color: transparent; - text-color: inherit; -} -element alternate.active { - background-color: transparent; - text-color: inherit; -} -element-icon { - background-color: transparent; - text-color: inherit; - cursor: inherit; -} -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; - background-color: transparent; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - padding: 12px; - border-radius: 10px; - background-color: @background-alt; - text-color: @background; - vertical-align: 0.5; - horizontal-align: 0.0; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: @background-alt; - text-color: @background; -} diff --git a/config/rofi/resolution/1440p/config.rasi b/config/rofi/resolution/1440p/config.rasi deleted file mode 100755 index 768fcec1..00000000 --- a/config/rofi/resolution/1440p/config.rasi +++ /dev/null @@ -1,37 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Main Config 1440p */ - -@import "~/.config/rofi/master-config.rasi" - -/* ---- Window ---- */ -window { - width: 50%; -} - -/* ---- Mode Switcher ---- */ -button { - width: 110px; -} - -/* ---- Listview ---- */ -listview { - columns: 5; - lines: 5; - fixed-height: true; -} - -/* ---- Element ---- */ -element { - orientation: vertical; - padding: 10px 5px 10px 5px; - spacing: 6px; -} - -element-icon { - size: 3%; -} - -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; - horizontal-align: 0.5; -} diff --git a/config/rofi/resolution/1440p/master-config.rasi b/config/rofi/resolution/1440p/master-config.rasi deleted file mode 100644 index 96cb83a1..00000000 --- a/config/rofi/resolution/1440p/master-config.rasi +++ /dev/null @@ -1,237 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* Master Config 1440p*/ - -/* ---- Configuration ---- */ - -configuration { - font: "JetBrainsMono Nerd Font SemiBold 12"; - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - - background-alt: @selected-active-background; // Buttons background - selected: @selected-urgent-background; // Button selected - active: @selected-normal-background; // Window activated - urgent: @selected; // When hovering the activated window (maybe more?) - - text-selected: @background; - text-color: @foreground; - border-color: @selected; -} - -/* ---- Window ---- */ -window { - // Default - enabled: true; - fullscreen: false; - transparency: "real"; - cursor: "default"; - spacing: 0px; - border: 3px 0px 3px 0px; - border-radius: 30px; - location: center; - anchor: center; - - // Style Values - width: 50%; - background-color: @background; -} - -/* ----- Main Box ----- */ -mainbox { - padding: 12px; - enabled: true; - orientation: vertical; - children: [ "inputbar", "listbox" ]; - background-color: transparent; -} - - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - padding: 10px 10px 50px 10px; - margin: 10px; - background-color: transparent; - border-radius: 20px; - orientation: horizontal; - children: ["entry", "dummy", "mode-switcher" ]; - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -/* ---- Entry input ---- */ -entry { - enabled: true; - expand: false; - width: 20%; - padding: 10px; - border-radius: 12px; - background-color: @selected; - text-color: @text-selected; - cursor: text; - placeholder: " ๐Ÿ–ฅ๏ธ Search "; // << Search symbol - placeholder-color: inherit; -} - -/* ---- Listbox ---- */ -listbox { - spacing: 10px; - padding: 10px; - background-color: transparent; - orientation: vertical; - children: [ "message", "listview" ]; -} - -/* ---- Listview ---- */ -listview { - enabled: true; - columns: 2; - lines: 6; - cycle: true; - dynamic: true; - scrollbar: true; - layout: vertical; - reverse: false; - fixed-height: false; - fixed-columns: true; - spacing: 10px; - background-color: transparent; - -// Adapt rofi theme - border: 0px; -} - -/* ---- Dummy ---- */ -dummy { - expand: true; - background-color: transparent; -} - -/* ---- Mode Switcher ---- */ -mode-switcher{ - enabled: true; - spacing: 10px; - background-color: transparent; -} -button { - width: 5%; - padding: 12px; - border-radius: 12px; - background-color: @text-selected; - text-color: @text-color; - cursor: pointer; -} -button selected { - background-color: @selected; - text-color: @text-selected; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0; - handle-color: @background-alt; - handle-width: 2px ; - padding: 0; -} - -/* ---- Elements ---- */ -element { - enabled: true; - spacing: 10px; - padding: 10px; - border-radius: 12px; - background-color: transparent; - cursor: pointer; -} - -element normal.normal { - background-color: inherit; - text-color: inherit; -} -element normal.urgent { - background-color: @urgent; - text-color: @foreground; -} -element normal.active { - background-color: @active; - text-color: @foreground; -} - -element selected.normal { - border: 0px 3px 0px 3px; - border-radius: 16px; - border-color: @selected; - background-color: transparent; - text-color: @background-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @text-selected; -} -element selected.active { - background-color: @urgent; - text-color: @text-selected; -} -// Adapt rofi theme -element alternate.normal { - background-color: transparent; - text-color: inherit; -} -element alternate.urgent { - background-color: transparent; - text-color: inherit; -} -element alternate.active { - background-color: transparent; - text-color: inherit; -} -element-icon { - background-color: transparent; - text-color: inherit; - cursor: inherit; -} -element-text { - font: "JetBrainsMono Nerd Font SemiBold 14"; - background-color: transparent; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - padding: 12px; - border-radius: 10px; - background-color: @background-alt; - text-color: @background; - vertical-align: 0.5; - horizontal-align: 0.0; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: @background-alt; - text-color: @background; -} diff --git a/config/rofi/wallust/colors-rofi.rasi b/config/rofi/wallust/colors-rofi.rasi index 536bcdc6..b54ab670 100644 --- a/config/rofi/wallust/colors-rofi.rasi +++ b/config/rofi/wallust/colors-rofi.rasi @@ -2,30 +2,49 @@ /* wallust template - colors-rofi */ * { -active-background: #20211D; -active-foreground: #ACF2F1; -normal-background: #1E1516; -normal-foreground: #ACF2F1; -urgent-background: #135C7D; -urgent-foreground: #ACF2F1; - -alternate-active-background: #0D942F; -alternate-active-foreground: #ACF2F1; -alternate-normal-background: #1E1516; -alternate-normal-foreground: #ACF2F1; -alternate-urgent-background: #1E1516; -alternate-urgent-foreground: #ACF2F1; - -selected-active-background: #20211D; -selected-active-foreground: #ACF2F1; -selected-normal-background: #80E4E2; -selected-normal-foreground: #ACF2F1; -selected-urgent-background: #135C7D; -selected-urgent-foreground: #ACF2F1; - -background-color: #1E1516; +active-background: #718A90; +active-foreground: #ABF1E1; +normal-background: #212826; +normal-foreground: #ABF1E1; +urgent-background: #44AE9B; +urgent-foreground: #ABF1E1; + +alternate-active-background: #78858E; +alternate-active-foreground: #ABF1E1; +alternate-normal-background: #212826; +alternate-normal-foreground: #ABF1E1; +alternate-urgent-background: #212826; +alternate-urgent-foreground: #ABF1E1; + +selected-active-background: #44AE9B; +selected-active-foreground: #ABF1E1; +selected-normal-background: #44AE9B; +selected-normal-foreground: #ABF1E1; +selected-urgent-background: #718A90; +selected-urgent-foreground: #ABF1E1; + +background-color: #212826; background: rgba(0,0,0,0.7); -foreground: #80E4E2; -border-color: #20211D; +foreground: #ABF1E1; +border-color: #718A90; + +color0: #464D4C; +color1: #02211D; +color2: #02613F; +color3: #5A646A; +color4: #55686C; +color5: #338375; +color6: #0CA27F; +color7: #7FE3CC; +color8: #599F8E; +color9: #022C27; +color10: #028154; +color11: #78858E; +color12: #718A90; +color13: #44AE9B; +color14: #10D8A9; +color15: #7FE3CC; + + } -- cgit v1.2.3 From 99dcaf5bf9e77adf0342446012acfd4588cf5738 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 10 Feb 2025 20:05:17 +0900 Subject: updated rofi search --- .../rofi/themes/KooL_style-11-Win11-list-dark.rasi | 130 ++++++++++++++ .../themes/KooL_style-11-Win11-list-light.rasi | 130 ++++++++++++++ assets/rofi/themes/KooL_style-9.rasi | 190 +++++++++++++++++++++ .../rofi/themes/KooL_style_11-Win11-list-dark.rasi | 130 -------------- .../themes/KooL_style_11-Win11-list-light.rasi | 130 -------------- assets/rofi/themes/KooL_style_9.rasi | 190 --------------------- config/rofi/config-search.rasi | 10 +- 7 files changed, 455 insertions(+), 455 deletions(-) create mode 100644 assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi create mode 100644 assets/rofi/themes/KooL_style-11-Win11-list-light.rasi create mode 100644 assets/rofi/themes/KooL_style-9.rasi delete mode 100644 assets/rofi/themes/KooL_style_11-Win11-list-dark.rasi delete mode 100644 assets/rofi/themes/KooL_style_11-Win11-list-light.rasi delete mode 100644 assets/rofi/themes/KooL_style_9.rasi (limited to 'config') diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi new file mode 100644 index 00000000..f0a7d9e6 --- /dev/null +++ b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -0,0 +1,130 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Style 10 - Windows 11 List Dark */ +/* source: https://github.com/newmanls */ + +/* Integrating Wallust and More tweaks */ + +/* ---- Configuration ---- */ +configuration { + dpi: 1; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrainsMono Nerd Font SemiBold 13"; + + bg0 : black/50%; + bg1 : black/40%; + bg2 : black/10%; + bg3 : black; + fg0 : #ffffff; + fg1 : #cecece; + accent : #60cdff; + urgent : @accent; + + background-color : transparent; + text-color : @fg0; + + margin : 0; + padding : 0; + spacing : 0; +} + +element-icon, element-text, scrollbar { + cursor: pointer; +} + +window { + location : south; + width : 40%; + height : 50%; + y-offset : -10px; + + background-color : @bg1; + border-radius : 8px; +} + +mainbox { + padding : 24px; + spacing : 24px; +} + +inputbar { + padding : 8px; + spacing : 4px; + children : [ icon-search, entry ]; + border : 0 0 2px 0 solid; + border-color : @accent; + border-radius : 2px; + background-color : @bg0; +} + +icon-search, entry, element-icon, element-text { + vertical-align: 0.5; +} + +icon-search { + expand : false; + filename : "search-symbolic"; + size : 24px; +} + +entry { + placeholder : "Type here to search"; + text-color : @fg1; +} + +textbox { + padding : 4px 8px; + background-color : @bg2; +} + +listview { + columns : 2; + spacing : 8px; + fixed-height : true; + fixed-columns : true; +} + +element { + font: "JetBrainsMono Nerd Font SemiBold 11"; + spacing : 1em; + padding : 8px; + border-radius : 2px; +} + +element normal urgent { + text-color: @urgent; +} + +element normal active { + text-color: @accent; +} + +element alternate active { + text-color: @accent; +} + +element selected active { + text-color: @accent; +} + +element selected { + background-color: @bg3; +} + +element selected urgent { + background-color: @urgent; +} + +element-icon { + size: 1.5em; +} + +element-text { + text-color: inherit; +} diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi new file mode 100644 index 00000000..65809c4d --- /dev/null +++ b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -0,0 +1,130 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Style 10 - Windows 11 List Light */ +/* source: https://github.com/newmanls */ + +/* Integrating Wallust and More tweaks */ + +/* ---- Configuration ---- */ +configuration { + dpi: 1; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrainsMono Nerd Font SemiBold 13"; + + bg0 : #ffffff80; + bg1 : #f9f9f9bf; + bg2 : #f7f7f7; + bg3 : #fefefebf; + fg0 : #1a1a1a; + fg1 : #5f5f5f; + accent : #005fb8; + urgent : @accent; + + background-color : transparent; + text-color : @fg0; + + margin : 0; + padding : 0; + spacing : 0; +} + +element-icon, element-text, scrollbar { + cursor: pointer; +} + +window { + location : south; + width : 40%; + height : 50%; + y-offset : -10px; + + background-color : @bg1; + border-radius : 8px; +} + +mainbox { + padding : 24px; + spacing : 24px; +} + +inputbar { + padding : 8px; + spacing : 4px; + children : [ icon-search, entry ]; + border : 0 0 2px 0 solid; + border-color : @accent; + border-radius : 2px; + background-color : @bg0; +} + +icon-search, entry, element-icon, element-text { + vertical-align: 0.5; +} + +icon-search { + expand : false; + filename : "search-symbolic"; + size : 24px; +} + +entry { + placeholder : "Type here to search"; + placeholder-color : @fg1; +} + +textbox { + padding : 4px 8px; + background-color : @bg2; +} + +listview { + columns : 2; + spacing : 8px; + fixed-height : true; + fixed-columns : true; +} + +element { + font: "JetBrainsMono Nerd Font SemiBold 11"; + spacing : 1em; + padding : 8px; + border-radius : 2px; +} + +element normal urgent { + text-color: @urgent; +} + +element normal active { + text-color: @accent; +} + +element alternate active { + text-color: @accent; +} + +element selected active { + text-color: @accent; +} + +element selected { + background-color: @bg3; +} + +element selected urgent { + background-color: @urgent; +} + +element-icon { + size: 1.5em; +} + +element-text { + text-color: inherit; +} diff --git a/assets/rofi/themes/KooL_style-9.rasi b/assets/rofi/themes/KooL_style-9.rasi new file mode 100644 index 00000000..d09e58e2 --- /dev/null +++ b/assets/rofi/themes/KooL_style-9.rasi @@ -0,0 +1,190 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Style 9 */ +/* Modified version of Rofi Config which was submitted by https://github.com/lonerOrz via Discord */ + +/* Integrating Wallust and More tweaks */ + + +configuration { + show-icons: true; + display-drun: "๏‘„"; + drun-display-format: "{icon} {name}"; + disable-history: false; + click-to-exit: true; + location: 0; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/*****----- Global Properties -----*****/ +* { + font: "JetBrainsMono Nerd Font SemiBold 13"; + + BG: @background; + BGA: @color11; + FG: @foreground; + FGA: #F28FADff; + BDR: @color12; + SEL: #1E1E2Eff; + UGT: #F28FADff; + IMG: #FAE3B0ff; + OFF: #575268ff; + ON: #ABE9B3ff; +} + +/* ---- Window ---- */ +window { + transparency: "real"; + background-color: @BG; + text-color: @FG; + border: 2px; + border-color: @BDR; + border-radius: 10px; + width: 25%; + anchor: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 8px; + background-color: @BG; + text-color: @IMG; +} + +textbox-prompt-colon { + expand: false; + str: "๏€‚"; + border-radius: 100%; + background-color: @SEL; + text-color: @FG; + padding: 8px 12px 8px 12px; +} + +/* ---- Entry input ---- */ +entry { + background-color: @BG; + text-color: @FG; + placeholder-color: @FG; + expand: true; + horizontal-align: 0; + placeholder: " Search..."; + blink: true; + border: 0px 0px 2px 0px; + border-color: @BDR; + border-radius: 10px; + padding: 8px; +} + +inputbar { + children: [ textbox-prompt-colon, entry ]; + background-color: @BG; + text-color: @FG; + expand: false; + border: 0px 0px 0px 0px; + border-radius: 0px; + border-color: @BDR; + margin: 0px 0px 0px 0px; + padding: 0px; + position: center; +} + +case-indicator { + background-color: @BG; + text-color: @FG; + spacing: 0; +} + +/* ---- Listview ---- */ +listview { + background-color: @BG; + columns: 1; + lines: 7; + spacing: 4px; + cycle: true; + dynamic: true; + layout: vertical; + scrollbar: true; +} + +mainbox { + background-color: @BG; + children: [ inputbar, listview ]; + spacing: 15px; + padding: 15px; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + border-color: @color12; + handle-color: @color11; + handle-width: 10px ; + padding: 0; +} + +/* ---- Elements ---- */ +element { + font: "JetBrainsMono Nerd Font SemiBold 11"; + background-color: @BG; + text-color: @FG; + orientation: horizontal; + border-radius: 4px; + padding: 6px 6px 6px 6px; +} + +element-icon { + background-color: inherit; + text-color: inherit; + horizontal-align: 0.5; + vertical-align: 0.5; + size: 24px; + border: 0px; +} + +element-text { + background-color: inherit; + text-color: inherit; + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 2px 0px 2px 2px; +} + +element normal.urgent, +element alternate.urgent { + background-color: @UGT; + text-color: @FG; + border-radius: 9px; +} + +element normal.active, +element alternate.active { + background-color: @BGA; + text-color: @FG; +} + +element selected { + background-color: @BGA; + text-color: @SEL; + border: 0px 0px 0px 0px; + border-radius: 10px; + border-color: @BDR; +} + +element selected.urgent { + background-color: @UGT; + text-color: @FG; +} + +element selected.active { + background-color: @BGA; + color: @FG; +} diff --git a/assets/rofi/themes/KooL_style_11-Win11-list-dark.rasi b/assets/rofi/themes/KooL_style_11-Win11-list-dark.rasi deleted file mode 100644 index f0a7d9e6..00000000 --- a/assets/rofi/themes/KooL_style_11-Win11-list-dark.rasi +++ /dev/null @@ -1,130 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 10 - Windows 11 List Dark */ -/* source: https://github.com/newmanls */ - -/* Integrating Wallust and More tweaks */ - -/* ---- Configuration ---- */ -configuration { - dpi: 1; - show-icons: true; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/*****----- Global Properties -----*****/ -* { - font: "JetBrainsMono Nerd Font SemiBold 13"; - - bg0 : black/50%; - bg1 : black/40%; - bg2 : black/10%; - bg3 : black; - fg0 : #ffffff; - fg1 : #cecece; - accent : #60cdff; - urgent : @accent; - - background-color : transparent; - text-color : @fg0; - - margin : 0; - padding : 0; - spacing : 0; -} - -element-icon, element-text, scrollbar { - cursor: pointer; -} - -window { - location : south; - width : 40%; - height : 50%; - y-offset : -10px; - - background-color : @bg1; - border-radius : 8px; -} - -mainbox { - padding : 24px; - spacing : 24px; -} - -inputbar { - padding : 8px; - spacing : 4px; - children : [ icon-search, entry ]; - border : 0 0 2px 0 solid; - border-color : @accent; - border-radius : 2px; - background-color : @bg0; -} - -icon-search, entry, element-icon, element-text { - vertical-align: 0.5; -} - -icon-search { - expand : false; - filename : "search-symbolic"; - size : 24px; -} - -entry { - placeholder : "Type here to search"; - text-color : @fg1; -} - -textbox { - padding : 4px 8px; - background-color : @bg2; -} - -listview { - columns : 2; - spacing : 8px; - fixed-height : true; - fixed-columns : true; -} - -element { - font: "JetBrainsMono Nerd Font SemiBold 11"; - spacing : 1em; - padding : 8px; - border-radius : 2px; -} - -element normal urgent { - text-color: @urgent; -} - -element normal active { - text-color: @accent; -} - -element alternate active { - text-color: @accent; -} - -element selected active { - text-color: @accent; -} - -element selected { - background-color: @bg3; -} - -element selected urgent { - background-color: @urgent; -} - -element-icon { - size: 1.5em; -} - -element-text { - text-color: inherit; -} diff --git a/assets/rofi/themes/KooL_style_11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style_11-Win11-list-light.rasi deleted file mode 100644 index 65809c4d..00000000 --- a/assets/rofi/themes/KooL_style_11-Win11-list-light.rasi +++ /dev/null @@ -1,130 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 10 - Windows 11 List Light */ -/* source: https://github.com/newmanls */ - -/* Integrating Wallust and More tweaks */ - -/* ---- Configuration ---- */ -configuration { - dpi: 1; - show-icons: true; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/*****----- Global Properties -----*****/ -* { - font: "JetBrainsMono Nerd Font SemiBold 13"; - - bg0 : #ffffff80; - bg1 : #f9f9f9bf; - bg2 : #f7f7f7; - bg3 : #fefefebf; - fg0 : #1a1a1a; - fg1 : #5f5f5f; - accent : #005fb8; - urgent : @accent; - - background-color : transparent; - text-color : @fg0; - - margin : 0; - padding : 0; - spacing : 0; -} - -element-icon, element-text, scrollbar { - cursor: pointer; -} - -window { - location : south; - width : 40%; - height : 50%; - y-offset : -10px; - - background-color : @bg1; - border-radius : 8px; -} - -mainbox { - padding : 24px; - spacing : 24px; -} - -inputbar { - padding : 8px; - spacing : 4px; - children : [ icon-search, entry ]; - border : 0 0 2px 0 solid; - border-color : @accent; - border-radius : 2px; - background-color : @bg0; -} - -icon-search, entry, element-icon, element-text { - vertical-align: 0.5; -} - -icon-search { - expand : false; - filename : "search-symbolic"; - size : 24px; -} - -entry { - placeholder : "Type here to search"; - placeholder-color : @fg1; -} - -textbox { - padding : 4px 8px; - background-color : @bg2; -} - -listview { - columns : 2; - spacing : 8px; - fixed-height : true; - fixed-columns : true; -} - -element { - font: "JetBrainsMono Nerd Font SemiBold 11"; - spacing : 1em; - padding : 8px; - border-radius : 2px; -} - -element normal urgent { - text-color: @urgent; -} - -element normal active { - text-color: @accent; -} - -element alternate active { - text-color: @accent; -} - -element selected active { - text-color: @accent; -} - -element selected { - background-color: @bg3; -} - -element selected urgent { - background-color: @urgent; -} - -element-icon { - size: 1.5em; -} - -element-text { - text-color: inherit; -} diff --git a/assets/rofi/themes/KooL_style_9.rasi b/assets/rofi/themes/KooL_style_9.rasi deleted file mode 100644 index d09e58e2..00000000 --- a/assets/rofi/themes/KooL_style_9.rasi +++ /dev/null @@ -1,190 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 9 */ -/* Modified version of Rofi Config which was submitted by https://github.com/lonerOrz via Discord */ - -/* Integrating Wallust and More tweaks */ - - -configuration { - show-icons: true; - display-drun: "๏‘„"; - drun-display-format: "{icon} {name}"; - disable-history: false; - click-to-exit: true; - location: 0; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/*****----- Global Properties -----*****/ -* { - font: "JetBrainsMono Nerd Font SemiBold 13"; - - BG: @background; - BGA: @color11; - FG: @foreground; - FGA: #F28FADff; - BDR: @color12; - SEL: #1E1E2Eff; - UGT: #F28FADff; - IMG: #FAE3B0ff; - OFF: #575268ff; - ON: #ABE9B3ff; -} - -/* ---- Window ---- */ -window { - transparency: "real"; - background-color: @BG; - text-color: @FG; - border: 2px; - border-color: @BDR; - border-radius: 10px; - width: 25%; - anchor: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 8px; - background-color: @BG; - text-color: @IMG; -} - -textbox-prompt-colon { - expand: false; - str: "๏€‚"; - border-radius: 100%; - background-color: @SEL; - text-color: @FG; - padding: 8px 12px 8px 12px; -} - -/* ---- Entry input ---- */ -entry { - background-color: @BG; - text-color: @FG; - placeholder-color: @FG; - expand: true; - horizontal-align: 0; - placeholder: " Search..."; - blink: true; - border: 0px 0px 2px 0px; - border-color: @BDR; - border-radius: 10px; - padding: 8px; -} - -inputbar { - children: [ textbox-prompt-colon, entry ]; - background-color: @BG; - text-color: @FG; - expand: false; - border: 0px 0px 0px 0px; - border-radius: 0px; - border-color: @BDR; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -case-indicator { - background-color: @BG; - text-color: @FG; - spacing: 0; -} - -/* ---- Listview ---- */ -listview { - background-color: @BG; - columns: 1; - lines: 7; - spacing: 4px; - cycle: true; - dynamic: true; - layout: vertical; - scrollbar: true; -} - -mainbox { - background-color: @BG; - children: [ inputbar, listview ]; - spacing: 15px; - padding: 15px; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - border-color: @color12; - handle-color: @color11; - handle-width: 10px ; - padding: 0; -} - -/* ---- Elements ---- */ -element { - font: "JetBrainsMono Nerd Font SemiBold 11"; - background-color: @BG; - text-color: @FG; - orientation: horizontal; - border-radius: 4px; - padding: 6px 6px 6px 6px; -} - -element-icon { - background-color: inherit; - text-color: inherit; - horizontal-align: 0.5; - vertical-align: 0.5; - size: 24px; - border: 0px; -} - -element-text { - background-color: inherit; - text-color: inherit; - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 2px 0px 2px 2px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @UGT; - text-color: @FG; - border-radius: 9px; -} - -element normal.active, -element alternate.active { - background-color: @BGA; - text-color: @FG; -} - -element selected { - background-color: @BGA; - text-color: @SEL; - border: 0px 0px 0px 0px; - border-radius: 10px; - border-color: @BDR; -} - -element selected.urgent { - background-color: @UGT; - text-color: @FG; -} - -element selected.active { - background-color: @BGA; - color: @FG; -} diff --git a/config/rofi/config-search.rasi b/config/rofi/config-search.rasi index b216d0a6..08600b30 100644 --- a/config/rofi/config-search.rasi +++ b/config/rofi/config-search.rasi @@ -7,13 +7,13 @@ window { width: 40%; height: inherit; - background-color: inherit; - text-color: inherit; - y-offset: 6px; + background-color: black/25%; + y-offset: 10px; location: north; children: [ "entry" ]; border: 2px; - border-color: white/50%; + border-color: white/25%; + border-radius: 20px; } /* ---- Entry ---- */ @@ -21,5 +21,5 @@ entry { placeholder: " ๐Ÿ”Ž Google Search via web browser"; padding: 15px; border: 0px; + text-color: white; } - -- cgit v1.2.3 From 34ec8fe040c036b4c6f5d426a7bad66ebddfc8f2 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 12 Feb 2025 00:54:00 +0900 Subject: Updated New rofi themes --- assets/rofi/themes/KooL_style-1.rasi | 2 +- assets/rofi/themes/KooL_style-10-Fancy.rasi | 12 +++++------ .../themes/KooL_style-11-Win11-list-light.rasi | 2 +- assets/rofi/themes/KooL_style-2-Dark.rasi | 8 ++++---- assets/rofi/themes/KooL_style-2-Light.rasi | 6 +++--- assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi | 2 +- assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 2 +- assets/rofi/themes/KooL_style-4.rasi | 6 +++--- assets/rofi/themes/KooL_style-5.rasi | 4 ++-- assets/rofi/themes/KooL_style-6.rasi | 3 +-- assets/rofi/themes/KooL_style-8.rasi | 23 +++++++++++++-------- assets/rofi/themes/KooL_style-9.rasi | 22 +++++++++++++++++++- config/hypr/UserConfigs/UserKeybinds.conf | 12 +++++------ config/hypr/UserScripts/00-Readme | 0 config/hypr/UserScripts/RofiCalc.sh | 2 +- config/hypr/configs/Keybinds.conf | 24 ++++++++++++++-------- config/rofi/config-calc.rasi | 1 + config/rofi/config-search.rasi | 4 +--- 18 files changed, 81 insertions(+), 54 deletions(-) mode change 100755 => 100644 config/hypr/UserScripts/00-Readme (limited to 'config') diff --git a/assets/rofi/themes/KooL_style-1.rasi b/assets/rofi/themes/KooL_style-1.rasi index 786e5b2f..556c86a1 100644 --- a/assets/rofi/themes/KooL_style-1.rasi +++ b/assets/rofi/themes/KooL_style-1.rasi @@ -213,7 +213,7 @@ element-icon { cursor: inherit; } element-text { - font: "JetBrainsMono Nerd Font SemiBold 11"; + font: "JetBrainsMono Nerd Font SemiBold 12"; background-color: transparent; text-color: inherit; cursor: inherit; diff --git a/assets/rofi/themes/KooL_style-10-Fancy.rasi b/assets/rofi/themes/KooL_style-10-Fancy.rasi index 80203b6f..8da2e0e7 100644 --- a/assets/rofi/themes/KooL_style-10-Fancy.rasi +++ b/assets/rofi/themes/KooL_style-10-Fancy.rasi @@ -66,7 +66,6 @@ window { children: [ inputbar, message, wrapper-mode-switcher, listview , pagerbox ]; } - pagerbox { expand: false; orientation: horizontal; @@ -229,6 +228,7 @@ sidebar { inputbar { text-color: @normal-foreground; padding: 0px 0px 0.5em; + children: [ wrapper ]; } case-indicator { text-color: @normal-foreground; @@ -237,9 +237,8 @@ case-indicator { wrapper { orientation: horizontal; text-color: black; - background-color: white / 70%; + background-color: white / 75%; border-color: grey; - border: 2px; border-radius: 5px; padding: 4px; @@ -270,12 +269,13 @@ icon-k { entry { enabled: true; expand: true; + background-color: white / 75%; placeholder: " ๐Ÿ–ฅ๏ธ Search "; vertical-align: 0.5; + border-radius: 5px; + padding: 4px; } -inputbar { - children: [ wrapper ]; -} + error-message { background-color: darkred/10%; diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi index 65809c4d..75da3b6e 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -12,8 +12,8 @@ configuration { me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; } - /*****----- Global Properties -----*****/ + * { font: "JetBrainsMono Nerd Font SemiBold 13"; diff --git a/assets/rofi/themes/KooL_style-2-Dark.rasi b/assets/rofi/themes/KooL_style-2-Dark.rasi index 934ea657..de16d833 100644 --- a/assets/rofi/themes/KooL_style-2-Dark.rasi +++ b/assets/rofi/themes/KooL_style-2-Dark.rasi @@ -64,14 +64,14 @@ inputbar { border: 0px 0px 2px 0px; border-radius: 0px; border-color: gray/20%; - background-color: transparent; + background-color: black/50%; children: [ "entry" ]; } entry { enabled: true; - background-color: transparent; - text-color: dimgray; + background-color: black/50%; + text-color: white/75%; cursor: text; placeholder: "Type to search"; placeholder-color: inherit; @@ -148,7 +148,7 @@ mode-switcher{ text-color: white; } button { - font: "JetBrainsMono Nerd Font SemiBold 10"; + font: "JetBrainsMono Nerd Font SemiBold 12"; padding: 6px; border: 0px solid; border-radius: 100%; diff --git a/assets/rofi/themes/KooL_style-2-Light.rasi b/assets/rofi/themes/KooL_style-2-Light.rasi index 3cd9266d..74eb8e32 100644 --- a/assets/rofi/themes/KooL_style-2-Light.rasi +++ b/assets/rofi/themes/KooL_style-2-Light.rasi @@ -41,7 +41,7 @@ window { padding: 0px; border-radius: 12px; cursor: "default"; - background-color: transparent; + background-color: inherit; } /*****----- Main Box -----*****/ @@ -60,7 +60,7 @@ inputbar { enabled: true; spacing: 0px; margin: 0px; - padding: 0px 0px 10px 0px; + padding: 0px 10px 10px 0px; border: 0px 0px 2px 0px; border-radius: 0px; border-color: gray/20%; @@ -70,7 +70,7 @@ inputbar { entry { enabled: true; - background-color: transparent; + background-color: inherit; text-color: black; cursor: text; placeholder: "Type to search"; diff --git a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi index 7ca3d4bf..d9b31251 100644 --- a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi +++ b/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland v2.3.10 (latest) - Default Config */ +/* KooL Hyprland Full Screen Style 3 v1 */ /* ---- Configuration ---- */ diff --git a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi index 6f1a3cef..7584b542 100644 --- a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ - +/* KooL Hyprland Rofi Style 3 - Full screen v2 */ /* credit: https://github.com/adi1090x/rofi */ /*****----- Configuration -----*****/ diff --git a/assets/rofi/themes/KooL_style-4.rasi b/assets/rofi/themes/KooL_style-4.rasi index fb25db61..7f4f0d4e 100644 --- a/assets/rofi/themes/KooL_style-4.rasi +++ b/assets/rofi/themes/KooL_style-4.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ - +/* KooL Hyprland Rofi Style 4 */ /* credit: https://github.com/adi1090x/rofi */ /*****----- Configuration -----*****/ @@ -89,7 +89,7 @@ mainbox { border: 0px solid; border-radius: 0px 0px 0px 0px; border-color: @border-color; - background-color: transparent; + background-color: inherit; children: [ "inputbar", "message", "custombox" ]; } @@ -132,7 +132,7 @@ textbox-prompt-colon { entry { enabled: true; padding: 5px 0px; - background-color: inherit; + background-color: @alternate-background; text-color: @foreground; cursor: text; placeholder: "Search..."; diff --git a/assets/rofi/themes/KooL_style-5.rasi b/assets/rofi/themes/KooL_style-5.rasi index 234567bc..bb70d0f8 100644 --- a/assets/rofi/themes/KooL_style-5.rasi +++ b/assets/rofi/themes/KooL_style-5.rasi @@ -118,7 +118,7 @@ entry { cursor: text; placeholder: " Search"; placeholder-color: inherit; - background-color: transparent; + background-color: @background; } /* ---- Mode Switcher ---- */ @@ -230,7 +230,7 @@ element-icon { } element-text { - font: "JetBrainsMono Nerd Font SemiBold 10"; + font: "JetBrainsMono Nerd Font SemiBold 12"; background-color: transparent; text-color: @foreground; cursor: inherit; diff --git a/assets/rofi/themes/KooL_style-6.rasi b/assets/rofi/themes/KooL_style-6.rasi index f6b1307b..30028218 100644 --- a/assets/rofi/themes/KooL_style-6.rasi +++ b/assets/rofi/themes/KooL_style-6.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland v2.2.10 (old) - Default Config */ +/* KooL Hyprland Rofi Style 6 */ /* ---- Configuration ---- */ @@ -199,7 +199,6 @@ element-icon { } element-text { background-color: transparent; - font: "Fira Code SemiBold 12"; text-color: inherit; cursor: inherit; vertical-align: 0.5; diff --git a/assets/rofi/themes/KooL_style-8.rasi b/assets/rofi/themes/KooL_style-8.rasi index 00e5c9cf..b74f801f 100644 --- a/assets/rofi/themes/KooL_style-8.rasi +++ b/assets/rofi/themes/KooL_style-8.rasi @@ -218,16 +218,21 @@ element-text { } /* ---- Message ---- */ -error-message { - text-color: @foreground; - background-color: @background; - text-transform: capitalize; - children: [ "textbox" ]; +message { + background-color: transparent; + border: 0px; } - textbox { - text-color: inherit; - background-color: inherit; + padding: 12px; + border-radius: 10px; + background-color: @background; + text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.5; + horizontal-align: 0.0; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: @background; + text-color: @foreground; } diff --git a/assets/rofi/themes/KooL_style-9.rasi b/assets/rofi/themes/KooL_style-9.rasi index d09e58e2..a74e64eb 100644 --- a/assets/rofi/themes/KooL_style-9.rasi +++ b/assets/rofi/themes/KooL_style-9.rasi @@ -132,7 +132,7 @@ scrollbar { /* ---- Elements ---- */ element { - font: "JetBrainsMono Nerd Font SemiBold 11"; + font: "JetBrainsMono Nerd Font SemiBold 12"; background-color: @BG; text-color: @FG; orientation: horizontal; @@ -188,3 +188,23 @@ element selected.active { background-color: @BGA; color: @FG; } + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + padding: 12px; + border-radius: 10px; + background-color: @background; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.0; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: @background; + text-color: @foreground; +} \ No newline at end of file diff --git a/config/hypr/UserConfigs/UserKeybinds.conf b/config/hypr/UserConfigs/UserKeybinds.conf index ebcd2e6d..a615ef68 100644 --- a/config/hypr/UserConfigs/UserKeybinds.conf +++ b/config/hypr/UserConfigs/UserKeybinds.conf @@ -13,21 +13,19 @@ $UserScripts = $HOME/.config/hypr/UserScripts # rofi App launcher #bindr = $mainMod, $mainMod_L, exec, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window # Super Key to Launch rofi menu -bind = $mainMod, D, exec, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window #Main Menu +bind = $mainMod, D, exec, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window # Main Menu (APP Launcher) -bind = $mainMod CTRL, F, fullscreen, 1 # fake full screen +bind = $mainMod, B, exec, xdg-open "http:// &" # default browser -# ags overview -bind = $mainMod, A, exec, pkill rofi || true && ags -t 'overview' +bind = $mainMod, A, exec, pkill rofi || true && ags -t 'overview' # ags desktop overview bind = $mainMod, Return, exec, $term #terminal -bind = $mainMod, T, exec, $files #file manager +bind = $mainMod, E, exec, $files #file manager bind = $mainMod CTRL, R, exec, $scriptsDir/RofiThemeSelector.sh # modified Rofi Theme Selector - bind = $mainMod ALT, C, exec, $UserScripts/RofiCalc.sh # calculator (qalculate) -# pyprland +# pyprland (This is not available in Debian and Ubuntu) bind = $mainMod SHIFT, Return, exec, pypr toggle term # Dropdown terminal bind = $mainMod, Z, exec, pypr zoom # Toggle Desktop Zoom diff --git a/config/hypr/UserScripts/00-Readme b/config/hypr/UserScripts/00-Readme old mode 100755 new mode 100644 diff --git a/config/hypr/UserScripts/RofiCalc.sh b/config/hypr/UserScripts/RofiCalc.sh index 7bef4b6c..4b3b8b69 100755 --- a/config/hypr/UserScripts/RofiCalc.sh +++ b/config/hypr/UserScripts/RofiCalc.sh @@ -16,7 +16,7 @@ while true; do result=$( rofi -i -dmenu \ -config $rofi_theme \ - -mesg "$result = $calc_result" + -mesg "$result = $calc_result" ) if [ $? -ne 0 ]; then diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 2ea3bfa3..7cacae40 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -10,12 +10,18 @@ $configs = $HOME/.config/hypr/configs $UserConfigs = $HOME/.config/hypr/UserConfigs $UserScripts = $HOME/.config/hypr/UserScripts + bind = CTRL ALT, Delete, exec, hyprctl dispatch exit 0 -bind = $mainMod, Q, killactive, -bind = $mainMod, F, fullscreen -bind = $mainMod SHIFT, Q, exec, $scriptsDir/KillActiveProcess.sh -bind = $mainMod SHIFT, F, togglefloating, -bind = $mainMod ALT, F, exec, hyprctl dispatch workspaceopt allfloat +bind = $mainMod, Q, killactive, #kill +bind = $mainMod SHIFT, Q, exec, $scriptsDir/KillActiveProcess.sh # Kill active process +bind = $mainMod SHIFT, F, fullscreen # whole full screen +bind = $mainMod CTRL, F, fullscreen, 1 # fake full screen +bind = $mainMod, SPACE, togglefloating, #Float Mode +bind = $mainMod ALT, SPACE, exec, hyprctl dispatch workspaceopt allfloat #All Float Mode + +#bind = $mainMod, SPACE, exec, $scriptsDir/Float.sh # float mode +#bind = $mainMod ALT, SPACE, exec, $scriptsDir/Float.sh --allfloat # all float mode + bind = CTRL ALT, L, exec, $scriptsDir/LockScreen.sh # screen lock bind = CTRL ALT, P, exec, $scriptsDir/Wlogout.sh # power menu @@ -24,24 +30,24 @@ bind = $mainMod, H, exec, $scriptsDir/KeyHints.sh # help file bind = $mainMod ALT, R, exec, $scriptsDir/Refresh.sh # Refresh waybar, swaync, rofi bind = $mainMod ALT, E, exec, $scriptsDir/RofiEmoji.sh # emoji menu bind = $mainMod, S, exec, $scriptsDir/RofiSearch.sh # Google search using rofi -bind = $mainMod SHIFT, B, exec, $scriptsDir/ChangeBlur.sh # Toggle blur settings +bind = $mainMod ALT, O, exec, $scriptsDir/ChangeBlur.sh # Toggle blur settings bind = $mainMod SHIFT, G, exec, $scriptsDir/GameMode.sh # Toggle animations ON/OFF bind = $mainMod ALT, L, exec, $scriptsDir/ChangeLayout.sh # Toggle Master or Dwindle Layout bind = $mainMod ALT, V, exec, $scriptsDir/ClipManager.sh # Clipboard Manager bind = $mainMod SHIFT, N, exec, swaync-client -t -sw # swayNC notification panel # FEATURES / EXTRAS (UserScripts) -bind = $mainMod, E, exec, $UserScripts/QuickEdit.sh # Quick Edit Hyprland Settings +bind = $mainMod SHIFT, E, exec, $UserScripts/QuickEdit.sh # Quick Edit Hyprland Settings bind = $mainMod SHIFT, M, exec, $UserScripts/RofiBeats.sh # online music using rofi bind = $mainMod, W, exec, $UserScripts/WallpaperSelect.sh # Select wallpaper to apply bind = $mainMod SHIFT, W, exec, $UserScripts/WallpaperEffects.sh # Wallpaper Effects by imagemagick bind = CTRL ALT, W, exec, $UserScripts/WallpaperRandom.sh # Random wallpapers -bind = $mainMod ALT, O, exec, hyprctl setprop active opaque toggle # disable opacity on active window +bind = $mainMod CTRL, O, exec, hyprctl setprop active opaque toggle # disable opacity on active window bind = $mainMod SHIFT, K, exec, $scriptsDir/KeyBinds.sh # search keybinds via rofi bind = $mainMod SHIFT, A, exec, $scriptsDir/Animations.sh #hyprland animations menu # Waybar / Bar related -bind = $mainMod, B, exec, pkill -SIGUSR1 waybar # Toggle hide/show waybar +bind = $mainMod CTRL ALT, B, exec, pkill -SIGUSR1 waybar # Toggle hide/show waybar bind = $mainMod CTRL, B, exec, $scriptsDir/WaybarStyles.sh # Waybar Styles Menu bind = $mainMod ALT, B, exec, $scriptsDir/WaybarLayout.sh # Waybar Layout Menu diff --git a/config/rofi/config-calc.rasi b/config/rofi/config-calc.rasi index 61be7642..60169c31 100644 --- a/config/rofi/config-calc.rasi +++ b/config/rofi/config-calc.rasi @@ -7,6 +7,7 @@ /* ---- Mainbox ---- */ mainbox { children: [ "entry", "message" ]; + height: inherit; } diff --git a/config/rofi/config-search.rasi b/config/rofi/config-search.rasi index 08600b30..a2ff66ee 100644 --- a/config/rofi/config-search.rasi +++ b/config/rofi/config-search.rasi @@ -7,13 +7,11 @@ window { width: 40%; height: inherit; - background-color: black/25%; y-offset: 10px; location: north; children: [ "entry" ]; border: 2px; border-color: white/25%; - border-radius: 20px; } /* ---- Entry ---- */ @@ -21,5 +19,5 @@ entry { placeholder: " ๐Ÿ”Ž Google Search via web browser"; padding: 15px; border: 0px; - text-color: white; + border-radius: 12px; } -- cgit v1.2.3 From 772411cd39370bca3a89b5ee92bda3c5ea8e1b7e Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 12 Feb 2025 12:52:11 +0900 Subject: updated Keyhints and added Keyhints in the Window rules. --- config/hypr/UserConfigs/WindowRules.conf | 3 ++ config/hypr/scripts/KeyHints.sh | 57 ++++++++++---------------------- copy.sh | 20 +++++++---- 3 files changed, 35 insertions(+), 45 deletions(-) (limited to 'config') diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index fc23c079..01c5e674 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -76,6 +76,7 @@ windowrulev2 = tag +viewer, class:^(eog|org.gnome.Loupe)$ # image viewer # POSITION # windowrulev2 = center,floating:1 # warning, it cause even the menu to float and center. +windowrulev2 = center, title:^(KooL Quick Cheat Sheet)$ windowrulev2 = center, class:([Tt]hunar), title:negative:(.*[Tt]hunar.*) windowrulev2 = center, title:^(ROG Control)$ windowrulev2 = center, title:^(Keybindings)$ @@ -106,6 +107,7 @@ windowrulev2 = workspace 6 silent, class:^(.virt-manager-wrapped)$ windowrulev2 = workspace 9 silent, tag:multimedia* # FLOAT +windowrulev2 = float, title:^(KooL Quick Cheat Sheet)$ windowrulev2 = float, tag:wallpaper* windowrulev2 = float, tag:settings* windowrulev2 = float, tag:viewer* @@ -147,6 +149,7 @@ windowrulev2 = opacity 0.95 0.75, title:^(Picture-in-Picture)$ # SIZE +windowrulev2 = size 70% 90%, title:^(KooL Quick Cheat Sheet)$ windowrulev2 = size 70% 70%, tag:wallpaper* windowrulev2 = size 70% 70%, tag:settings* windowrulev2 = size 60% 70%, class:^([Ww]hatsapp-for-linux)$ diff --git a/config/hypr/scripts/KeyHints.sh b/config/hypr/scripts/KeyHints.sh index 49ee7e52..52e3ce41 100755 --- a/config/hypr/scripts/KeyHints.sh +++ b/config/hypr/scripts/KeyHints.sh @@ -1,44 +1,22 @@ #!/bin/bash # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## -# Keyhints. Idea got from Garuda Hyprland # GDK BACKEND. Change to either wayland or x11 if having issues BACKEND=wayland -# Check if rofi is running and kill it if it is -if pgrep -x "rofi" > /dev/null; then - pkill rofi +# Check if rofi or yad is running and kill them if they are +if pidof rofi > /dev/null; then + pkill rofi fi -# Detect monitor resolution and scale -x_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .width') -y_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .height') -hypr_scale=$(hyprctl -j monitors | jq '.[] | select (.focused == true) | .scale' | sed 's/\.//') - -# Calculate width and height based on percentages and monitor resolution -width=$((x_mon * hypr_scale / 100)) -height=$((y_mon * hypr_scale / 100)) - -# Set maximum width and height -max_width=1200 -max_height=1000 - -# Set percentage of screen size for dynamic adjustment -percentage_width=90 -percentage_height=100 - -# Calculate dynamic width and height -dynamic_width=$((width * percentage_width / 100)) -dynamic_height=$((height * percentage_height / 100)) - -# Limit width and height to maximum values -dynamic_width=$(($dynamic_width > $max_width ? $max_width : $dynamic_width)) -dynamic_height=$(($dynamic_height > $max_height ? $max_height : $dynamic_height)) +if pidof yad > /dev/null; then + pkill yad +fi # Launch yad with calculated width and height -GDK_BACKEND=$BACKEND yad --width=$dynamic_width --height=$dynamic_height \ +GDK_BACKEND=$BACKEND yad \ --center \ - --title="Keybindings" \ + --title="KooL Quick Cheat Sheet" \ --no-buttons \ --list \ --column=Key: \ @@ -49,10 +27,11 @@ GDK_BACKEND=$BACKEND yad --width=$dynamic_width --height=$dynamic_height \ "๏…ผ SHIFT K" "Searchable Keybinds" "(Search all Keybinds via rofi)" \ "" "" "" \ "๏…ผ enter" "Terminal" "(kitty)" \ -"๏…ผ SHIFT enter" "DropDown Terminal" "(Not available in Debian and Ubuntu)" \ +"๏…ผ SHIFT enter" "DropDown Terminal" "(kitty-pyprland)" \ +"๏…ผ SHIFT K" "Searchable Keybinds" "(Keybinds)" \ "๏…ผ A" "Desktop Overview" "(AGS Overview)" \ "๏…ผ D" "Application Launcher" "(rofi-wayland)" \ -"๏…ผ T" "Open File Manager" "(Thunar)" \ +"๏…ผ E" "Open File Manager" "(Thunar)" \ "๏…ผ S" "Google Search using rofi" "(rofi)" \ "๏…ผ Q" "close active window" "(not kill)" \ "๏…ผ Shift Q " "kills an active window" "(kill)" \ @@ -61,7 +40,7 @@ GDK_BACKEND=$BACKEND yad --width=$dynamic_width --height=$dynamic_height \ "๏…ผ W" "Choose wallpaper" "(Wallpaper Menu)" \ "๏…ผ Shift W" "Choose wallpaper effects" "(imagemagick + swww)" \ "CTRL ALT W" "Random wallpaper" "(via swww)" \ -"๏…ผ B" "Hide/UnHide Waybar" "waybar" \ +"๏…ผ CTRL ALT B" "Hide/UnHide Waybar" "waybar" \ "๏…ผ CTRL B" "Choose waybar styles" "(waybar styles)" \ "๏…ผ ALT B" "Choose waybar layout" "(waybar layout)" \ "๏…ผ ALT R" "Reload Waybar swaync Rofi" "CHECK NOTIFICATION FIRST!!!" \ @@ -75,17 +54,17 @@ GDK_BACKEND=$BACKEND yad --width=$dynamic_width --height=$dynamic_height \ "CTRL ALT P" "power-menu" "(wlogout)" \ "CTRL ALT L" "screen lock" "(hyprlock)" \ "CTRL ALT Del" "Hyprland Exit" "(SAVE YOUR WORK!!!)" \ -"๏…ผ F" "Fullscreen" "Toggles to full screen" \ +"๏…ผ SHIFT F" "Fullscreen" "Toggles to full screen" \ "๏…ผ CTL F" "Fake Fullscreen" "Toggles to fake full screen" \ "๏…ผ ALT L" "Toggle Dwindle | Master Layout" "Hyprland Layout" \ -"๏…ผ Shift F" "Toggle float" "single window" \ -"๏…ผ ALT F" "Toggle all windows to float" "all windows" \ -"๏…ผ Shift B" "Toggle Blur" "normal or less blur" \ +"๏…ผ SPACEBAR" "Toggle float" "single window" \ +"๏…ผ ALT SPACEBAR" "Toggle all windows to float" "all windows" \ +"๏…ผ ALT O" "Toggle Blur" "normal or less blur" \ "๏…ผ Shift A" "Animations Menu" "Choose Animations via rofi" \ "๏…ผ SHIFT G" "Gamemode! All animations OFF or ON" "toggle" \ "๏…ผ ALT E" "Rofi Emoticons" "Emoticon" \ "๏…ผ ALT V" "Clipboard Manager" "cliphist" \ -"๏…ผ H" "Launch this app" "" \ -"๏…ผ E" "View or EDIT Keybinds, Settings, Monitor" "" \ +"๏…ผ H" "Launch this QUICK CHEAT" "" \ +"๏…ผ SHIFT E" "View or EDIT Keybinds, Settings, Monitor" "" \ "" "" "" \ "More tips:" "https://github.com/JaKooLit/Hyprland-Dots/wiki" ""\ diff --git a/copy.sh b/copy.sh index ba642acb..467d7fb1 100755 --- a/copy.sh +++ b/copy.sh @@ -31,14 +31,20 @@ if [[ $EUID -eq 0 ]]; then exit 1 fi -printf "\n%.0s" {1..2} +printf "\n%.0s" {1..1} echo -e "\e[35m - โ•ฆโ•”โ•โ”Œโ”€โ”โ”Œโ”€โ”โ•ฆ โ•”โ•ฆโ•—โ”Œโ”€โ”โ”Œโ”ฌโ”โ”Œโ”€โ” - โ• โ•ฉโ•—โ”‚ โ”‚โ”‚ โ”‚โ•‘ โ•‘โ•‘โ”‚ โ”‚ โ”‚ โ””โ”€โ” 2025 - โ•ฉ โ•ฉโ””โ”€โ”˜โ””โ”€โ”˜โ•ฉโ•โ• โ•โ•ฉโ•โ””โ”€โ”˜ โ”ด โ””โ”€โ”˜ + โ•ฆโ•”โ•โ”Œโ”€โ”โ”Œโ”€โ”โ•ฆ โ•”โ•ฆโ•—โ”Œโ”€โ”โ”Œโ”ฌโ”โ”Œโ”€โ” + โ• โ•ฉโ•—โ”‚ โ”‚โ”‚ โ”‚โ•‘ โ•‘โ•‘โ”‚ โ”‚ โ”‚ โ””โ”€โ” 2025 + โ•ฉ โ•ฉโ””โ”€โ”˜โ””โ”€โ”˜โ•ฉโ•โ• โ•โ•ฉโ•โ””โ”€โ”˜ โ”ด โ””โ”€โ”˜ \e[0m" printf "\n%.0s" {1..1} - + +####### Announcement +echo "${MAGENTA} H - E - L - L - O !${RESET}" +echo "${SKY_BLUE}KooL Hyprland v2.3.11 have some Minor Keybinds changes!${RESET}" +echo "${YELLOW}SUPER H for Keyhints and/or SUPER SHIFT K to search for Keybinds ${RESET}" +printf "\n%.0s" {1..1} + # Create Directory for Copy Logs if [ ! -d Copy-Logs ]; then mkdir Copy-Logs @@ -99,6 +105,8 @@ if [ -d "$HOME/.icons/Bibata-Modern-Ice/hyprcursors" ]; then sed -i 's/^#env = HYPRCURSOR_SIZE,24/env = HYPRCURSOR_SIZE,24/' "$HYPRCURSOR_ENV_FILE" fi +printf "\n%.0s" {1..1} + # Function to detect keyboard layout using localectl or setxkbmap detect_layout() { if command -v localectl >/dev/null 2>&1; then @@ -151,7 +159,7 @@ ${MAGENTA} NOTE:${RESET} done fi -printf "${NOTE} Detecting keyboard layout to prepare proper Hyprland Settings\n\n" +printf "${NOTE} Detecting keyboard layout to prepare proper Hyprland Settings\n" # Prompt the user to confirm whether the detected layout is correct while true; do -- cgit v1.2.3 From 279f620e7fe48bb351b9f2b8616951ce68303ec2 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 12 Feb 2025 18:57:11 +0900 Subject: rofi updates Keyhints updated in preparation for the new changes --- assets/rofi/themes/KooL_style-1.rasi | 9 ++++--- assets/rofi/themes/KooL_style-10-Fancy.rasi | 9 +++++-- .../rofi/themes/KooL_style-11-Win11-list-dark.rasi | 10 ++++---- .../themes/KooL_style-11-Win11-list-light.rasi | 20 +++++++++------- assets/rofi/themes/KooL_style-2-Dark.rasi | 9 ++++--- assets/rofi/themes/KooL_style-2-Light.rasi | 8 +++---- assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi | 8 +++++-- assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 6 ++++- assets/rofi/themes/KooL_style-4.rasi | 6 ++++- assets/rofi/themes/KooL_style-5.rasi | 9 ++++--- assets/rofi/themes/KooL_style-6.rasi | 6 ++++- assets/rofi/themes/KooL_style-7.rasi | 8 +++++-- assets/rofi/themes/KooL_style-8.rasi | 8 +++++-- assets/rofi/themes/KooL_style-9.rasi | 12 ++++++---- config/hypr/UserConfigs/WindowRules.conf | 2 +- config/hypr/scripts/KeyHints.sh | 14 +++++------ config/hypr/scripts/Refresh.sh | 2 +- config/rofi/config-Animations.rasi | 2 +- config/rofi/config-rofi-Beats-menu.rasi | 3 ++- config/rofi/config-rofi-Beats.rasi | 5 ++++ config/rofi/config.rasi | 7 ++++++ copy.sh | 28 ++++++++++++++++++---- 22 files changed, 132 insertions(+), 59 deletions(-) (limited to 'config') diff --git a/assets/rofi/themes/KooL_style-1.rasi b/assets/rofi/themes/KooL_style-1.rasi index 556c86a1..b8f58fff 100644 --- a/assets/rofi/themes/KooL_style-1.rasi +++ b/assets/rofi/themes/KooL_style-1.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Style 1*/ +/* KooL Hyprland Rofi Style 1 */ /* ---- Configuration ---- */ @@ -23,7 +23,6 @@ configuration { /* ---- Global Properties ---- */ * { - font: "JetBrainsMono Nerd Font SemiBold 13"; background-alt: @color1; selected: @color12; active: @color11; @@ -34,6 +33,10 @@ configuration { border-color: @selected; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} /* ---- Window ---- */ window { // Default @@ -213,7 +216,7 @@ element-icon { cursor: inherit; } element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; + size: 1%; background-color: transparent; text-color: inherit; cursor: inherit; diff --git a/assets/rofi/themes/KooL_style-10-Fancy.rasi b/assets/rofi/themes/KooL_style-10-Fancy.rasi index 8da2e0e7..376cd3da 100644 --- a/assets/rofi/themes/KooL_style-10-Fancy.rasi +++ b/assets/rofi/themes/KooL_style-10-Fancy.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Style 10 - Fancy */ +/* KooL Hyprland Rofi Style 10 - Fancy */ /* Credit to DaveDavenport. I have only some few things changed */ /******************************************************************************* @@ -12,7 +12,6 @@ /* ---- Configuration ---- */ configuration { - font: "JetBrainsMono Nerd Font SemiBold 13"; modi: "drun,run,filebrowser"; show-icons: true; drun-display-format: "{name}"; @@ -49,6 +48,12 @@ configuration { active-background: rgba ( 39, 40, 34, 0 % ); selected-active-background: rgba ( 20, 20, 17, 100 % ); } + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + window { border-color: darkgray/30%; background-color: black/50%; diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi index f0a7d9e6..d8958455 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 10 - Windows 11 List Dark */ +/* KooL Hyprland Rofi Style 11 - Windows 11 List Dark */ /* source: https://github.com/newmanls */ /* Integrating Wallust and More tweaks */ @@ -15,8 +15,6 @@ configuration { /*****----- Global Properties -----*****/ * { - font: "JetBrainsMono Nerd Font SemiBold 13"; - bg0 : black/50%; bg1 : black/40%; bg2 : black/10%; @@ -34,6 +32,11 @@ configuration { spacing : 0; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + element-icon, element-text, scrollbar { cursor: pointer; } @@ -91,7 +94,6 @@ listview { } element { - font: "JetBrainsMono Nerd Font SemiBold 11"; spacing : 1em; padding : 8px; border-radius : 2px; diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi index 75da3b6e..8e2584b5 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -1,22 +1,20 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 10 - Windows 11 List Light */ +/* KooL Hyprland Rofi Style 11 - Windows 11 List Light */ /* source: https://github.com/newmanls */ /* Integrating Wallust and More tweaks */ /* ---- Configuration ---- */ configuration { - dpi: 1; - show-icons: true; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; + dpi: 1; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; } /*****----- Global Properties -----*****/ * { - font: "JetBrainsMono Nerd Font SemiBold 13"; - bg0 : #ffffff80; bg1 : #f9f9f9bf; bg2 : #f7f7f7; @@ -34,6 +32,11 @@ configuration { spacing : 0; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + element-icon, element-text, scrollbar { cursor: pointer; } @@ -91,7 +94,6 @@ listview { } element { - font: "JetBrainsMono Nerd Font SemiBold 11"; spacing : 1em; padding : 8px; border-radius : 2px; diff --git a/assets/rofi/themes/KooL_style-2-Dark.rasi b/assets/rofi/themes/KooL_style-2-Dark.rasi index de16d833..036b7fae 100644 --- a/assets/rofi/themes/KooL_style-2-Dark.rasi +++ b/assets/rofi/themes/KooL_style-2-Dark.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 2 Dark */ +/* KooL Hyprland Rofi Style 2 Dark */ /* Source: https://github.com/adi1090x/rofi */ @@ -19,9 +19,9 @@ configuration { me-accept-entry: "MousePrimary"; } -/*****----- Global Properties -----*****/ -* { - font: "JetBrainsMono Nerd Font SemiBold 13"; +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; } /*****----- Main Window -----*****/ @@ -148,7 +148,6 @@ mode-switcher{ text-color: white; } button { - font: "JetBrainsMono Nerd Font SemiBold 12"; padding: 6px; border: 0px solid; border-radius: 100%; diff --git a/assets/rofi/themes/KooL_style-2-Light.rasi b/assets/rofi/themes/KooL_style-2-Light.rasi index 74eb8e32..9a8677ab 100644 --- a/assets/rofi/themes/KooL_style-2-Light.rasi +++ b/assets/rofi/themes/KooL_style-2-Light.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 2 Light */ +/* KooL Hyprland Rofi Style 2 Light */ /* credit: https://github.com/adi1090x/rofi */ @@ -19,9 +19,9 @@ configuration { me-accept-entry: "MousePrimary"; } -/*****----- Global Properties -----*****/ -* { - font: "JetBrainsMono Nerd Font SemiBold 13"; +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; } /*****----- Main Window -----*****/ diff --git a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi index d9b31251..61a65ae8 100644 --- a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi +++ b/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi @@ -1,10 +1,9 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Full Screen Style 3 v1 */ +/* KooL Hyprland Rofi Style 3 - Full screen v1 */ /* ---- Configuration ---- */ configuration { - font: "JetBrainsMono Nerd Font SemiBold 13"; modi: "drun,run,filebrowser"; show-icons: true; display-drun: "Apps"; @@ -35,6 +34,11 @@ configuration { border-color: @selected; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /* ---- Global Properties ---- */ * { main-bg: @background; diff --git a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi index 7584b542..428c54a7 100644 --- a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -4,7 +4,6 @@ /*****----- Configuration -----*****/ configuration { - font: "JetBrainsMono Nerd Font SemiBold 13"; modi: "drun,run,filebrowser"; show-icons: true; display-drun: "๏€‰ Apps"; @@ -57,6 +56,11 @@ configuration { } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /*****----- Main Window -----*****/ window { transparency: "real"; diff --git a/assets/rofi/themes/KooL_style-4.rasi b/assets/rofi/themes/KooL_style-4.rasi index 7f4f0d4e..519f10f7 100644 --- a/assets/rofi/themes/KooL_style-4.rasi +++ b/assets/rofi/themes/KooL_style-4.rasi @@ -4,7 +4,6 @@ /*****----- Configuration -----*****/ configuration { - font: "JetBrainsMono Nerd Font SemiBold 13"; modi: "drun,run,filebrowser"; show-icons: true; display-drun: "๏€‰ Apps"; @@ -57,6 +56,11 @@ configuration { } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /*****----- Main Window -----*****/ window { /* properties for window widget */ diff --git a/assets/rofi/themes/KooL_style-5.rasi b/assets/rofi/themes/KooL_style-5.rasi index bb70d0f8..cd9a5ce2 100644 --- a/assets/rofi/themes/KooL_style-5.rasi +++ b/assets/rofi/themes/KooL_style-5.rasi @@ -1,9 +1,8 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland v2.1.13 (old) - Default Config */ +/* KooL Hyprland Rofi Style 5 */ /* ---- Configuration ---- */ configuration { - font: "JetBrainsMono Nerd Font SemiBold 13"; modi: "drun,run,filebrowser"; show-icons: true; display-drun: "Apps"; @@ -35,6 +34,11 @@ configuration { border-color: @selected; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /* ---- Window ---- */ window { width: 800px; @@ -230,7 +234,6 @@ element-icon { } element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; background-color: transparent; text-color: @foreground; cursor: inherit; diff --git a/assets/rofi/themes/KooL_style-6.rasi b/assets/rofi/themes/KooL_style-6.rasi index 30028218..f5e7de43 100644 --- a/assets/rofi/themes/KooL_style-6.rasi +++ b/assets/rofi/themes/KooL_style-6.rasi @@ -5,7 +5,6 @@ configuration { modi: "drun,run,filebrowser"; - font: "Fira Code SemiBold 13"; show-icons: true; display-drun: "Apps"; display-run: "Run"; @@ -35,6 +34,11 @@ configuration { border-color: @selected; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /* ---- Window ---- */ window { // Default diff --git a/assets/rofi/themes/KooL_style-7.rasi b/assets/rofi/themes/KooL_style-7.rasi index 4032390a..6d8c0201 100644 --- a/assets/rofi/themes/KooL_style-7.rasi +++ b/assets/rofi/themes/KooL_style-7.rasi @@ -1,11 +1,10 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 7 */ +/* KooL Hyprland Rofi Style 7 */ /* original design from: https://github.com/adi1090x/rofi */ /*****----- Configuration -----*****/ configuration { - font: "JetBrains Mono Nerd Font 13"; modi: "drun,run,filebrowser,window"; show-icons: true; display-drun: "๏†ฒโ€‰"; @@ -30,6 +29,11 @@ configuration { active: @color11; urgent: #8E3596; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /*****----- Main Window -----*****/ window { transparency: "real"; diff --git a/assets/rofi/themes/KooL_style-8.rasi b/assets/rofi/themes/KooL_style-8.rasi index b74f801f..ce262ad4 100644 --- a/assets/rofi/themes/KooL_style-8.rasi +++ b/assets/rofi/themes/KooL_style-8.rasi @@ -1,11 +1,10 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland - Style 13 */ +/* KooL Hyprland Rofi Style 8 */ /* ---- Configuration ---- */ configuration { modi: "drun,filebrowser,window,run"; - font: "JetBrainsMono Nerd Font SemiBold 13"; show-icons: true; display-drun: "๏†ฒโ€‰ apps"; display-run: "๏„ โ€‰ term"; @@ -29,6 +28,11 @@ configuration { border-radius: 12px; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /* ---- Window ---- */ window { width: 50%; diff --git a/assets/rofi/themes/KooL_style-9.rasi b/assets/rofi/themes/KooL_style-9.rasi index a74e64eb..5ac5c0f9 100644 --- a/assets/rofi/themes/KooL_style-9.rasi +++ b/assets/rofi/themes/KooL_style-9.rasi @@ -1,5 +1,5 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style 9 */ +/* KooL Hyprland Rofi Style 9 */ /* Modified version of Rofi Config which was submitted by https://github.com/lonerOrz via Discord */ /* Integrating Wallust and More tweaks */ @@ -22,9 +22,7 @@ configuration { @theme "~/.config/rofi/wallust/colors-rofi.rasi" /*****----- Global Properties -----*****/ -* { - font: "JetBrainsMono Nerd Font SemiBold 13"; - +* { BG: @background; BGA: @color11; FG: @foreground; @@ -37,6 +35,11 @@ configuration { ON: #ABE9B3ff; } +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + /* ---- Window ---- */ window { transparency: "real"; @@ -132,7 +135,6 @@ scrollbar { /* ---- Elements ---- */ element { - font: "JetBrainsMono Nerd Font SemiBold 12"; background-color: @BG; text-color: @FG; orientation: horizontal; diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index 01c5e674..f4729d32 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -149,7 +149,7 @@ windowrulev2 = opacity 0.95 0.75, title:^(Picture-in-Picture)$ # SIZE -windowrulev2 = size 70% 90%, title:^(KooL Quick Cheat Sheet)$ +windowrulev2 = size 65% 90%, title:^(KooL Quick Cheat Sheet)$ windowrulev2 = size 70% 70%, tag:wallpaper* windowrulev2 = size 70% 70%, tag:settings* windowrulev2 = size 60% 70%, class:^([Ww]hatsapp-for-linux)$ diff --git a/config/hypr/scripts/KeyHints.sh b/config/hypr/scripts/KeyHints.sh index 52e3ce41..d7c6a00d 100755 --- a/config/hypr/scripts/KeyHints.sh +++ b/config/hypr/scripts/KeyHints.sh @@ -23,13 +23,14 @@ GDK_BACKEND=$BACKEND yad \ --column=Description: \ --column=Command: \ --timeout-indicator=bottom \ -"ESC" "close this app" "๏—" "๏…ผ=๏…บ" "SUPER KEY (Windows Key)" "(SUPER KEY)" \ +"ESC" "close this app" "๏—" "๏…ผ = ๏…บ" "SUPER KEY (Windows Key Button)" "(SUPER KEY)" \ "๏…ผ SHIFT K" "Searchable Keybinds" "(Search all Keybinds via rofi)" \ "" "" "" \ +"๏…ผ SHIFT E" "View or EDIT Keybinds, Settings, Monitor" "" \ "๏…ผ enter" "Terminal" "(kitty)" \ -"๏…ผ SHIFT enter" "DropDown Terminal" "(kitty-pyprland)" \ -"๏…ผ SHIFT K" "Searchable Keybinds" "(Keybinds)" \ -"๏…ผ A" "Desktop Overview" "(AGS Overview)" \ +"๏…ผ SHIFT enter" "DropDown Terminal" "(Not available in Debian and Ubuntu)" \ +"๏…ผ B" "Launch Browser" "(Default browser)" \ +"๏…ผ A" "Desktop Overview" "(AGS - if opted to install)" \ "๏…ผ D" "Application Launcher" "(rofi-wayland)" \ "๏…ผ E" "Open File Manager" "(Thunar)" \ "๏…ผ S" "Google Search using rofi" "(rofi)" \ @@ -53,7 +54,7 @@ GDK_BACKEND=$BACKEND yad \ "ALT Print" "Screenshot active window" "active window only" \ "CTRL ALT P" "power-menu" "(wlogout)" \ "CTRL ALT L" "screen lock" "(hyprlock)" \ -"CTRL ALT Del" "Hyprland Exit" "(SAVE YOUR WORK!!!)" \ +"CTRL ALT Del" "Hyprland Exit" "(NOTE: Hyprland Will exit immediately)" \ "๏…ผ SHIFT F" "Fullscreen" "Toggles to full screen" \ "๏…ผ CTL F" "Fake Fullscreen" "Toggles to fake full screen" \ "๏…ผ ALT L" "Toggle Dwindle | Master Layout" "Hyprland Layout" \ @@ -65,6 +66,5 @@ GDK_BACKEND=$BACKEND yad \ "๏…ผ ALT E" "Rofi Emoticons" "Emoticon" \ "๏…ผ ALT V" "Clipboard Manager" "cliphist" \ "๏…ผ H" "Launch this QUICK CHEAT" "" \ -"๏…ผ SHIFT E" "View or EDIT Keybinds, Settings, Monitor" "" \ "" "" "" \ -"More tips:" "https://github.com/JaKooLit/Hyprland-Dots/wiki" ""\ +"More tips:" "https://github.com/JaKooLit/Hyprland-Dots/wiki" ""\ \ No newline at end of file diff --git a/config/hypr/scripts/Refresh.sh b/config/hypr/scripts/Refresh.sh index b041b19b..3bd22463 100755 --- a/config/hypr/scripts/Refresh.sh +++ b/config/hypr/scripts/Refresh.sh @@ -27,7 +27,7 @@ killall -SIGUSR2 waybar killall -SIGUSR2 swaync # quit ags & relaunch ags -ags -q && ags & +#ags -q && ags & # some process to kill for pid in $(pidof waybar rofi swaync ags swaybg); do diff --git a/config/rofi/config-Animations.rasi b/config/rofi/config-Animations.rasi index 7ce1c9f5..8aa22abf 100644 --- a/config/rofi/config-Animations.rasi +++ b/config/rofi/config-Animations.rasi @@ -37,4 +37,4 @@ element-text { horizontal-align: 0.0; vertical-align: 0.0; margin: 5px 30px 5px 30px; -} \ No newline at end of file +} diff --git a/config/rofi/config-rofi-Beats-menu.rasi b/config/rofi/config-rofi-Beats-menu.rasi index bcb45ac2..b6a573f8 100644 --- a/config/rofi/config-rofi-Beats-menu.rasi +++ b/config/rofi/config-rofi-Beats-menu.rasi @@ -11,7 +11,8 @@ mainbox { /* ---- Entry ---- */ entry { - expand: true; + expand: false; + width: 17%; placeholder: " ๐Ÿ“ป Choose Music Source"; } diff --git a/config/rofi/config-rofi-Beats.rasi b/config/rofi/config-rofi-Beats.rasi index a674fa3a..b84b4260 100644 --- a/config/rofi/config-rofi-Beats.rasi +++ b/config/rofi/config-rofi-Beats.rasi @@ -3,6 +3,11 @@ @import "~/.config/rofi/config.rasi" +/* ---- Window ---- */ +window { + width: 45%; +} + /* ---- Mainbox ---- */ mainbox { children: diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi index 51a70f2c..586de76e 100644 --- a/config/rofi/config.rasi +++ b/config/rofi/config.rasi @@ -14,5 +14,12 @@ * ~/.local/share/rofi/themes will be replaced. However, it wont overwrite your own config if you * renamed with your own unique file name */ +/* ---- Configuration Fonts ---- */ +configuration { + font: "JetBrainsMono Nerd Font SemiBold 13"; +} + +/* note: Element-text font and size, edit configs in ~/.local/share/rofi/themes */ + @theme "~/.local/share/rofi/themes/KooL_style-2-Dark.rasi" diff --git a/copy.sh b/copy.sh index 467d7fb1..acfdeb2b 100755 --- a/copy.sh +++ b/copy.sh @@ -299,8 +299,29 @@ if [ "$resolution" == "< 1440p" ]; then mv config/hypr/hyprlock.conf config/hypr/hyprlock-2k.conf && mv config/hypr/hyprlock-1080p.conf config/hypr/hyprlock.conf - #elif [ "$resolution" == "โ‰ฅ 1440p" ]; then - #cp -r config/rofi/resolution/1440p/* config/rofi/ 10-Feb-2025 + # rofi fonts reduction + themes_dir="$HOME/.local/share/rofi/themes" + config_file="$HOME/.config/rofi/config.rasi" + + changes_made=false + # Change rofi font size in ~/.local/share/rofi/themes/ + find "$themes_dir" -type f | while read -r file; do + if grep -Pzoq 'element-text {\n font: "JetBrainsMono Nerd Font SemiBold 12";\n}' "$file"; then + sed -i 's/font: "JetBrainsMono Nerd Font SemiBold 12"/font: "JetBrainsMono Nerd Font SemiBold 11"/' "$file" + changes_made=true + fi + done + + # Change rofi font size in ~/.config/rofi/config.rasi + if [ -f "$config_file" ]; then + if grep -Pzoq 'configuration {\n font: "JetBrainsMono Nerd Font SemiBold 13";\n}' "$config_file"; then + sed -i 's/font: "JetBrainsMono Nerd Font SemiBold 13"/font: "JetBrainsMono Nerd Font SemiBold 12"/' "$config_file" + changes_made=true + fi + fi + if $changes_made; then + echo "$INFO ${MAGENTA}Rofi Font sizes${RESET} updated completed successfully." + fi fi printf "\n" @@ -378,8 +399,7 @@ while true; do fi break - - + elif [[ "$answer" == "n" ]]; then echo "${NOTE} You chose not to change to 12H format." 2>&1 | tee -a "$LOG" break # Exit the loop if the user chooses "n" -- cgit v1.2.3 From dd46262fdfaabebb6fd2213a9baec91dd4244086 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 13 Feb 2025 10:02:50 +0900 Subject: added -L on find command on some scripts to be more https://github.com/JaKooLit/Hyprland-Dots/issues/553 --- config/hypr/UserScripts/00-Readme | 0 config/hypr/UserScripts/RofiBeats.sh | 2 +- config/hypr/UserScripts/WallpaperRandom.sh | 2 +- config/hypr/UserScripts/WallpaperSelect.sh | 2 +- config/hypr/UserScripts/ZshChangeTheme.sh | 2 +- config/hypr/scripts/Animations.sh | 2 +- config/hypr/scripts/DarkLight.sh | 6 +++--- config/hypr/scripts/RofiThemeSelector.sh | 2 +- config/hypr/scripts/Sounds.sh | 8 ++++---- config/hypr/scripts/WaybarLayout.sh | 3 ++- config/hypr/scripts/WaybarStyles.sh | 4 +++- 11 files changed, 18 insertions(+), 15 deletions(-) mode change 100644 => 100755 config/hypr/UserScripts/00-Readme (limited to 'config') diff --git a/config/hypr/UserScripts/00-Readme b/config/hypr/UserScripts/00-Readme old mode 100644 new mode 100755 diff --git a/config/hypr/UserScripts/RofiBeats.sh b/config/hypr/UserScripts/RofiBeats.sh index 58241256..38ff8829 100755 --- a/config/hypr/UserScripts/RofiBeats.sh +++ b/config/hypr/UserScripts/RofiBeats.sh @@ -34,7 +34,7 @@ populate_local_music() { while IFS= read -r file; do local_music+=("$file") filenames+=("$(basename "$file")") - done < <(find "$mDIR" -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.wav" -o -iname "*.ogg" -o -iname "*.mp4" \)) + done < <(find -L "$mDIR" -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.wav" -o -iname "*.ogg" -o -iname "*.mp4" \)) } # Function for displaying notifications diff --git a/config/hypr/UserScripts/WallpaperRandom.sh b/config/hypr/UserScripts/WallpaperRandom.sh index 1a5064e7..abaa9b03 100755 --- a/config/hypr/UserScripts/WallpaperRandom.sh +++ b/config/hypr/UserScripts/WallpaperRandom.sh @@ -7,7 +7,7 @@ SCRIPTSDIR="$HOME/.config/hypr/scripts" focused_monitor=$(hyprctl monitors | awk '/^Monitor/{name=$2} /focused: yes/{print name}') -PICS=($(find ${wallDIR} -type f \( -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" -o -name "*.pnm" -o -name "*.tga" -o -name "*.tiff" -o -name "*.webp" -o -name "*.bmp" -o -name "*.farbfeld" -o -name "*.gif" \))) +PICS=($(find -L ${wallDIR} -type f \( -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" -o -name "*.pnm" -o -name "*.tga" -o -name "*.tiff" -o -name "*.webp" -o -name "*.bmp" -o -name "*.farbfeld" -o -name "*.gif" \))) RANDOMPICS=${PICS[ $RANDOM % ${#PICS[@]} ]} diff --git a/config/hypr/UserScripts/WallpaperSelect.sh b/config/hypr/UserScripts/WallpaperSelect.sh index 61253cb3..86264775 100755 --- a/config/hypr/UserScripts/WallpaperSelect.sh +++ b/config/hypr/UserScripts/WallpaperSelect.sh @@ -28,7 +28,7 @@ if pidof swaybg > /dev/null; then fi # Retrieve image files using null delimiter to handle spaces in filenames -mapfile -d '' PICS < <(find "${wallDIR}" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.pnm" -o -iname "*.tga" -o -iname "*.tiff" -o -iname "*.webp" -o -iname "*.bmp" -o -iname "*.farbfeld" -o -iname "*.png" -o -iname "*.gif" \) -print0) +mapfile -d '' PICS < <(find -L "${wallDIR}" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.pnm" -o -iname "*.tga" -o -iname "*.tiff" -o -iname "*.webp" -o -iname "*.bmp" -o -iname "*.farbfeld" -o -iname "*.png" -o -iname "*.gif" \) -print0) RANDOM_PIC="${PICS[$((RANDOM % ${#PICS[@]}))]}" RANDOM_PIC_NAME=". random" diff --git a/config/hypr/UserScripts/ZshChangeTheme.sh b/config/hypr/UserScripts/ZshChangeTheme.sh index d43b6ff9..4ff43557 100755 --- a/config/hypr/UserScripts/ZshChangeTheme.sh +++ b/config/hypr/UserScripts/ZshChangeTheme.sh @@ -12,7 +12,7 @@ file_extension=".zsh-theme" iDIR="$HOME/.config/swaync/images" rofi_theme="~/.config/rofi/config-zsh-theme.rasi" -themes_array=($(find "$themes_dir" -type f -name "*$file_extension" -exec basename {} \; | sed -e "s/$file_extension//")) +themes_array=($(find -L "$themes_dir" -type f -name "*$file_extension" -exec basename {} \; | sed -e "s/$file_extension//")) # Add "Random" option to the beginning of the array themes_array=("Random" "${themes_array[@]}") diff --git a/config/hypr/scripts/Animations.sh b/config/hypr/scripts/Animations.sh index b4d368e9..62c32257 100755 --- a/config/hypr/scripts/Animations.sh +++ b/config/hypr/scripts/Animations.sh @@ -15,7 +15,7 @@ UserConfigs="$HOME/.config/hypr/UserConfigs" rofi_theme="~/.config/rofi/config-Animations.rasi" # list of animation files, sorted alphabetically with numbers first -animations_list=$(find "$animations_dir" -maxdepth 1 -type f | sed 's/.*\///' | sed 's/\.conf$//' | sort -V) +animations_list=$(find -L "$animations_dir" -maxdepth 1 -type f | sed 's/.*\///' | sed 's/\.conf$//' | sort -V) # Rofi Menu chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config $rofi_theme) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 783fa31a..662e1954 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -68,7 +68,7 @@ set_waybar_style() { waybar_style_link="$HOME/.config/waybar/style.css" style_prefix="\\[${theme}\\].*\\.css$" - style_file=$(find "$waybar_styles" -maxdepth 1 -type f -regex ".*$style_prefix" | shuf -n 1) + style_file=$(find -L "$waybar_styles" -maxdepth 1 -type f -regex ".*$style_prefix" | shuf -n 1) if [ -n "$style_file" ]; then ln -sf "$style_file" "$waybar_style_link" @@ -117,9 +117,9 @@ fi # Set Dynamic Wallpaper for Dark or Light Mode if [ "$next_mode" = "Dark" ]; then - next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" + next_wallpaper="$(find -L "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" else - next_wallpaper="$(find "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" + next_wallpaper="$(find -L "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" fi # Update wallpaper using swww command diff --git a/config/hypr/scripts/RofiThemeSelector.sh b/config/hypr/scripts/RofiThemeSelector.sh index 420316bd..cbce04b0 100755 --- a/config/hypr/scripts/RofiThemeSelector.sh +++ b/config/hypr/scripts/RofiThemeSelector.sh @@ -16,7 +16,7 @@ menu() { options=() while IFS= read -r file; do options+=("$(basename "$file")") - done < <(find "$rofi_theme_dir" -maxdepth 1 -type f -exec basename {} \; | sort) + done < <(find -L "$rofi_theme_dir" -maxdepth 1 -type f -exec basename {} \; | sort) printf '%s\n' "${options[@]}" } diff --git a/config/hypr/scripts/Sounds.sh b/config/hypr/scripts/Sounds.sh index 9ab9127d..8b2cc76e 100755 --- a/config/hypr/scripts/Sounds.sh +++ b/config/hypr/scripts/Sounds.sh @@ -58,13 +58,13 @@ iTheme=$(cat "$sDIR/index.theme" | grep -i "inherits" | cut -d "=" -f 2) iDIR="$sDIR/../$iTheme" # Find the sound file and play it. -sound_file=$(find $sDIR/stereo -name "$soundoption" -print -quit) +sound_file=$(find -L $sDIR/stereo -name "$soundoption" -print -quit) if ! test -f "$sound_file"; then - sound_file=$(find $iDIR/stereo -name "$soundoption" -print -quit) + sound_file=$(find -L $iDIR/stereo -name "$soundoption" -print -quit) if ! test -f "$sound_file"; then - sound_file=$(find $userDIR/$defaultTheme/stereo -name "$soundoption" -print -quit) + sound_file=$(find -L $userDIR/$defaultTheme/stereo -name "$soundoption" -print -quit) if ! test -f "$sound_file"; then - sound_file=$(find $systemDIR/$defaultTheme/stereo -name "$soundoption" -print -quit) + sound_file=$(find -L $systemDIR/$defaultTheme/stereo -name "$soundoption" -print -quit) if ! test -f "$sound_file"; then echo "Error: Sound file not found." exit 1 diff --git a/config/hypr/scripts/WaybarLayout.sh b/config/hypr/scripts/WaybarLayout.sh index d6c4db83..fe16d3e1 100755 --- a/config/hypr/scripts/WaybarLayout.sh +++ b/config/hypr/scripts/WaybarLayout.sh @@ -2,6 +2,7 @@ # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## # Script for waybar layout or configs +set -x IFS=$'\n\t' # Define directories @@ -15,7 +16,7 @@ menu() { options=() while IFS= read -r file; do options+=("$(basename "$file")") - done < <(find "$waybar_layouts" -maxdepth 1 -type f -exec basename {} \; | sort) + done < <(find -L "$waybar_layouts" -maxdepth 1 -type f -exec basename {} \; | sort) printf '%s\n' "${options[@]}" } diff --git a/config/hypr/scripts/WaybarStyles.sh b/config/hypr/scripts/WaybarStyles.sh index 62550ced..471c85e5 100755 --- a/config/hypr/scripts/WaybarStyles.sh +++ b/config/hypr/scripts/WaybarStyles.sh @@ -2,6 +2,8 @@ # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## # Script for waybar styles +set -x + IFS=$'\n\t' # Define directories @@ -17,7 +19,7 @@ menu() { if [ -f "$waybar_styles/$file" ]; then options+=("$(basename "$file" .css)") fi - done < <(find "$waybar_styles" -maxdepth 1 -type f -name '*.css' -exec basename {} \; | sort) + done < <(find -L "$waybar_styles" -maxdepth 1 -type f -name '*.css' -exec basename {} \; | sort) printf '%s\n' "${options[@]}" } -- cgit v1.2.3 From a4c48b0ea0b2b1d474d503fb8d924d190762e999 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 13 Feb 2025 12:56:57 +0900 Subject: Improvements on the rofi. Utilized message function for additional informations when script is used in conjunction with rofi --- assets/rofi/themes/KooL_LonerOrZ.rasi | 12 ++++ assets/rofi/themes/KooL_style-1.rasi | 7 +- assets/rofi/themes/KooL_style-10-Fancy.rasi | 12 +++- .../rofi/themes/KooL_style-11-Win11-list-dark.rasi | 18 ++++-- .../themes/KooL_style-11-Win11-list-light.rasi | 17 +++-- assets/rofi/themes/KooL_style-2-Dark.rasi | 9 +-- assets/rofi/themes/KooL_style-2-Light.rasi | 10 ++- assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi | 5 +- assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 11 ++-- assets/rofi/themes/KooL_style-4.rasi | 2 +- assets/rofi/themes/KooL_style-5.rasi | 6 +- assets/rofi/themes/KooL_style-6.rasi | 5 +- assets/rofi/themes/KooL_style-7.rasi | 6 +- assets/rofi/themes/KooL_style-8.rasi | 8 +-- assets/rofi/themes/KooL_style-9.rasi | 4 +- config/hypr/scripts/ClipManager.sh | 5 +- config/hypr/scripts/KeyBinds.sh | 9 +-- config/hypr/scripts/KeyHints.sh | 74 +++++++++++----------- config/hypr/scripts/RofiSearch.sh | 4 +- config/rofi/config-calc.rasi | 5 -- config/rofi/config-clipboard.rasi | 4 +- config/rofi/config-keybinds.rasi | 4 +- config/rofi/config-search.rasi | 5 +- 23 files changed, 137 insertions(+), 105 deletions(-) (limited to 'config') diff --git a/assets/rofi/themes/KooL_LonerOrZ.rasi b/assets/rofi/themes/KooL_LonerOrZ.rasi index d6a947ba..2803b693 100644 --- a/assets/rofi/themes/KooL_LonerOrZ.rasi +++ b/assets/rofi/themes/KooL_LonerOrZ.rasi @@ -166,3 +166,15 @@ element selected.active { background-color: @BGA; color: @FG; } + +/*****----- Message -----*****/ +error-message { + padding: 20px; +} +textbox { + padding: 10px; + background-color: @BG; + text-color: @FG; + vertical-align: 0.5; + horizontal-align: 0.5; +} diff --git a/assets/rofi/themes/KooL_style-1.rasi b/assets/rofi/themes/KooL_style-1.rasi index b8f58fff..9ac62fd7 100644 --- a/assets/rofi/themes/KooL_style-1.rasi +++ b/assets/rofi/themes/KooL_style-1.rasi @@ -84,7 +84,7 @@ entry { width: 20%; padding: 10px; border-radius: 12px; - background-color: @color11; + background-color: @active; text-color: @text-selected; cursor: text; placeholder: " ๐Ÿ–ฅ๏ธ Search "; @@ -230,12 +230,13 @@ message { border: 0px; } textbox { + margin: 10px; padding: 12px; border-radius: 10px; - background-color: @background; + background-color: @active; text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } error-message { padding: 12px; diff --git a/assets/rofi/themes/KooL_style-10-Fancy.rasi b/assets/rofi/themes/KooL_style-10-Fancy.rasi index 376cd3da..f5dc79e4 100644 --- a/assets/rofi/themes/KooL_style-10-Fancy.rasi +++ b/assets/rofi/themes/KooL_style-10-Fancy.rasi @@ -282,12 +282,18 @@ entry { } +/*****----- Message -----*****/ error-message { - background-color: darkred/10%; - border-color: darkred; + background-color: darkred/20%; border-radius: 10px; border: 2px; - padding: 0.5em; } +textbox { + padding: 5px; + background-color: darkred/10%; + vertical-align: 0.5; + horizontal-align: 0.5; +} + diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi index d8958455..9dede9f8 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -81,11 +81,6 @@ entry { text-color : @fg1; } -textbox { - padding : 4px 8px; - background-color : @bg2; -} - listview { columns : 2; spacing : 8px; @@ -130,3 +125,16 @@ element-icon { element-text { text-color: inherit; } + +/*****----- Message -----*****/ +error-message { + padding: 20px; +} + +textbox { + padding : 10px; + background-color : @bg0; + text-color : @fg0; + vertical-align : 0.5; + horizontal-align : 0.5; +} diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi index 8e2584b5..0e2600f1 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -81,10 +81,6 @@ entry { placeholder-color : @fg1; } -textbox { - padding : 4px 8px; - background-color : @bg2; -} listview { columns : 2; @@ -130,3 +126,16 @@ element-icon { element-text { text-color: inherit; } + +/*****----- Message -----*****/ +error-message { + padding: 20px; +} + +textbox { + padding : 10px; + background-color : @bg0; + text-color : @fg0; + vertical-align : 0.5; + horizontal-align : 0.5; +} diff --git a/assets/rofi/themes/KooL_style-2-Dark.rasi b/assets/rofi/themes/KooL_style-2-Dark.rasi index 036b7fae..cbacce1c 100644 --- a/assets/rofi/themes/KooL_style-2-Dark.rasi +++ b/assets/rofi/themes/KooL_style-2-Dark.rasi @@ -163,14 +163,11 @@ button selected { /*****----- Message -----*****/ error-message { padding: 20px; - background-color: transparent; - text-color: white; } textbox { - padding: 20px; - border-radius: 12px; - background-color: black/30%; + padding: 10px; + background-color: black/75%; text-color: white; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } diff --git a/assets/rofi/themes/KooL_style-2-Light.rasi b/assets/rofi/themes/KooL_style-2-Light.rasi index 9a8677ab..c2fc812f 100644 --- a/assets/rofi/themes/KooL_style-2-Light.rasi +++ b/assets/rofi/themes/KooL_style-2-Light.rasi @@ -164,14 +164,12 @@ button selected { /*****----- Message -----*****/ error-message { padding: 20px; - background-color: transparent; - text-color: black; } textbox { - padding: 20px; - border-radius: 12px; - background-color: white/30%; + padding: 10px; + background-color: gray/25%; text-color: black; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } + diff --git a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi index 61a65ae8..a98a6fa8 100644 --- a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi +++ b/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi @@ -240,12 +240,13 @@ message { border: 0px; } textbox { + margin: 10px; padding: 12px; border-radius: 10px; - background-color: @background-alt; + background-color: @selected; text-color: @background; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } error-message { padding: 12px; diff --git a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi index 428c54a7..55277f61 100644 --- a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -197,17 +197,16 @@ element-text { /*****----- Message -----*****/ error-message { - padding: 100px; - border: 0px solid; - border-radius: 0px; + padding: 0px; border-color: @selected; - background-color: black / 10%; + background-color: transparent; text-color: @foreground; } textbox { - background-color: transparent; + padding: 20px; + background-color: black/10%; text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; highlight: none; } diff --git a/assets/rofi/themes/KooL_style-4.rasi b/assets/rofi/themes/KooL_style-4.rasi index 519f10f7..7eb03c45 100644 --- a/assets/rofi/themes/KooL_style-4.rasi +++ b/assets/rofi/themes/KooL_style-4.rasi @@ -312,7 +312,7 @@ textbox { background-color: @alternate-background; text-color: @foreground-color; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; highlight: none; placeholder-color: @foreground-color; blink: true; diff --git a/assets/rofi/themes/KooL_style-5.rasi b/assets/rofi/themes/KooL_style-5.rasi index cd9a5ce2..3d1f9220 100644 --- a/assets/rofi/themes/KooL_style-5.rasi +++ b/assets/rofi/themes/KooL_style-5.rasi @@ -165,7 +165,7 @@ listview { reverse: false; fixed-height: true; fixed-columns: false; - background-color: transparent; + background-color: @background; border-radius: 12px; border: 0px; } @@ -250,9 +250,9 @@ textbox { padding: 12px; border-radius: 10px; background-color: @background-alt; - text-color: @background; + text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } error-message { padding: 12px; diff --git a/assets/rofi/themes/KooL_style-6.rasi b/assets/rofi/themes/KooL_style-6.rasi index f5e7de43..bdc1b12d 100644 --- a/assets/rofi/themes/KooL_style-6.rasi +++ b/assets/rofi/themes/KooL_style-6.rasi @@ -216,12 +216,13 @@ message { border: 0px; } textbox { + margin: 10px; padding: 12px; border-radius: 10px; - background-color: @background; + background-color: @active; text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } error-message { padding: 12px; diff --git a/assets/rofi/themes/KooL_style-7.rasi b/assets/rofi/themes/KooL_style-7.rasi index 6d8c0201..c5bec637 100644 --- a/assets/rofi/themes/KooL_style-7.rasi +++ b/assets/rofi/themes/KooL_style-7.rasi @@ -186,9 +186,11 @@ error-message { text-color: @foreground; } textbox { - background-color: @background; + padding: 10px; + border-radius: 20px; + background-color: @color11; text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; highlight: none; } diff --git a/assets/rofi/themes/KooL_style-8.rasi b/assets/rofi/themes/KooL_style-8.rasi index ce262ad4..7a54dff5 100644 --- a/assets/rofi/themes/KooL_style-8.rasi +++ b/assets/rofi/themes/KooL_style-8.rasi @@ -228,15 +228,15 @@ message { } textbox { padding: 12px; - border-radius: 10px; - background-color: @background; + border-radius: 0px; + background-color: @color11; text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } error-message { padding: 12px; - border-radius: 20px; + border-radius: 0px; background-color: @background; text-color: @foreground; } diff --git a/assets/rofi/themes/KooL_style-9.rasi b/assets/rofi/themes/KooL_style-9.rasi index 5ac5c0f9..a03f877f 100644 --- a/assets/rofi/themes/KooL_style-9.rasi +++ b/assets/rofi/themes/KooL_style-9.rasi @@ -199,10 +199,10 @@ message { textbox { padding: 12px; border-radius: 10px; - background-color: @background; + background-color: @BDR; text-color: @foreground; vertical-align: 0.5; - horizontal-align: 0.0; + horizontal-align: 0.5; } error-message { padding: 12px; diff --git a/config/hypr/scripts/ClipManager.sh b/config/hypr/scripts/ClipManager.sh index 642adb82..1f82c616 100755 --- a/config/hypr/scripts/ClipManager.sh +++ b/config/hypr/scripts/ClipManager.sh @@ -4,7 +4,7 @@ # Variables rofi_theme="~/.config/rofi/config-clipboard.rasi" - +msg='๐Ÿ‘€ **note** CTRL DEL = cliphist del (entry) or ALT DEL - cliphist wipe (all)' # Actions: # CTRL Del to delete an entry # ALT Del to wipe clipboard contents @@ -19,7 +19,8 @@ while true; do rofi -i -dmenu \ -kb-custom-1 "Control-Delete" \ -kb-custom-2 "Alt-Delete" \ - -config $rofi_theme < <(cliphist list) + -config $rofi_theme < <(cliphist list) \ + -mesg "$msg" ) case "$?" in diff --git a/config/hypr/scripts/KeyBinds.sh b/config/hypr/scripts/KeyBinds.sh index f80211f5..ffa53281 100755 --- a/config/hypr/scripts/KeyBinds.sh +++ b/config/hypr/scripts/KeyBinds.sh @@ -14,7 +14,8 @@ fi KEYBINDS_CONF="$HOME/.config/hypr/configs/Keybinds.conf" USER_KEYBINDS_CONF="$HOME/.config/hypr/UserConfigs/UserKeybinds.conf" LAPTOP_CONF="$HOME/.config/hypr/UserConfigs/Laptop.conf" -rofi_theme="~/.config/rofi/config-keybinds.rasi" +rofi_theme="$HOME/.config/rofi/config-keybinds.rasi" +msg='โ˜ฃ๏ธ NOTE โ˜ฃ๏ธ: Clicking with Mouse or Pressing ENTER will have NO function' # Combine the contents of the keybinds files and filter for keybinds KEYBINDS=$(cat "$KEYBINDS_CONF" "$USER_KEYBINDS_CONF" | grep -E '^(bind|bindl|binde|bindm)') @@ -25,11 +26,11 @@ if [[ -f "$LAPTOP_CONF" ]]; then KEYBINDS+=$'\n'"$LAPTOP_BINDS" fi -# check for any keybinds to display +# Check for any keybinds to display if [[ -z "$KEYBINDS" ]]; then echo "No keybinds found." exit 1 fi -# Use rofi to display the keybinds -echo "$KEYBINDS" | rofi -dmenu -i -config $rofi_theme \ No newline at end of file +# Ensure the message is being passed correctly +echo "$KEYBINDS" | rofi -dmenu -i -config "$rofi_theme" -mesg "$msg" diff --git a/config/hypr/scripts/KeyHints.sh b/config/hypr/scripts/KeyHints.sh index d7c6a00d..d69f5de8 100755 --- a/config/hypr/scripts/KeyHints.sh +++ b/config/hypr/scripts/KeyHints.sh @@ -23,48 +23,48 @@ GDK_BACKEND=$BACKEND yad \ --column=Description: \ --column=Command: \ --timeout-indicator=bottom \ -"ESC" "close this app" "๏—" "๏…ผ = ๏…บ" "SUPER KEY (Windows Key Button)" "(SUPER KEY)" \ -"๏…ผ SHIFT K" "Searchable Keybinds" "(Search all Keybinds via rofi)" \ +"ESC" "close this app" "๏—" "๎ฏ† = ๏…บ" "SUPER KEY (Windows Key Button)" "(SUPER KEY)" \ +"๎ฏ† SHIFT K" "Searchable Keybinds" "(Search all Keybinds via rofi)" \ +"๎ฏ† SHIFT E" "View or EDIT Keybinds, Settings, Monitor" "" \ "" "" "" \ -"๏…ผ SHIFT E" "View or EDIT Keybinds, Settings, Monitor" "" \ -"๏…ผ enter" "Terminal" "(kitty)" \ -"๏…ผ SHIFT enter" "DropDown Terminal" "(Not available in Debian and Ubuntu)" \ -"๏…ผ B" "Launch Browser" "(Default browser)" \ -"๏…ผ A" "Desktop Overview" "(AGS - if opted to install)" \ -"๏…ผ D" "Application Launcher" "(rofi-wayland)" \ -"๏…ผ E" "Open File Manager" "(Thunar)" \ -"๏…ผ S" "Google Search using rofi" "(rofi)" \ -"๏…ผ Q" "close active window" "(not kill)" \ -"๏…ผ Shift Q " "kills an active window" "(kill)" \ -"๏…ผ Z" "Desktop Zoom" "(Not available in Debian and Ubuntu)" \ -"๏…ผ Alt V" "Clipboard Manager" "(cliphist)" \ -"๏…ผ W" "Choose wallpaper" "(Wallpaper Menu)" \ -"๏…ผ Shift W" "Choose wallpaper effects" "(imagemagick + swww)" \ +"๎ฏ† enter" "Terminal" "(kitty)" \ +"๎ฏ† SHIFT enter" "DropDown Terminal" "(Not available in Debian and Ubuntu)" \ +"๎ฏ† B" "Launch Browser" "(Default browser)" \ +"๎ฏ† A" "Desktop Overview" "(AGS - if opted to install)" \ +"๎ฏ† D" "Application Launcher" "(rofi-wayland)" \ +"๎ฏ† E" "Open File Manager" "(Thunar)" \ +"๎ฏ† S" "Google Search using rofi" "(rofi)" \ +"๎ฏ† Q" "close active window" "(not kill)" \ +"๎ฏ† Shift Q " "kills an active window" "(kill)" \ +"๎ฏ† Z" "Desktop Zoom" "(Not available in Debian and Ubuntu)" \ +"๎ฏ† Alt V" "Clipboard Manager" "(cliphist)" \ +"๎ฏ† W" "Choose wallpaper" "(Wallpaper Menu)" \ +"๎ฏ† Shift W" "Choose wallpaper effects" "(imagemagick + swww)" \ "CTRL ALT W" "Random wallpaper" "(via swww)" \ -"๏…ผ CTRL ALT B" "Hide/UnHide Waybar" "waybar" \ -"๏…ผ CTRL B" "Choose waybar styles" "(waybar styles)" \ -"๏…ผ ALT B" "Choose waybar layout" "(waybar layout)" \ -"๏…ผ ALT R" "Reload Waybar swaync Rofi" "CHECK NOTIFICATION FIRST!!!" \ -"๏…ผ SHIFT N" "Launch Notification Panel" "swaync Notification Center" \ -"๏…ผ Print" "screenshot" "(grim)" \ -"๏…ผ Shift Print" "screenshot region" "(grim + slurp)" \ -"๏…ผ Shift S" "screenshot region" "(swappy)" \ -"๏…ผ CTRL Print" "screenshot timer 5 secs " "(grim)" \ -"๏…ผ CTRL SHIFT Print" "screenshot timer 10 secs " "(grim)" \ +"๎ฏ† CTRL ALT B" "Hide/UnHide Waybar" "waybar" \ +"๎ฏ† CTRL B" "Choose waybar styles" "(waybar styles)" \ +"๎ฏ† ALT B" "Choose waybar layout" "(waybar layout)" \ +"๎ฏ† ALT R" "Reload Waybar swaync Rofi" "CHECK NOTIFICATION FIRST!!!" \ +"๎ฏ† SHIFT N" "Launch Notification Panel" "swaync Notification Center" \ +"๎ฏ† Print" "screenshot" "(grim)" \ +"๎ฏ† Shift Print" "screenshot region" "(grim + slurp)" \ +"๎ฏ† Shift S" "screenshot region" "(swappy)" \ +"๎ฏ† CTRL Print" "screenshot timer 5 secs " "(grim)" \ +"๎ฏ† CTRL SHIFT Print" "screenshot timer 10 secs " "(grim)" \ "ALT Print" "Screenshot active window" "active window only" \ "CTRL ALT P" "power-menu" "(wlogout)" \ "CTRL ALT L" "screen lock" "(hyprlock)" \ "CTRL ALT Del" "Hyprland Exit" "(NOTE: Hyprland Will exit immediately)" \ -"๏…ผ SHIFT F" "Fullscreen" "Toggles to full screen" \ -"๏…ผ CTL F" "Fake Fullscreen" "Toggles to fake full screen" \ -"๏…ผ ALT L" "Toggle Dwindle | Master Layout" "Hyprland Layout" \ -"๏…ผ SPACEBAR" "Toggle float" "single window" \ -"๏…ผ ALT SPACEBAR" "Toggle all windows to float" "all windows" \ -"๏…ผ ALT O" "Toggle Blur" "normal or less blur" \ -"๏…ผ Shift A" "Animations Menu" "Choose Animations via rofi" \ -"๏…ผ SHIFT G" "Gamemode! All animations OFF or ON" "toggle" \ -"๏…ผ ALT E" "Rofi Emoticons" "Emoticon" \ -"๏…ผ ALT V" "Clipboard Manager" "cliphist" \ -"๏…ผ H" "Launch this QUICK CHEAT" "" \ +"๎ฏ† SHIFT F" "Fullscreen" "Toggles to full screen" \ +"๎ฏ† CTL F" "Fake Fullscreen" "Toggles to fake full screen" \ +"๎ฏ† ALT L" "Toggle Dwindle | Master Layout" "Hyprland Layout" \ +"๎ฏ† SPACEBAR" "Toggle float" "single window" \ +"๎ฏ† ALT SPACEBAR" "Toggle all windows to float" "all windows" \ +"๎ฏ† ALT O" "Toggle Blur" "normal or less blur" \ +"๎ฏ† Shift A" "Animations Menu" "Choose Animations via rofi" \ +"๎ฏ† SHIFT G" "Gamemode! All animations OFF or ON" "toggle" \ +"๎ฏ† ALT E" "Rofi Emoticons" "Emoticon" \ +"๎ฏ† ALT V" "Clipboard Manager" "cliphist" \ +"๎ฏ† H" "Launch this QUICK CHEAT" "" \ "" "" "" \ "More tips:" "https://github.com/JaKooLit/Hyprland-Dots/wiki" ""\ \ No newline at end of file diff --git a/config/hypr/scripts/RofiSearch.sh b/config/hypr/scripts/RofiSearch.sh index d9576a1a..e256253a 100755 --- a/config/hypr/scripts/RofiSearch.sh +++ b/config/hypr/scripts/RofiSearch.sh @@ -5,7 +5,7 @@ # Opens rofi in dmenu mod and waits for input. Then pushes the input to the query of the URL. rofi_theme="$HOME/.config/rofi/config-search.rasi" - +msg='โ€ผ๏ธ **note** โ€ผ๏ธ search via default web browser' # Kill Rofi if already running before execution if pgrep -x "rofi" >/dev/null; then pkill rofi @@ -15,4 +15,4 @@ fi # Open rofi with a dmenu and pass the selected item to xdg-open for Google search #echo "" | rofi -dmenu -config "$rofi_config" | xargs -I{} xdg-open "https://www.google.com/search?q={}" -echo "" | rofi -dmenu -config $rofi_theme | xargs -I{} xdg-open "https://www.google.com/search?q={}" +echo "" | rofi -dmenu -config $rofi_theme -mesg "$msg" | xargs -I{} xdg-open "https://www.google.com/search?q={}" diff --git a/config/rofi/config-calc.rasi b/config/rofi/config-calc.rasi index 60169c31..1dfd1887 100644 --- a/config/rofi/config-calc.rasi +++ b/config/rofi/config-calc.rasi @@ -17,9 +17,4 @@ entry { placeholder: " ๐Ÿงฎ Calculate"; } -textbox { - padding: 12px; - border-radius: 10px; -} - listview {enable: false;} \ No newline at end of file diff --git a/config/rofi/config-clipboard.rasi b/config/rofi/config-clipboard.rasi index 648a96af..01596ee0 100644 --- a/config/rofi/config-clipboard.rasi +++ b/config/rofi/config-clipboard.rasi @@ -11,13 +11,13 @@ window { /* ---- Mainbox ---- */ mainbox { children: - [ "inputbar", "listview"]; + [ "inputbar", "message", "listview"]; } /* ---- Entry ---- */ entry { width: 42%; - placeholder: " ๐Ÿ“‹ Search Clipboard **note** ๐Ÿ‘€ CTRL Del - Cliphist del or Alt Del - cliphist wipe"; + placeholder: " ๐Ÿ“‹ Search Clipboard "; } /* ---- Listview ---- */ diff --git a/config/rofi/config-keybinds.rasi b/config/rofi/config-keybinds.rasi index 6c8e2d5a..ccc8b4d7 100644 --- a/config/rofi/config-keybinds.rasi +++ b/config/rofi/config-keybinds.rasi @@ -7,13 +7,13 @@ /* ---- Mainbox ---- */ mainbox { children: - [ "inputbar", "listview"]; + [ "inputbar", "message", "listview"]; } /* ---- Entry ---- */ entry { expand: true; - placeholder: " ๐Ÿงฎ Search Keybinds โ˜ฃ๏ธ NOTE โ˜ฃ๏ธ: Clicking with Mouse or Pressing ENTER will have NO function"; + placeholder: " ๐Ÿงฎ Search Keybinds"; } /* ---- Listview ---- */ diff --git a/config/rofi/config-search.rasi b/config/rofi/config-search.rasi index a2ff66ee..733d9b9a 100644 --- a/config/rofi/config-search.rasi +++ b/config/rofi/config-search.rasi @@ -9,14 +9,15 @@ window { height: inherit; y-offset: 10px; location: north; - children: [ "entry" ]; + children: [ "entry", "message" ]; border: 2px; border-color: white/25%; } /* ---- Entry ---- */ entry { - placeholder: " ๐Ÿ”Ž Google Search via web browser"; + placeholder: " ๐Ÿ”Ž Google Search"; + horizontal-align: 0.5; padding: 15px; border: 0px; border-radius: 12px; -- cgit v1.2.3 From d48e1e15a05e220306c81279abe86263aa5aeb85 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 13 Feb 2025 13:38:06 +0900 Subject: most of the added features and keybinds are moved to User Keybinds. Giving more flexibility for users --- config/hypr/UserConfigs/UserKeybinds.conf | 47 ++++++++++++++++++++++++------- config/hypr/UserConfigs/WindowRules.conf | 4 +++ config/hypr/configs/Keybinds.conf | 45 ++++------------------------- 3 files changed, 46 insertions(+), 50 deletions(-) (limited to 'config') diff --git a/config/hypr/UserConfigs/UserKeybinds.conf b/config/hypr/UserConfigs/UserKeybinds.conf index a615ef68..feb54c22 100644 --- a/config/hypr/UserConfigs/UserKeybinds.conf +++ b/config/hypr/UserConfigs/UserKeybinds.conf @@ -5,33 +5,60 @@ # See https://wiki.hyprland.org/Configuring/Keywords/ for more settings and variables # See also Laptops.conf for laptops keybinds +# /* ---- โœด๏ธ Variables โœด๏ธ ---- */ # $mainMod = SUPER $files = thunar $term = kitty $scriptsDir = $HOME/.config/hypr/scripts $UserScripts = $HOME/.config/hypr/UserScripts -# rofi App launcher +# common shortcuts #bindr = $mainMod, $mainMod_L, exec, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window # Super Key to Launch rofi menu bind = $mainMod, D, exec, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window # Main Menu (APP Launcher) - -bind = $mainMod, B, exec, xdg-open "http:// &" # default browser - -bind = $mainMod, A, exec, pkill rofi || true && ags -t 'overview' # ags desktop overview - +bind = $mainMod, B, exec, xdg-open "http:// &" # default browser +bind = $mainMod, A, exec, pkill rofi || true && ags -t 'overview' # desktop overview (if installed) bind = $mainMod, Return, exec, $term #terminal bind = $mainMod, E, exec, $files #file manager + +# FEATURES / EXTRAS +bind = $mainMod, H, exec, $scriptsDir/KeyHints.sh # help / cheat sheet +bind = $mainMod ALT, R, exec, $scriptsDir/Refresh.sh # Refresh waybar, swaync, rofi +bind = $mainMod ALT, E, exec, $scriptsDir/RofiEmoji.sh # emoji menu +bind = $mainMod, S, exec, $scriptsDir/RofiSearch.sh # Google search using rofi +bind = $mainMod ALT, O, exec, $scriptsDir/ChangeBlur.sh # Toggle blur settings +bind = $mainMod SHIFT, G, exec, $scriptsDir/GameMode.sh # Toggle animations ON/OFF +bind = $mainMod ALT, L, exec, $scriptsDir/ChangeLayout.sh # Toggle Master or Dwindle Layout +bind = $mainMod ALT, V, exec, $scriptsDir/ClipManager.sh # Clipboard Manager bind = $mainMod CTRL, R, exec, $scriptsDir/RofiThemeSelector.sh # modified Rofi Theme Selector + +bind = $mainMod SHIFT, F, fullscreen # whole full screen +bind = $mainMod CTRL, F, fullscreen, 1 # fake full screen +bind = $mainMod, SPACE, togglefloating, #Float Mode +bind = $mainMod ALT, SPACE, exec, hyprctl dispatch workspaceopt allfloat #All Float Mode + +# Waybar / Bar related +bind = $mainMod CTRL ALT, B, exec, pkill -SIGUSR1 waybar # Toggle hide/show waybar +bind = $mainMod CTRL, B, exec, $scriptsDir/WaybarStyles.sh # Waybar Styles Menu +bind = $mainMod ALT, B, exec, $scriptsDir/WaybarLayout.sh # Waybar Layout Menu + +# FEATURES / EXTRAS (UserScripts) +bind = $mainMod SHIFT, E, exec, $UserScripts/QuickEdit.sh # Quick Edit Hyprland Settings +bind = $mainMod SHIFT, M, exec, $UserScripts/RofiBeats.sh # online music using rofi +bind = $mainMod, W, exec, $UserScripts/WallpaperSelect.sh # Select wallpaper to apply +bind = $mainMod SHIFT, W, exec, $UserScripts/WallpaperEffects.sh # Wallpaper Effects by imagemagick +bind = CTRL ALT, W, exec, $UserScripts/WallpaperRandom.sh # Random wallpapers +bind = $mainMod CTRL, O, exec, hyprctl setprop active opaque toggle # disable opacity on active window +bind = $mainMod SHIFT, K, exec, $scriptsDir/KeyBinds.sh # search keybinds via rofi +bind = $mainMod SHIFT, A, exec, $scriptsDir/Animations.sh #hyprland animations menu +bind = $mainMod SHIFT, O, exec, $UserScripts/ZshChangeTheme.sh # Change oh-my-zsh theme +bindn = ALT_L, SHIFT_L, exec, $scriptsDir/SwitchKeyboardLayout.sh # Change keyboard layout bind = $mainMod ALT, C, exec, $UserScripts/RofiCalc.sh # calculator (qalculate) # pyprland (This is not available in Debian and Ubuntu) -bind = $mainMod SHIFT, Return, exec, pypr toggle term # Dropdown terminal +bind = $mainMod SHIFT, Return, exec, pypr toggle term # Dropdown terminal not avail Debian and Ubuntu bind = $mainMod, Z, exec, pypr zoom # Toggle Desktop Zoom -# User Added Keybinds -bind = $mainMod SHIFT, O, exec, $UserScripts/ZshChangeTheme.sh # Change oh-my-zsh theme -bindn = ALT_L, SHIFT_L, exec, $scriptsDir/SwitchKeyboardLayout.sh # Change keyboard layout # For passthrough keyboard into a VM # bind = $mainMod ALT, P, submap, passthru diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index f4729d32..96f1adf4 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -11,6 +11,7 @@ windowrulev2 = tag +browser, class:^([Mm]icrosoft-edge(-stable|-beta|-dev|-unsta windowrulev2 = tag +browser, class:^(Brave-browser(-beta|-dev|-unstable)?)$ windowrulev2 = tag +browser, class:^([Tt]horium-browser|[Cc]achy-browser)$ windowrulev2 = tag +browser, class:^(zen-alpha)$ +windowrulev2 = tag +notif, class:^(swaync-control-center|swaync-notification-window|swaync-client|class)$ # terminal tags windowrulev2 = tag +terminal, class:^(Alacritty|kitty|kitty-dropterm)$ @@ -176,6 +177,9 @@ windowrulev2 = fullscreen, tag:games* # LAYER RULES layerrule = blur, rofi layerrule = ignorezero, rofi +layerrule = blur, notifications +layerrule = ignorezero, notifications +#layerrule = ignorealpha 0.5, tag:notif* #layerrule = ignorezero, class:^([Rr]ofi)$ #layerrule = blur, class:^([Rr]ofi)$ diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 7cacae40..d4205abf 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -2,59 +2,20 @@ # Default Keybinds # visit https://wiki.hyprland.org/Configuring/Binds/ for more info +# /* ---- โœด๏ธ Variables โœด๏ธ ---- */ # $mainMod = SUPER # Default $scriptsDir = $HOME/.config/hypr/scripts -$configs = $HOME/.config/hypr/configs -# User $UserConfigs = $HOME/.config/hypr/UserConfigs $UserScripts = $HOME/.config/hypr/UserScripts - bind = CTRL ALT, Delete, exec, hyprctl dispatch exit 0 bind = $mainMod, Q, killactive, #kill bind = $mainMod SHIFT, Q, exec, $scriptsDir/KillActiveProcess.sh # Kill active process -bind = $mainMod SHIFT, F, fullscreen # whole full screen -bind = $mainMod CTRL, F, fullscreen, 1 # fake full screen -bind = $mainMod, SPACE, togglefloating, #Float Mode -bind = $mainMod ALT, SPACE, exec, hyprctl dispatch workspaceopt allfloat #All Float Mode - -#bind = $mainMod, SPACE, exec, $scriptsDir/Float.sh # float mode -#bind = $mainMod ALT, SPACE, exec, $scriptsDir/Float.sh --allfloat # all float mode - bind = CTRL ALT, L, exec, $scriptsDir/LockScreen.sh # screen lock bind = CTRL ALT, P, exec, $scriptsDir/Wlogout.sh # power menu - -# FEATURES / EXTRAS -bind = $mainMod, H, exec, $scriptsDir/KeyHints.sh # help file -bind = $mainMod ALT, R, exec, $scriptsDir/Refresh.sh # Refresh waybar, swaync, rofi -bind = $mainMod ALT, E, exec, $scriptsDir/RofiEmoji.sh # emoji menu -bind = $mainMod, S, exec, $scriptsDir/RofiSearch.sh # Google search using rofi -bind = $mainMod ALT, O, exec, $scriptsDir/ChangeBlur.sh # Toggle blur settings -bind = $mainMod SHIFT, G, exec, $scriptsDir/GameMode.sh # Toggle animations ON/OFF -bind = $mainMod ALT, L, exec, $scriptsDir/ChangeLayout.sh # Toggle Master or Dwindle Layout -bind = $mainMod ALT, V, exec, $scriptsDir/ClipManager.sh # Clipboard Manager bind = $mainMod SHIFT, N, exec, swaync-client -t -sw # swayNC notification panel -# FEATURES / EXTRAS (UserScripts) -bind = $mainMod SHIFT, E, exec, $UserScripts/QuickEdit.sh # Quick Edit Hyprland Settings -bind = $mainMod SHIFT, M, exec, $UserScripts/RofiBeats.sh # online music using rofi -bind = $mainMod, W, exec, $UserScripts/WallpaperSelect.sh # Select wallpaper to apply -bind = $mainMod SHIFT, W, exec, $UserScripts/WallpaperEffects.sh # Wallpaper Effects by imagemagick -bind = CTRL ALT, W, exec, $UserScripts/WallpaperRandom.sh # Random wallpapers -bind = $mainMod CTRL, O, exec, hyprctl setprop active opaque toggle # disable opacity on active window -bind = $mainMod SHIFT, K, exec, $scriptsDir/KeyBinds.sh # search keybinds via rofi -bind = $mainMod SHIFT, A, exec, $scriptsDir/Animations.sh #hyprland animations menu - -# Waybar / Bar related -bind = $mainMod CTRL ALT, B, exec, pkill -SIGUSR1 waybar # Toggle hide/show waybar -bind = $mainMod CTRL, B, exec, $scriptsDir/WaybarStyles.sh # Waybar Styles Menu -bind = $mainMod ALT, B, exec, $scriptsDir/WaybarLayout.sh # Waybar Layout Menu - -# Dwindle Layout -bind = $mainMod SHIFT, I, togglesplit # only works on dwindle layout -bind = $mainMod, P, pseudo, # dwindle - # Master Layout bind = $mainMod CTRL, D, layoutmsg, removemaster bind = $mainMod, I, layoutmsg, addmaster @@ -62,6 +23,10 @@ bind = $mainMod, J, layoutmsg, cyclenext bind = $mainMod, K, layoutmsg, cycleprev bind = $mainMod CTRL, Return, layoutmsg, swapwithmaster +# Dwindle Layout +bind = $mainMod SHIFT, I, togglesplit # only works on dwindle layout +bind = $mainMod, P, pseudo, # dwindle + # Works on either layout (Master or Dwindle) bind = $mainMod, M, exec, hyprctl dispatch splitratio 0.3 -- cgit v1.2.3 From f85fdd93b2a3049985a6047e6e5fc57778485cc9 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 13 Feb 2025 14:44:12 +0900 Subject: updated hypridle message --- config/hypr/hypridle.conf | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'config') diff --git a/config/hypr/hypridle.conf b/config/hypr/hypridle.conf index aeb0258c..4b8cd7e2 100644 --- a/config/hypr/hypridle.conf +++ b/config/hypr/hypridle.conf @@ -2,6 +2,7 @@ # Hypridle # Original config submitted by https://github.com/SherLock707 +$iDIR="$HOME/.config/swaync/images/ja.png" general { lock_cmd = pidof hyprlock || hyprlock # runs hyprlock if it is not already running (this is always run when "loginctl lock-session" is called) @@ -21,16 +22,16 @@ general { # Warn listener { - timeout = 540 # 9 min - on-timeout = notify-send " You are idle!" # command to run when timeout has passed - on-resume = notify-send " Welcome back!" # command to run when activity is detected after timeout has fired. + timeout = 540 # 9 min + on-timeout = notify-send -i $iDIR " You are idle!" # command to run when timeout has passed + on-resume = notify-send -i $iDIR " Oh! you're Back" " Hello !!!" # command to run when activity is detected after timeout has fired. } # Screenlock listener { timeout = 600 # 10 min on-timeout = loginctl lock-session # command to run when timeout has passed - #on-resume = notify-send " Desktop Unlocked!" # command to run when activity is detected after timeout has fired. + #on-resume = notify-send -i $iDIR " System Unlocked!" # command to run when activity is detected after timeout has fired. } # Turn off screen @@ -45,5 +46,5 @@ listener { # listener { # timeout = 1200 # 20 min # on-timeout = systemctl suspend # command to run when timeout has passed - # on-resume = notify-send "Welcome back to your desktop!" # command to run when activity is detected after timeout has fired. + # on-resume = notify-send -i $iDIR " Oh! you're back" "Hello !!!" # command to run when activity is detected after timeout has fired. # } -- cgit v1.2.3 From ffb19d4d7d54388ef30afee7772d6491133a49e4 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 13 Feb 2025 19:02:48 +0900 Subject: updated window rules --- config/hypr/UserConfigs/WindowRules.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config') diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index 96f1adf4..44e4b3c3 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -122,6 +122,8 @@ windowrulev2 = float, title:^(Picture-in-Picture)$ #windowrulev2 = float, title:^(Firefox)$ #windowrule v2 - float popups and dialogue +windowrulev2 = float, title:^(Authentication Required)$ +windowrulev2 = center, title:^(Authentication Required)$ windowrulev2 = float, class:(codium|codium-url-handler|VSCodium), title:negative:(.*codium.*|.*VSCodium.*) windowrulev2 = float, class:^(com.heroicgameslauncher.hgl)$, title:negative:(Heroic Games Launcher) windowrulev2 = float, class:^([Ss]team)$, title:negative:^([Ss]team)$ -- cgit v1.2.3 From 82b03036cc3c496c438f8bd4a02e2c226e9a151a Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 14 Feb 2025 02:26:41 +0900 Subject: Rofi EMOJI Updated :) Rofi themes updated --- assets/rofi/themes/KooL_LonerOrZ.rasi | 11 +- assets/rofi/themes/KooL_style-2-Dark.rasi | 10 +- assets/rofi/themes/KooL_style-2-Light.rasi | 14 +- assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 9 +- assets/rofi/themes/KooL_style-5.rasi | 4 +- assets/rofi/themes/KooL_style-7.rasi | 10 +- assets/rofi/themes/KooL_style-8.rasi | 17 +- assets/rofi/themes/KooL_style-9.rasi | 2 +- config/hypr/scripts/RofiEmoji.sh | 9981 ++++++++++---------- config/rofi/config-emoji.rasi | 4 +- config/rofi/config-search.rasi | 5 +- 11 files changed, 5099 insertions(+), 4968 deletions(-) (limited to 'config') diff --git a/assets/rofi/themes/KooL_LonerOrZ.rasi b/assets/rofi/themes/KooL_LonerOrZ.rasi index 2803b693..4ad64054 100644 --- a/assets/rofi/themes/KooL_LonerOrZ.rasi +++ b/assets/rofi/themes/KooL_LonerOrZ.rasi @@ -105,7 +105,7 @@ listview { mainbox { background-color: @BG; - children: [ inputbar, listview ]; + children: [ inputbar, message, listview ]; spacing: 15px; padding: 15px; } @@ -168,13 +168,18 @@ element selected.active { } /*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} error-message { padding: 20px; } textbox { padding: 10px; - background-color: @BG; - text-color: @FG; + border-radius: 10px; + background-color: @BDR; + text-color: @SEL; vertical-align: 0.5; horizontal-align: 0.5; } diff --git a/assets/rofi/themes/KooL_style-2-Dark.rasi b/assets/rofi/themes/KooL_style-2-Dark.rasi index cbacce1c..1925203b 100644 --- a/assets/rofi/themes/KooL_style-2-Dark.rasi +++ b/assets/rofi/themes/KooL_style-2-Dark.rasi @@ -52,7 +52,7 @@ mainbox { padding: 40px; border-radius: 12px; background-color: black/90%; - children: [ "inputbar", "mode-switcher", "listview" ]; + children: [ "inputbar", "mode-switcher", "message", "listview" ]; } /*****----- Inputbar -----*****/ @@ -161,13 +161,17 @@ button selected { } /*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} error-message { padding: 20px; } textbox { padding: 10px; - background-color: black/75%; - text-color: white; + background-color: #719DF9; + text-color: inherit; vertical-align: 0.5; horizontal-align: 0.5; } diff --git a/assets/rofi/themes/KooL_style-2-Light.rasi b/assets/rofi/themes/KooL_style-2-Light.rasi index c2fc812f..118b6e54 100644 --- a/assets/rofi/themes/KooL_style-2-Light.rasi +++ b/assets/rofi/themes/KooL_style-2-Light.rasi @@ -52,7 +52,7 @@ mainbox { padding: 40px; border-radius: 12px; background-color: white/90%; - children: [ "inputbar", "mode-switcher", "listview" ]; + children: [ "inputbar", "mode-switcher", "message", "listview" ]; } /*****----- Inputbar -----*****/ @@ -152,23 +152,27 @@ button { padding: 6px; border: 0px solid; border-radius: 100%; - background-color: #719DF9; + background-color: #719DF9; text-color: inherit; cursor: pointer; } button selected { - background-color: #F37277; + background-color: #F37277; text-color: inherit; } /*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} error-message { padding: 20px; } textbox { padding: 10px; - background-color: gray/25%; - text-color: black; + background-color: #719DF9; + text-color: inherit; vertical-align: 0.5; horizontal-align: 0.5; } diff --git a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi index 55277f61..0dbf45bc 100644 --- a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -90,7 +90,7 @@ mainbox { border-radius: 0px 0px 0px 0px; border-color: @selected; background-color: transparent; - children: [ "inputbar", "listview" ]; + children: [ "inputbar", "message", "listview" ]; } /*****----- Inputbar -----*****/ @@ -196,6 +196,10 @@ element-text { } /*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} error-message { padding: 0px; border-color: @selected; @@ -204,7 +208,8 @@ error-message { } textbox { padding: 20px; - background-color: black/10%; + border-radius: 15px; + background-color: white / 10%; text-color: @foreground; vertical-align: 0.5; horizontal-align: 0.5; diff --git a/assets/rofi/themes/KooL_style-5.rasi b/assets/rofi/themes/KooL_style-5.rasi index 3d1f9220..135c6ba0 100644 --- a/assets/rofi/themes/KooL_style-5.rasi +++ b/assets/rofi/themes/KooL_style-5.rasi @@ -80,7 +80,7 @@ imagebox { listbox { spacing: 4px; orientation: vertical; - children: [ "listview" ]; + children: [ "message", "listview" ]; padding: 10px; border-radius: 12px; border: 1px; @@ -256,7 +256,7 @@ textbox { } error-message { padding: 12px; - border-radius: 20px; + border-radius: 12px; background-color: @background-alt; text-color: @background; } \ No newline at end of file diff --git a/assets/rofi/themes/KooL_style-7.rasi b/assets/rofi/themes/KooL_style-7.rasi index c5bec637..2ad7f714 100644 --- a/assets/rofi/themes/KooL_style-7.rasi +++ b/assets/rofi/themes/KooL_style-7.rasi @@ -64,7 +64,7 @@ mainbox { border-radius: 0px 0px 0px 0px; border-color: @selected; background-color: transparent; - children: [ "inputbar", "listview" ]; + children: [ "inputbar", "message", "listview" ]; } /*****----- Inputbar -----*****/ @@ -177,18 +177,22 @@ element-text { } /*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} error-message { padding: 20px; border: 2px solid; border-radius: 20px; - border-color: @selected; + border-color: @active; background-color: @background; text-color: @foreground; } textbox { padding: 10px; border-radius: 20px; - background-color: @color11; + background-color: @selected; text-color: @foreground; vertical-align: 0.5; horizontal-align: 0.5; diff --git a/assets/rofi/themes/KooL_style-8.rasi b/assets/rofi/themes/KooL_style-8.rasi index 7a54dff5..5d24a2ed 100644 --- a/assets/rofi/themes/KooL_style-8.rasi +++ b/assets/rofi/themes/KooL_style-8.rasi @@ -53,7 +53,7 @@ mainbox { spacing: 0em; padding: 0em; orientation: vertical; - children: [ "inputbar" , "mode-switcher", "listbox" ]; + children: [ "inputbar" , "mode-switcher", "message", "listbox" ]; background-color: transparent; } @@ -105,7 +105,7 @@ listview { spacing: 0.5em; enabled: true; columns: 2; - lines: 3; + lines: 4; cycle: true; dynamic: true; scrollbar: true; @@ -121,10 +121,10 @@ listview { /* ---- Mode Switcher ---- */ mode-switcher { orientation: horizontal; - width: 1em; + width: 2em; enabled: true; padding: 1em; - spacing: 0em; + spacing: 1em; background-color: transparent; } @@ -227,16 +227,17 @@ message { border: 0px; } textbox { + margin: 12px; padding: 12px; - border-radius: 0px; - background-color: @color11; + border-radius: @border-radius; + background-color: @color12; text-color: @foreground; vertical-align: 0.5; horizontal-align: 0.5; } error-message { - padding: 12px; - border-radius: 0px; + padding: 0px; + border-radius: @border-radius; background-color: @background; text-color: @foreground; } diff --git a/assets/rofi/themes/KooL_style-9.rasi b/assets/rofi/themes/KooL_style-9.rasi index a03f877f..7c49d929 100644 --- a/assets/rofi/themes/KooL_style-9.rasi +++ b/assets/rofi/themes/KooL_style-9.rasi @@ -48,7 +48,7 @@ window { border: 2px; border-color: @BDR; border-radius: 10px; - width: 25%; + width: 30%; anchor: center; x-offset: 0; y-offset: 0; diff --git a/config/hypr/scripts/RofiEmoji.sh b/config/hypr/scripts/RofiEmoji.sh index 1079bfdd..50c22706 100755 --- a/config/hypr/scripts/RofiEmoji.sh +++ b/config/hypr/scripts/RofiEmoji.sh @@ -4,6 +4,7 @@ # Variables rofi_theme="~/.config/rofi/config-emoji.rasi" +msg='** note ** ๐Ÿ‘€ Click or Return to choose || Ctrl V to Paste' # Check if rofi is already running if pidof rofi > /dev/null; then @@ -11,7 +12,7 @@ if pidof rofi > /dev/null; then fi sed '1,/^# # DATA # #$/d' "$0" | \ -rofi -i -dmenu -config $rofi_theme | \ +rofi -i -dmenu -mesg "$msg" -config $rofi_theme | \ awk -F'\t' '{print $1}' | \ tr -d '\n' | \ wl-copy @@ -20,4939 +21,5045 @@ exit # # DATA # # -๐Ÿ˜€ face face | grin | grinning face -๐Ÿ˜ƒ face with big eyes face | grinning face with big eyes | mouth | open | smile -๐Ÿ˜„ face with smiling eyes eye | face | grinning face with smiling eyes | mouth | open | smile -๐Ÿ˜ face with smiling eyes beaming face with smiling eyes | eye | face | grin | smile -๐Ÿ˜† squinting face face | grinning squinting face | laugh | mouth | satisfied | smile -๐Ÿ˜… face with sweat cold | face | grinning face with sweat | open | smile | sweat -๐Ÿคฃ on the floor laughing face | floor | laugh | rofl | rolling | rolling on the floor laughing | rotfl -๐Ÿ˜‚ with tears of joy face | face with tears of joy | joy | laugh | tear -๐Ÿ™‚ smiling face face | slightly smiling face | smile -๐Ÿ™ƒ face face | upside-down | upside down | upside-down face -๐Ÿซ  face disappear | dissolve | liquid | melt | melting face -๐Ÿ˜‰ face face | wink | winking face -๐Ÿ˜Š face with smiling eyes blush | eye | face | smile | smiling face with smiling eyes -๐Ÿ˜‡ face with halo angel | face | fantasy | halo | innocent | smiling face with halo -๐Ÿฅฐ face with hearts adore | crush | hearts | in love | smiling face with hearts -๐Ÿ˜ face with heart-eyes eye | face | love | smile | smiling face with heart-eyes | smiling face with heart eyes -๐Ÿคฉ eyes | face | grinning | star | star-struck -๐Ÿ˜˜ blowing a kiss face | face blowing a kiss | kiss -๐Ÿ˜— face face | kiss | kissing face -โ˜บ๏ธ face -โ˜บ face face | outlined | relaxed | smile | smiling face -๐Ÿ˜š face with closed eyes closed | eye | face | kiss | kissing face with closed eyes -๐Ÿ˜™ face with smiling eyes eye | face | kiss | kissing face with smiling eyes | smile -๐Ÿฅฒ face with tear grateful | proud | relieved | smiling | smiling face with tear | tear | touched -๐Ÿ˜‹ face-tongue savoring food delicious | face | face savoring food | savouring | smile | yum | face savouring food | savoring -๐Ÿ˜› face-tongue with tongue face | face with tongue | tongue -๐Ÿ˜œ face-tongue face with tongue eye | face | joke | tongue | wink | winking face with tongue -๐Ÿคช face-tongue face eye | goofy | large | small | zany face -๐Ÿ˜ face-tongue face with tongue eye | face | horrible | squinting face with tongue | taste | tongue -๐Ÿค‘ face-tongue face face | money | money-mouth face | mouth -๐Ÿค— face with open hands face | hug | hugging | open hands | smiling face | smiling face with open hands -๐Ÿคญ with hand over mouth face with hand over mouth | whoops | embarrassed | oops -๐Ÿซข with open eyes and hand over mouth amazement | awe | disbelief | embarrass | face with open eyes and hand over mouth | scared | surprise -๐Ÿซฃ with peeking eye captivated | face with peeking eye | peep | stare -๐Ÿคซ face quiet | shush | shushing face | shooshing face -๐Ÿค” face face | thinking -๐Ÿซก face OK | salute | saluting face | sunny | troops | yes -๐Ÿค face face | mouth | zip | zipper | zipper-mouth face | zip-mouth face -๐Ÿคจ with raised eyebrow distrust | face with raised eyebrow | skeptic | sceptic -๐Ÿ˜ face deadpan | face | meh | neutral -๐Ÿ˜‘ face expressionless | face | inexpressive | meh | unexpressive -๐Ÿ˜ถ without mouth face | face without mouth | mouth | quiet | silent -๐Ÿซฅ line face depressed | disappear | dotted line face | hide | introvert | invisible | dotted-line face -๐Ÿ˜ถโ€๐ŸŒซ๏ธ in clouds -๐Ÿ˜ถโ€๐ŸŒซ in clouds absentminded | face in clouds | face in the fog | head in clouds | absent-minded -๐Ÿ˜ face face | smirk | smirking face -๐Ÿ˜’ face face | unamused | unhappy -๐Ÿ™„ with rolling eyes eyeroll | eyes | face | face with rolling eyes | rolling -๐Ÿ˜ฌ face face | grimace | grimacing face -๐Ÿ˜ฎโ€๐Ÿ’จ exhaling exhale | face exhaling | gasp | groan | relief | whisper | whistle -๐Ÿคฅ face face | lie | lying face | pinocchio | Pinocchio -๐Ÿซจ face earthquake | face | shaking | shock | vibrate -๐Ÿ™‚โ€โ†”๏ธ shaking horizontally -๐Ÿ™‚โ€โ†” shaking horizontally head shaking horizontally | no | shake -๐Ÿ™‚โ€โ†•๏ธ shaking vertically -๐Ÿ™‚โ€โ†• shaking vertically head shaking vertically | nod | yes -๐Ÿ˜Œ face | relieved -๐Ÿ˜” dejected | face | pensive -๐Ÿ˜ช face | good night | sleep | sleepy face -๐Ÿคค drooling | face -๐Ÿ˜ด face | good night | sleep | sleeping face | ZZZ -๐Ÿ˜ท face-unwell with medical mask cold | doctor | face | face with medical mask | mask | sick | ill | medicine | poorly -๐Ÿค’ face-unwell with thermometer face | face with thermometer | ill | sick | thermometer -๐Ÿค• face-unwell with head-bandage bandage | face | face with head-bandage | hurt | injury | face with head bandage -๐Ÿคข face-unwell face face | nauseated | vomit -๐Ÿคฎ face-unwell vomiting face vomiting | puke | sick | vomit -๐Ÿคง face-unwell face face | gesundheit | sneeze | sneezing face | bless you -๐Ÿฅต face-unwell face feverish | heat stroke | hot | hot face | red-faced | sweating | flushed -๐Ÿฅถ face-unwell face blue-faced | cold | cold face | freezing | frostbite | icicles -๐Ÿฅด face-unwell face dizzy | intoxicated | tipsy | uneven eyes | wavy mouth | woozy face -๐Ÿ˜ต face-unwell with crossed-out eyes crossed-out eyes | dead | face | face with crossed-out eyes | knocked out -๐Ÿ˜ตโ€๐Ÿ’ซ face-unwell with spiral eyes dizzy | face with spiral eyes | hypnotized | spiral | trouble | whoa | hypnotised -๐Ÿคฏ face-unwell head exploding head | mind blown | shocked -๐Ÿค  face-hat hat face cowboy | cowgirl | face | hat | face with cowboy hat -๐Ÿฅณ face-hat face celebration | hat | horn | party | partying face -๐Ÿฅธ face-hat face disguise | disguised face | face | glasses | incognito | nose -๐Ÿ˜Ž face-glasses face with sunglasses bright | cool | face | smiling face with sunglasses | sun | sunglasses -๐Ÿค“ face-glasses face face | geek | nerd -๐Ÿง face-glasses with monocle face | face with monocle | monocle | stuffy -๐Ÿ˜• face-concerned face confused | face | meh -๐Ÿซค face-concerned with diagonal mouth disappointed | face with diagonal mouth | meh | skeptical | unsure | sceptical -๐Ÿ˜Ÿ face-concerned face face | worried -๐Ÿ™ face-concerned frowning face face | frown | slightly frowning face -โ˜น๏ธ face-concerned face -โ˜น face-concerned face face | frown | frowning face -๐Ÿ˜ฎ face-concerned with open mouth face | face with open mouth | mouth | open | sympathy -๐Ÿ˜ฏ face-concerned face face | hushed | stunned | surprised -๐Ÿ˜ฒ face-concerned face astonished | face | shocked | totally -๐Ÿ˜ณ face-concerned face dazed | face | flushed -๐Ÿฅบ face-concerned face begging | mercy | pleading face | puppy eyes -๐Ÿฅน face-concerned holding back tears angry | cry | face holding back tears | proud | resist | sad -๐Ÿ˜ฆ face-concerned face with open mouth face | frown | frowning face with open mouth | mouth | open -๐Ÿ˜ง face-concerned face anguished | face -๐Ÿ˜จ face-concerned face face | fear | fearful | scared -๐Ÿ˜ฐ face-concerned face with sweat anxious face with sweat | blue | cold | face | rushed | sweat -๐Ÿ˜ฅ face-concerned but relieved face disappointed | face | relieved | sad but relieved face | whew -๐Ÿ˜ข face-concerned face cry | crying face | face | sad | tear -๐Ÿ˜ญ face-concerned crying face cry | face | loudly crying face | sad | sob | tear -๐Ÿ˜ฑ face-concerned screaming in fear face | face screaming in fear | fear | munch | scared | scream | Munch -๐Ÿ˜– face-concerned face confounded | face -๐Ÿ˜ฃ face-concerned face face | persevere | persevering face -๐Ÿ˜ž face-concerned face disappointed | face -๐Ÿ˜“ face-concerned face with sweat cold | downcast face with sweat | face | sweat -๐Ÿ˜ฉ face-concerned face face | tired | weary -๐Ÿ˜ซ face-concerned face face | tired -๐Ÿฅฑ face-concerned face bored | tired | yawn | yawning face -๐Ÿ˜ค face-negative with steam from nose face | face with steam from nose | triumph | won | angry | frustration -๐Ÿ˜ก face-negative face angry | enraged | face | mad | pouting | rage | red -๐Ÿ˜  face-negative face anger | angry | face | mad -๐Ÿคฌ face-negative with symbols on mouth face with symbols on mouth | swearing -๐Ÿ˜ˆ face-negative face with horns face | fairy tale | fantasy | horns | smile | smiling face with horns | devil -๐Ÿ‘ฟ face-negative face with horns angry face with horns | demon | devil | face | fantasy | imp -๐Ÿ’€ face-negative death | face | fairy tale | monster | skull -โ˜ ๏ธ face-negative and crossbones -โ˜  face-negative and crossbones crossbones | death | face | monster | skull | skull and crossbones -๐Ÿ’ฉ face-costume of poo dung | face | monster | pile of poo | poo | poop -๐Ÿคก face-costume face clown | face -๐Ÿ‘น face-costume creature | face | fairy tale | fantasy | monster | ogre -๐Ÿ‘บ face-costume creature | face | fairy tale | fantasy | goblin | monster -๐Ÿ‘ป face-costume creature | face | fairy tale | fantasy | ghost | monster -๐Ÿ‘ฝ face-costume alien | creature | extraterrestrial | face | fantasy | ufo | ET | UFO -๐Ÿ‘พ face-costume monster alien | creature | extraterrestrial | face | monster | ufo | ET | UFO -๐Ÿค– face-costume face | monster | robot -๐Ÿ˜บ cat-face cat cat | face | grinning | mouth | open | smile -๐Ÿ˜ธ cat-face cat with smiling eyes cat | eye | face | grin | grinning cat with smiling eyes | smile -๐Ÿ˜น cat-face with tears of joy cat | cat with tears of joy | face | joy | tear -๐Ÿ˜ป cat-face cat with heart-eyes cat | eye | face | heart | love | smile | smiling cat with heart-eyes | smiling cat face with heart eyes -๐Ÿ˜ผ cat-face with wry smile cat | cat with wry smile | face | ironic | smile | wry -๐Ÿ˜ฝ cat-face cat cat | eye | face | kiss | kissing cat -๐Ÿ™€ cat-face cat cat | face | oh | surprised | weary -๐Ÿ˜ฟ cat-face cat cat | cry | crying cat | face | sad | tear -๐Ÿ˜พ cat-face cat cat | face | pouting -๐Ÿ™ˆ monkey-face monkey evil | face | forbidden | monkey | see | see-no-evil monkey -๐Ÿ™‰ monkey-face monkey evil | face | forbidden | hear | hear-no-evil monkey | monkey -๐Ÿ™Š monkey-face monkey evil | face | forbidden | monkey | speak | speak-no-evil monkey -๐Ÿ’Œ heart letter heart | letter | love | mail -๐Ÿ’˜ heart with arrow arrow | cupid | heart with arrow -๐Ÿ’ heart with ribbon heart with ribbon | ribbon | valentine -๐Ÿ’– heart heart excited | sparkle | sparkling heart -๐Ÿ’— heart heart excited | growing | growing heart | nervous | pulse -๐Ÿ’“ heart heart beating | beating heart | heartbeat | pulsating -๐Ÿ’ž heart hearts revolving | revolving hearts -๐Ÿ’• heart hearts love | two hearts -๐Ÿ’Ÿ heart decoration heart | heart decoration -โฃ๏ธ heart exclamation -โฃ heart exclamation exclamation | heart exclamation | mark | punctuation -๐Ÿ’” heart heart break | broken | broken heart -โค๏ธโ€๐Ÿ”ฅ heart on fire -โคโ€๐Ÿ”ฅ heart on fire burn | heart | heart on fire | love | lust | sacred heart -โค๏ธโ€๐Ÿฉน heart heart -โคโ€๐Ÿฉน heart heart healthier | improving | mending | mending heart | recovering | recuperating | well -โค๏ธ heart heart -โค heart heart heart | red heart -๐Ÿฉท heart heart cute | heart | like | love | pink -๐Ÿงก heart heart orange | orange heart -๐Ÿ’› heart heart yellow | yellow heart -๐Ÿ’š heart heart green | green heart -๐Ÿ’™ heart heart blue | blue heart -๐Ÿฉต heart blue heart cyan | heart | light blue | light blue heart | teal -๐Ÿ’œ heart heart purple | purple heart -๐ŸคŽ heart heart brown | heart -๐Ÿ–ค heart heart black | black heart | evil | wicked -๐Ÿฉถ heart heart gray | grey heart | heart | silver | slate | grey -๐Ÿค heart heart heart | white -๐Ÿ’‹ emotion mark kiss | kiss mark | lips -๐Ÿ’ฏ emotion points 100 | full | hundred | hundred points | score | hundred percent | one hundred -๐Ÿ’ข emotion symbol anger symbol | angry | comic | mad -๐Ÿ’ฅ emotion boom | collision | comic -๐Ÿ’ซ emotion comic | dizzy | star -๐Ÿ’ฆ emotion droplets comic | splashing | sweat | sweat droplets -๐Ÿ’จ emotion away comic | dash | dashing away | running -๐Ÿ•ณ๏ธ emotion -๐Ÿ•ณ emotion hole -๐Ÿ’ฌ emotion balloon balloon | bubble | comic | dialog | speech | dialogue -๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ emotion in speech bubble -๐Ÿ‘๏ธโ€๐Ÿ—จ emotion in speech bubble -๐Ÿ‘โ€๐Ÿ—จ emotion in speech bubble balloon | bubble | eye | eye in speech bubble | speech | witness -๐Ÿ—จ๏ธ emotion speech bubble -๐Ÿ—จ emotion speech bubble balloon | bubble | dialog | left speech bubble | speech | dialogue -๐Ÿ—ฏ๏ธ emotion anger bubble -๐Ÿ—ฏ emotion anger bubble angry | balloon | bubble | mad | right anger bubble -๐Ÿ’ญ emotion balloon balloon | bubble | comic | thought -๐Ÿ’ค emotion comic | good night | sleep | ZZZ -๐Ÿ‘‹ hand hand | wave | waving -๐Ÿ‘‹๐Ÿป hand: light skin tone hand | light skin tone | wave | waving | waving hand: light skin tone -๐Ÿ‘‹๐Ÿผ hand: medium-light skin tone hand | medium-light skin tone | wave | waving | waving hand: medium-light skin tone -๐Ÿ‘‹๐Ÿฝ hand: medium skin tone hand | medium skin tone | wave | waving | waving hand: medium skin tone -๐Ÿ‘‹๐Ÿพ hand: medium-dark skin tone hand | medium-dark skin tone | wave | waving | waving hand: medium-dark skin tone -๐Ÿ‘‹๐Ÿฟ hand: dark skin tone dark skin tone | hand | wave | waving | waving hand: dark skin tone -๐Ÿคš back of hand backhand | raised | raised back of hand -๐Ÿคš๐Ÿป back of hand: light skin tone backhand | light skin tone | raised | raised back of hand | raised back of hand: light skin tone -๐Ÿคš๐Ÿผ back of hand: medium-light skin tone backhand | medium-light skin tone | raised | raised back of hand | raised back of hand: medium-light skin tone -๐Ÿคš๐Ÿฝ back of hand: medium skin tone backhand | medium skin tone | raised | raised back of hand | raised back of hand: medium skin tone -๐Ÿคš๐Ÿพ back of hand: medium-dark skin tone backhand | medium-dark skin tone | raised | raised back of hand | raised back of hand: medium-dark skin tone -๐Ÿคš๐Ÿฟ back of hand: dark skin tone backhand | dark skin tone | raised | raised back of hand | raised back of hand: dark skin tone -๐Ÿ–๏ธ with fingers splayed -๐Ÿ– with fingers splayed finger | hand | hand with fingers splayed | splayed -๐Ÿ–๐Ÿป with fingers splayed: light skin tone finger | hand | hand with fingers splayed | hand with fingers splayed: light skin tone | light skin tone | splayed -๐Ÿ–๐Ÿผ with fingers splayed: medium-light skin tone finger | hand | hand with fingers splayed | hand with fingers splayed: medium-light skin tone | medium-light skin tone | splayed -๐Ÿ–๐Ÿฝ with fingers splayed: medium skin tone finger | hand | hand with fingers splayed | hand with fingers splayed: medium skin tone | medium skin tone | splayed -๐Ÿ–๐Ÿพ with fingers splayed: medium-dark skin tone finger | hand | hand with fingers splayed | hand with fingers splayed: medium-dark skin tone | medium-dark skin tone | splayed -๐Ÿ–๐Ÿฟ with fingers splayed: dark skin tone dark skin tone | finger | hand | hand with fingers splayed | hand with fingers splayed: dark skin tone | splayed -โœ‹ hand hand | high 5 | high five | raised hand -โœ‹๐Ÿป hand: light skin tone hand | high 5 | high five | light skin tone | raised hand | raised hand: light skin tone -โœ‹๐Ÿผ hand: medium-light skin tone hand | high 5 | high five | medium-light skin tone | raised hand | raised hand: medium-light skin tone -โœ‹๐Ÿฝ hand: medium skin tone hand | high 5 | high five | medium skin tone | raised hand | raised hand: medium skin tone -โœ‹๐Ÿพ hand: medium-dark skin tone hand | high 5 | high five | medium-dark skin tone | raised hand | raised hand: medium-dark skin tone -โœ‹๐Ÿฟ hand: dark skin tone dark skin tone | hand | high 5 | high five | raised hand | raised hand: dark skin tone -๐Ÿ–– salute finger | hand | spock | vulcan | vulcan salute | Vulcan salute | Spock | Vulcan -๐Ÿ––๐Ÿป salute: light skin tone finger | hand | light skin tone | spock | vulcan | vulcan salute | vulcan salute: light skin tone | Vulcan salute | Vulcan salute: light skin tone | Spock | Vulcan -๐Ÿ––๐Ÿผ salute: medium-light skin tone finger | hand | medium-light skin tone | spock | vulcan | vulcan salute | vulcan salute: medium-light skin tone | Vulcan salute | Vulcan salute: medium-light skin tone | Spock | Vulcan -๐Ÿ––๐Ÿฝ salute: medium skin tone finger | hand | medium skin tone | spock | vulcan | vulcan salute | vulcan salute: medium skin tone | Vulcan salute | Vulcan salute: medium skin tone | Spock | Vulcan -๐Ÿ––๐Ÿพ salute: medium-dark skin tone finger | hand | medium-dark skin tone | spock | vulcan | vulcan salute | vulcan salute: medium-dark skin tone | Vulcan salute | Vulcan salute: medium-dark skin tone | Spock | Vulcan -๐Ÿ––๐Ÿฟ salute: dark skin tone dark skin tone | finger | hand | spock | vulcan | vulcan salute | vulcan salute: dark skin tone | Vulcan salute | Vulcan salute: dark skin tone | Spock | Vulcan -๐Ÿซฑ hand hand | right | rightward | rightwards hand | rightwards -๐Ÿซฑ๐Ÿป hand: light skin tone hand | light skin tone | right | rightward | rightwards hand | rightwards hand: light skin tone | rightward hand: light skin tone | rightwards -๐Ÿซฑ๐Ÿผ hand: medium-light skin tone hand | medium-light skin tone | right | rightward | rightwards hand | rightwards hand: medium-light skin tone | rightward hand: medium-light skin tone | rightwards -๐Ÿซฑ๐Ÿฝ hand: medium skin tone hand | medium skin tone | right | rightward | rightwards hand | rightwards hand: medium skin tone | rightward hand: medium skin tone | rightwards -๐Ÿซฑ๐Ÿพ hand: medium-dark skin tone hand | medium-dark skin tone | right | rightward | rightwards hand | rightwards hand: medium-dark skin tone | rightward hand: medium-dark skin tone | rightwards -๐Ÿซฑ๐Ÿฟ hand: dark skin tone dark skin tone | hand | right | rightward | rightwards hand | rightwards hand: dark skin tone | rightward hand: dark skin tone | rightwards -๐Ÿซฒ hand hand | left | leftward | leftwards hand | leftwards -๐Ÿซฒ๐Ÿป hand: light skin tone hand | left | leftward | leftwards hand | leftwards hand: light skin tone | light skin tone | leftward hand: light skin tone | leftwards -๐Ÿซฒ๐Ÿผ hand: medium-light skin tone hand | left | leftward | leftwards hand | leftwards hand: medium-light skin tone | medium-light skin tone | leftward hand: medium-light skin tone | leftwards -๐Ÿซฒ๐Ÿฝ hand: medium skin tone hand | left | leftward | leftwards hand | leftwards hand: medium skin tone | medium skin tone | leftward hand: medium skin tone | leftwards -๐Ÿซฒ๐Ÿพ hand: medium-dark skin tone hand | left | leftward | leftwards hand | leftwards hand: medium-dark skin tone | medium-dark skin tone | leftward hand: medium-dark skin tone | leftwards -๐Ÿซฒ๐Ÿฟ hand: dark skin tone dark skin tone | hand | left | leftward | leftwards hand | leftwards hand: dark skin tone | leftward hand: dark skin tone | leftwards -๐Ÿซณ down hand dismiss | drop | palm down hand | shoo | palm-down hand -๐Ÿซณ๐Ÿป down hand: light skin tone dismiss | drop | light skin tone | palm down hand | palm down hand: light skin tone | shoo | palm-down hand | palm-down hand: light skin tone -๐Ÿซณ๐Ÿผ down hand: medium-light skin tone dismiss | drop | medium-light skin tone | palm down hand | palm down hand: medium-light skin tone | shoo | palm-down hand | palm-down hand: medium-light skin tone -๐Ÿซณ๐Ÿฝ down hand: medium skin tone dismiss | drop | medium skin tone | palm down hand | palm down hand: medium skin tone | shoo | palm-down hand | palm-down hand: medium skin tone -๐Ÿซณ๐Ÿพ down hand: medium-dark skin tone dismiss | drop | medium-dark skin tone | palm down hand | palm down hand: medium-dark skin tone | shoo | palm-down hand | palm-down hand: medium-dark skin tone -๐Ÿซณ๐Ÿฟ down hand: dark skin tone dark skin tone | dismiss | drop | palm down hand | palm down hand: dark skin tone | shoo | palm-down hand | palm-down hand: dark skin tone -๐Ÿซด up hand beckon | catch | come | offer | palm up hand | palm-up hand -๐Ÿซด๐Ÿป up hand: light skin tone beckon | catch | come | light skin tone | offer | palm up hand | palm up hand: light skin tone | palm-up hand | palm-up hand: light skin tone -๐Ÿซด๐Ÿผ up hand: medium-light skin tone beckon | catch | come | medium-light skin tone | offer | palm up hand | palm up hand: medium-light skin tone | palm-up hand | palm-up hand: medium-light skin tone -๐Ÿซด๐Ÿฝ up hand: medium skin tone beckon | catch | come | medium skin tone | offer | palm up hand | palm up hand: medium skin tone | palm-up hand | palm-up hand: medium skin tone -๐Ÿซด๐Ÿพ up hand: medium-dark skin tone beckon | catch | come | medium-dark skin tone | offer | palm up hand | palm up hand: medium-dark skin tone | palm-up hand | palm-up hand: medium-dark skin tone -๐Ÿซด๐Ÿฟ up hand: dark skin tone beckon | catch | come | dark skin tone | offer | palm up hand | palm up hand: dark skin tone | palm-up hand | palm-up hand: dark skin tone -๐Ÿซท pushing hand high five | leftward | leftwards pushing hand | push | refuse | stop | wait | leftward-pushing hand -๐Ÿซท๐Ÿป pushing hand: light skin tone high five | leftward | leftwards pushing hand | leftwards pushing hand: light skin tone | light skin tone | push | refuse | stop | wait | leftward-pushing hand | leftward-pushing hand: light skin tone -๐Ÿซท๐Ÿผ pushing hand: medium-light skin tone high five | leftward | leftwards pushing hand | leftwards pushing hand: medium-light skin tone | medium-light skin tone | push | refuse | stop | wait | leftward-pushing hand | leftward-pushing hand: medium-light skin tone -๐Ÿซท๐Ÿฝ pushing hand: medium skin tone high five | leftward | leftwards pushing hand | leftwards pushing hand: medium skin tone | medium skin tone | push | refuse | stop | wait | leftward-pushing hand | leftward-pushing hand: medium skin tone -๐Ÿซท๐Ÿพ pushing hand: medium-dark skin tone high five | leftward | leftwards pushing hand | leftwards pushing hand: medium-dark skin tone | medium-dark skin tone | push | refuse | stop | wait | leftward-pushing hand | leftward-pushing hand: medium-dark skin tone -๐Ÿซท๐Ÿฟ pushing hand: dark skin tone dark skin tone | high five | leftward | leftwards pushing hand | leftwards pushing hand: dark skin tone | push | refuse | stop | wait | leftward-pushing hand | leftward-pushing hand: dark skin tone -๐Ÿซธ pushing hand high five | push | refuse | rightward | rightwards pushing hand | stop | wait | rightward-pushing hand -๐Ÿซธ๐Ÿป pushing hand: light skin tone high five | light skin tone | push | refuse | rightward | rightwards pushing hand | rightwards pushing hand: light skin tone | stop | wait | rightward-pushing hand | rightward-pushing hand: light skin tone -๐Ÿซธ๐Ÿผ pushing hand: medium-light skin tone high five | medium-light skin tone | push | refuse | rightward | rightwards pushing hand | rightwards pushing hand: medium-light skin tone | stop | wait | rightward-pushing hand | rightward-pushing hand: medium-light skin tone -๐Ÿซธ๐Ÿฝ pushing hand: medium skin tone high five | medium skin tone | push | refuse | rightward | rightwards pushing hand | rightwards pushing hand: medium skin tone | stop | wait | rightward-pushing hand | rightward-pushing hand: medium skin tone -๐Ÿซธ๐Ÿพ pushing hand: medium-dark skin tone high five | medium-dark skin tone | push | refuse | rightward | rightwards pushing hand | rightwards pushing hand: medium-dark skin tone | stop | wait | rightward-pushing hand | rightward-pushing hand: medium-dark skin tone -๐Ÿซธ๐Ÿฟ pushing hand: dark skin tone dark skin tone | high five | push | refuse | rightward | rightwards pushing hand | rightwards pushing hand: dark skin tone | stop | wait | rightward-pushing hand | rightward-pushing hand: dark skin tone -๐Ÿ‘Œ hand hand | OK | perfect -๐Ÿ‘Œ๐Ÿป hand: light skin tone hand | light skin tone | OK | OK hand: light skin tone | perfect -๐Ÿ‘Œ๐Ÿผ hand: medium-light skin tone hand | medium-light skin tone | OK | OK hand: medium-light skin tone | perfect -๐Ÿ‘Œ๐Ÿฝ hand: medium skin tone hand | medium skin tone | OK | OK hand: medium skin tone | perfect -๐Ÿ‘Œ๐Ÿพ hand: medium-dark skin tone hand | medium-dark skin tone | OK | OK hand: medium-dark skin tone | perfect -๐Ÿ‘Œ๐Ÿฟ hand: dark skin tone dark skin tone | hand | OK | OK hand: dark skin tone | perfect -๐ŸคŒ fingers fingers | hand gesture | interrogation | pinched | sarcastic -๐ŸคŒ๐Ÿป fingers: light skin tone fingers | hand gesture | interrogation | light skin tone | pinched | pinched fingers: light skin tone | sarcastic -๐ŸคŒ๐Ÿผ fingers: medium-light skin tone fingers | hand gesture | interrogation | medium-light skin tone | pinched | pinched fingers: medium-light skin tone | sarcastic -๐ŸคŒ๐Ÿฝ fingers: medium skin tone fingers | hand gesture | interrogation | medium skin tone | pinched | pinched fingers: medium skin tone | sarcastic -๐ŸคŒ๐Ÿพ fingers: medium-dark skin tone fingers | hand gesture | interrogation | medium-dark skin tone | pinched | pinched fingers: medium-dark skin tone | sarcastic -๐ŸคŒ๐Ÿฟ fingers: dark skin tone dark skin tone | fingers | hand gesture | interrogation | pinched | pinched fingers: dark skin tone | sarcastic -๐Ÿค hand pinching hand | small amount -๐Ÿค๐Ÿป hand: light skin tone light skin tone | pinching hand | pinching hand: light skin tone | small amount -๐Ÿค๐Ÿผ hand: medium-light skin tone medium-light skin tone | pinching hand | pinching hand: medium-light skin tone | small amount -๐Ÿค๐Ÿฝ hand: medium skin tone medium skin tone | pinching hand | pinching hand: medium skin tone | small amount -๐Ÿค๐Ÿพ hand: medium-dark skin tone medium-dark skin tone | pinching hand | pinching hand: medium-dark skin tone | small amount -๐Ÿค๐Ÿฟ hand: dark skin tone dark skin tone | pinching hand | pinching hand: dark skin tone | small amount -โœŒ๏ธ hand -โœŒ hand hand | v | victory -โœŒ๐Ÿป hand: light skin tone hand | light skin tone | v | victory | victory hand: light skin tone -โœŒ๐Ÿผ hand: medium-light skin tone hand | medium-light skin tone | v | victory | victory hand: medium-light skin tone -โœŒ๐Ÿฝ hand: medium skin tone hand | medium skin tone | v | victory | victory hand: medium skin tone -โœŒ๐Ÿพ hand: medium-dark skin tone hand | medium-dark skin tone | v | victory | victory hand: medium-dark skin tone -โœŒ๐Ÿฟ hand: dark skin tone dark skin tone | hand | v | victory | victory hand: dark skin tone -๐Ÿคž fingers cross | crossed fingers | finger | hand | luck | good luck -๐Ÿคž๐Ÿป fingers: light skin tone cross | crossed fingers | crossed fingers: light skin tone | finger | hand | light skin tone | luck | good luck -๐Ÿคž๐Ÿผ fingers: medium-light skin tone cross | crossed fingers | crossed fingers: medium-light skin tone | finger | hand | luck | medium-light skin tone | good luck -๐Ÿคž๐Ÿฝ fingers: medium skin tone cross | crossed fingers | crossed fingers: medium skin tone | finger | hand | luck | medium skin tone | good luck -๐Ÿคž๐Ÿพ fingers: medium-dark skin tone cross | crossed fingers | crossed fingers: medium-dark skin tone | finger | hand | luck | medium-dark skin tone | good luck -๐Ÿคž๐Ÿฟ fingers: dark skin tone cross | crossed fingers | crossed fingers: dark skin tone | dark skin tone | finger | hand | luck | good luck -๐Ÿซฐ with index finger and thumb crossed expensive | hand with index finger and thumb crossed | heart | love | money | snap -๐Ÿซฐ๐Ÿป with index finger and thumb crossed: light skin tone expensive | hand with index finger and thumb crossed | hand with index finger and thumb crossed: light skin tone | heart | light skin tone | love | money | snap -๐Ÿซฐ๐Ÿผ with index finger and thumb crossed: medium-light skin tone expensive | hand with index finger and thumb crossed | hand with index finger and thumb crossed: medium-light skin tone | heart | love | medium-light skin tone | money | snap -๐Ÿซฐ๐Ÿฝ with index finger and thumb crossed: medium skin tone expensive | hand with index finger and thumb crossed | hand with index finger and thumb crossed: medium skin tone | heart | love | medium skin tone | money | snap -๐Ÿซฐ๐Ÿพ with index finger and thumb crossed: medium-dark skin tone expensive | hand with index finger and thumb crossed | hand with index finger and thumb crossed: medium-dark skin tone | heart | love | medium-dark skin tone | money | snap -๐Ÿซฐ๐Ÿฟ with index finger and thumb crossed: dark skin tone dark skin tone | expensive | hand with index finger and thumb crossed | hand with index finger and thumb crossed: dark skin tone | heart | love | money | snap -๐ŸคŸ gesture hand | ILY | love-you gesture | love you gesture -๐ŸคŸ๐Ÿป gesture: light skin tone hand | ILY | light skin tone | love-you gesture | love-you gesture: light skin tone | love you gesture -๐ŸคŸ๐Ÿผ gesture: medium-light skin tone hand | ILY | love-you gesture | love-you gesture: medium-light skin tone | medium-light skin tone | love you gesture -๐ŸคŸ๐Ÿฝ gesture: medium skin tone hand | ILY | love-you gesture | love-you gesture: medium skin tone | medium skin tone | love you gesture -๐ŸคŸ๐Ÿพ gesture: medium-dark skin tone hand | ILY | love-you gesture | love-you gesture: medium-dark skin tone | medium-dark skin tone | love you gesture -๐ŸคŸ๐Ÿฟ gesture: dark skin tone dark skin tone | hand | ILY | love-you gesture | love-you gesture: dark skin tone | love you gesture -๐Ÿค˜ of the horns finger | hand | horns | rock-on | sign of the horns | rock on -๐Ÿค˜๐Ÿป of the horns: light skin tone finger | hand | horns | light skin tone | rock-on | sign of the horns | sign of the horns: light skin tone | rock on -๐Ÿค˜๐Ÿผ of the horns: medium-light skin tone finger | hand | horns | medium-light skin tone | rock-on | sign of the horns | sign of the horns: medium-light skin tone | rock on -๐Ÿค˜๐Ÿฝ of the horns: medium skin tone finger | hand | horns | medium skin tone | rock-on | sign of the horns | sign of the horns: medium skin tone | rock on -๐Ÿค˜๐Ÿพ of the horns: medium-dark skin tone finger | hand | horns | medium-dark skin tone | rock-on | sign of the horns | sign of the horns: medium-dark skin tone | rock on -๐Ÿค˜๐Ÿฟ of the horns: dark skin tone dark skin tone | finger | hand | horns | rock-on | sign of the horns | sign of the horns: dark skin tone | rock on -๐Ÿค™ me hand call | call me hand | hand | hang loose | Shaka | call-me hand | shaka -๐Ÿค™๐Ÿป me hand: light skin tone call | call me hand | call me hand: light skin tone | hand | hang loose | light skin tone | Shaka | call-me hand | shaka | call-me hand: light skin tone -๐Ÿค™๐Ÿผ me hand: medium-light skin tone call | call me hand | call me hand: medium-light skin tone | hand | hang loose | medium-light skin tone | Shaka | call-me hand | shaka | call-me hand: medium-light skin tone -๐Ÿค™๐Ÿฝ me hand: medium skin tone call | call me hand | call me hand: medium skin tone | hand | hang loose | medium skin tone | Shaka | call-me hand | shaka | call-me hand: medium skin tone -๐Ÿค™๐Ÿพ me hand: medium-dark skin tone call | call me hand | call me hand: medium-dark skin tone | hand | hang loose | medium-dark skin tone | Shaka | call-me hand | shaka | call-me hand: medium-dark skin tone -๐Ÿค™๐Ÿฟ me hand: dark skin tone call | call me hand | call me hand: dark skin tone | dark skin tone | hand | hang loose | Shaka | call-me hand | shaka | call-me hand: dark skin tone -๐Ÿ‘ˆ index pointing left backhand | backhand index pointing left | finger | hand | index | point -๐Ÿ‘ˆ๐Ÿป index pointing left: light skin tone backhand | backhand index pointing left | backhand index pointing left: light skin tone | finger | hand | index | light skin tone | point -๐Ÿ‘ˆ๐Ÿผ index pointing left: medium-light skin tone backhand | backhand index pointing left | backhand index pointing left: medium-light skin tone | finger | hand | index | medium-light skin tone | point -๐Ÿ‘ˆ๐Ÿฝ index pointing left: medium skin tone backhand | backhand index pointing left | backhand index pointing left: medium skin tone | finger | hand | index | medium skin tone | point -๐Ÿ‘ˆ๐Ÿพ index pointing left: medium-dark skin tone backhand | backhand index pointing left | backhand index pointing left: medium-dark skin tone | finger | hand | index | medium-dark skin tone | point -๐Ÿ‘ˆ๐Ÿฟ index pointing left: dark skin tone backhand | backhand index pointing left | backhand index pointing left: dark skin tone | dark skin tone | finger | hand | index | point -๐Ÿ‘‰ index pointing right backhand | backhand index pointing right | finger | hand | index | point -๐Ÿ‘‰๐Ÿป index pointing right: light skin tone backhand | backhand index pointing right | backhand index pointing right: light skin tone | finger | hand | index | light skin tone | point -๐Ÿ‘‰๐Ÿผ index pointing right: medium-light skin tone backhand | backhand index pointing right | backhand index pointing right: medium-light skin tone | finger | hand | index | medium-light skin tone | point -๐Ÿ‘‰๐Ÿฝ index pointing right: medium skin tone backhand | backhand index pointing right | backhand index pointing right: medium skin tone | finger | hand | index | medium skin tone | point -๐Ÿ‘‰๐Ÿพ index pointing right: medium-dark skin tone backhand | backhand index pointing right | backhand index pointing right: medium-dark skin tone | finger | hand | index | medium-dark skin tone | point -๐Ÿ‘‰๐Ÿฟ index pointing right: dark skin tone backhand | backhand index pointing right | backhand index pointing right: dark skin tone | dark skin tone | finger | hand | index | point -๐Ÿ‘† index pointing up backhand | backhand index pointing up | finger | hand | point | up -๐Ÿ‘†๐Ÿป index pointing up: light skin tone backhand | backhand index pointing up | backhand index pointing up: light skin tone | finger | hand | light skin tone | point | up -๐Ÿ‘†๐Ÿผ index pointing up: medium-light skin tone backhand | backhand index pointing up | backhand index pointing up: medium-light skin tone | finger | hand | medium-light skin tone | point | up -๐Ÿ‘†๐Ÿฝ index pointing up: medium skin tone backhand | backhand index pointing up | backhand index pointing up: medium skin tone | finger | hand | medium skin tone | point | up -๐Ÿ‘†๐Ÿพ index pointing up: medium-dark skin tone backhand | backhand index pointing up | backhand index pointing up: medium-dark skin tone | finger | hand | medium-dark skin tone | point | up -๐Ÿ‘†๐Ÿฟ index pointing up: dark skin tone backhand | backhand index pointing up | backhand index pointing up: dark skin tone | dark skin tone | finger | hand | point | up -๐Ÿ–• finger finger | hand | middle finger -๐Ÿ–•๐Ÿป finger: light skin tone finger | hand | light skin tone | middle finger | middle finger: light skin tone -๐Ÿ–•๐Ÿผ finger: medium-light skin tone finger | hand | medium-light skin tone | middle finger | middle finger: medium-light skin tone -๐Ÿ–•๐Ÿฝ finger: medium skin tone finger | hand | medium skin tone | middle finger | middle finger: medium skin tone -๐Ÿ–•๐Ÿพ finger: medium-dark skin tone finger | hand | medium-dark skin tone | middle finger | middle finger: medium-dark skin tone -๐Ÿ–•๐Ÿฟ finger: dark skin tone dark skin tone | finger | hand | middle finger | middle finger: dark skin tone -๐Ÿ‘‡ index pointing down backhand | backhand index pointing down | down | finger | hand | point -๐Ÿ‘‡๐Ÿป index pointing down: light skin tone backhand | backhand index pointing down | backhand index pointing down: light skin tone | down | finger | hand | light skin tone | point -๐Ÿ‘‡๐Ÿผ index pointing down: medium-light skin tone backhand | backhand index pointing down | backhand index pointing down: medium-light skin tone | down | finger | hand | medium-light skin tone | point -๐Ÿ‘‡๐Ÿฝ index pointing down: medium skin tone backhand | backhand index pointing down | backhand index pointing down: medium skin tone | down | finger | hand | medium skin tone | point -๐Ÿ‘‡๐Ÿพ index pointing down: medium-dark skin tone backhand | backhand index pointing down | backhand index pointing down: medium-dark skin tone | down | finger | hand | medium-dark skin tone | point -๐Ÿ‘‡๐Ÿฟ index pointing down: dark skin tone backhand | backhand index pointing down | backhand index pointing down: dark skin tone | dark skin tone | down | finger | hand | point -โ˜๏ธ pointing up -โ˜ pointing up finger | hand | index | index pointing up | point | up -โ˜๐Ÿป pointing up: light skin tone finger | hand | index | index pointing up | index pointing up: light skin tone | light skin tone | point | up -โ˜๐Ÿผ pointing up: medium-light skin tone finger | hand | index | index pointing up | index pointing up: medium-light skin tone | medium-light skin tone | point | up -โ˜๐Ÿฝ pointing up: medium skin tone finger | hand | index | index pointing up | index pointing up: medium skin tone | medium skin tone | point | up -โ˜๐Ÿพ pointing up: medium-dark skin tone finger | hand | index | index pointing up | index pointing up: medium-dark skin tone | medium-dark skin tone | point | up -โ˜๐Ÿฟ pointing up: dark skin tone dark skin tone | finger | hand | index | index pointing up | index pointing up: dark skin tone | point | up -๐Ÿซต pointing at the viewer index pointing at the viewer | point | you -๐Ÿซต๐Ÿป pointing at the viewer: light skin tone index pointing at the viewer | index pointing at the viewer: light skin tone | light skin tone | point | you -๐Ÿซต๐Ÿผ pointing at the viewer: medium-light skin tone index pointing at the viewer | index pointing at the viewer: medium-light skin tone | medium-light skin tone | point | you -๐Ÿซต๐Ÿฝ pointing at the viewer: medium skin tone index pointing at the viewer | index pointing at the viewer: medium skin tone | medium skin tone | point | you -๐Ÿซต๐Ÿพ pointing at the viewer: medium-dark skin tone index pointing at the viewer | index pointing at the viewer: medium-dark skin tone | medium-dark skin tone | point | you -๐Ÿซต๐Ÿฟ pointing at the viewer: dark skin tone dark skin tone | index pointing at the viewer | index pointing at the viewer: dark skin tone | point | you -๐Ÿ‘ up +1 | hand | thumb | thumbs up | up -๐Ÿ‘๐Ÿป up: light skin tone +1 | hand | light skin tone | thumb | thumbs up | thumbs up: light skin tone | up -๐Ÿ‘๐Ÿผ up: medium-light skin tone +1 | hand | medium-light skin tone | thumb | thumbs up | thumbs up: medium-light skin tone | up -๐Ÿ‘๐Ÿฝ up: medium skin tone +1 | hand | medium skin tone | thumb | thumbs up | thumbs up: medium skin tone | up -๐Ÿ‘๐Ÿพ up: medium-dark skin tone +1 | hand | medium-dark skin tone | thumb | thumbs up | thumbs up: medium-dark skin tone | up -๐Ÿ‘๐Ÿฟ up: dark skin tone +1 | dark skin tone | hand | thumb | thumbs up | thumbs up: dark skin tone | up -๐Ÿ‘Ž down -1 | down | hand | thumb | thumbs down -๐Ÿ‘Ž๐Ÿป down: light skin tone -1 | down | hand | light skin tone | thumb | thumbs down | thumbs down: light skin tone -๐Ÿ‘Ž๐Ÿผ down: medium-light skin tone -1 | down | hand | medium-light skin tone | thumb | thumbs down | thumbs down: medium-light skin tone -๐Ÿ‘Ž๐Ÿฝ down: medium skin tone -1 | down | hand | medium skin tone | thumb | thumbs down | thumbs down: medium skin tone -๐Ÿ‘Ž๐Ÿพ down: medium-dark skin tone -1 | down | hand | medium-dark skin tone | thumb | thumbs down | thumbs down: medium-dark skin tone -๐Ÿ‘Ž๐Ÿฟ down: dark skin tone -1 | dark skin tone | down | hand | thumb | thumbs down | thumbs down: dark skin tone -โœŠ fist clenched | fist | hand | punch | raised fist -โœŠ๐Ÿป fist: light skin tone clenched | fist | hand | light skin tone | punch | raised fist | raised fist: light skin tone -โœŠ๐Ÿผ fist: medium-light skin tone clenched | fist | hand | medium-light skin tone | punch | raised fist | raised fist: medium-light skin tone -โœŠ๐Ÿฝ fist: medium skin tone clenched | fist | hand | medium skin tone | punch | raised fist | raised fist: medium skin tone -โœŠ๐Ÿพ fist: medium-dark skin tone clenched | fist | hand | medium-dark skin tone | punch | raised fist | raised fist: medium-dark skin tone -โœŠ๐Ÿฟ fist: dark skin tone clenched | dark skin tone | fist | hand | punch | raised fist | raised fist: dark skin tone -๐Ÿ‘Š fist clenched | fist | hand | oncoming fist | punch -๐Ÿ‘Š๐Ÿป fist: light skin tone clenched | fist | hand | light skin tone | oncoming fist | oncoming fist: light skin tone | punch -๐Ÿ‘Š๐Ÿผ fist: medium-light skin tone clenched | fist | hand | medium-light skin tone | oncoming fist | oncoming fist: medium-light skin tone | punch -๐Ÿ‘Š๐Ÿฝ fist: medium skin tone clenched | fist | hand | medium skin tone | oncoming fist | oncoming fist: medium skin tone | punch -๐Ÿ‘Š๐Ÿพ fist: medium-dark skin tone clenched | fist | hand | medium-dark skin tone | oncoming fist | oncoming fist: medium-dark skin tone | punch -๐Ÿ‘Š๐Ÿฟ fist: dark skin tone clenched | dark skin tone | fist | hand | oncoming fist | oncoming fist: dark skin tone | punch -๐Ÿค› fist fist | left-facing fist | leftwards | leftward -๐Ÿค›๐Ÿป fist: light skin tone fist | left-facing fist | left-facing fist: light skin tone | leftwards | light skin tone | leftward -๐Ÿค›๐Ÿผ fist: medium-light skin tone fist | left-facing fist | left-facing fist: medium-light skin tone | leftwards | medium-light skin tone | leftward -๐Ÿค›๐Ÿฝ fist: medium skin tone fist | left-facing fist | left-facing fist: medium skin tone | leftwards | medium skin tone | leftward -๐Ÿค›๐Ÿพ fist: medium-dark skin tone fist | left-facing fist | left-facing fist: medium-dark skin tone | leftwards | medium-dark skin tone | leftward -๐Ÿค›๐Ÿฟ fist: dark skin tone dark skin tone | fist | left-facing fist | left-facing fist: dark skin tone | leftwards | leftward -๐Ÿคœ fist fist | right-facing fist | rightwards | rightward -๐Ÿคœ๐Ÿป fist: light skin tone fist | light skin tone | right-facing fist | right-facing fist: light skin tone | rightwards | rightward -๐Ÿคœ๐Ÿผ fist: medium-light skin tone fist | medium-light skin tone | right-facing fist | right-facing fist: medium-light skin tone | rightwards | rightward -๐Ÿคœ๐Ÿฝ fist: medium skin tone fist | medium skin tone | right-facing fist | right-facing fist: medium skin tone | rightwards | rightward -๐Ÿคœ๐Ÿพ fist: medium-dark skin tone fist | medium-dark skin tone | right-facing fist | right-facing fist: medium-dark skin tone | rightwards | rightward -๐Ÿคœ๐Ÿฟ fist: dark skin tone dark skin tone | fist | right-facing fist | right-facing fist: dark skin tone | rightwards | rightward -๐Ÿ‘ hands clap | clapping hands | hand -๐Ÿ‘๐Ÿป hands: light skin tone clap | clapping hands | clapping hands: light skin tone | hand | light skin tone -๐Ÿ‘๐Ÿผ hands: medium-light skin tone clap | clapping hands | clapping hands: medium-light skin tone | hand | medium-light skin tone -๐Ÿ‘๐Ÿฝ hands: medium skin tone clap | clapping hands | clapping hands: medium skin tone | hand | medium skin tone -๐Ÿ‘๐Ÿพ hands: medium-dark skin tone clap | clapping hands | clapping hands: medium-dark skin tone | hand | medium-dark skin tone -๐Ÿ‘๐Ÿฟ hands: dark skin tone clap | clapping hands | clapping hands: dark skin tone | dark skin tone | hand -๐Ÿ™Œ hands celebration | gesture | hand | hooray | raised | raising hands | woo hoo | yay -๐Ÿ™Œ๐Ÿป hands: light skin tone celebration | gesture | hand | hooray | light skin tone | raised | raising hands | raising hands: light skin tone | woo hoo | yay -๐Ÿ™Œ๐Ÿผ hands: medium-light skin tone celebration | gesture | hand | hooray | medium-light skin tone | raised | raising hands | raising hands: medium-light skin tone | woo hoo | yay -๐Ÿ™Œ๐Ÿฝ hands: medium skin tone celebration | gesture | hand | hooray | medium skin tone | raised | raising hands | raising hands: medium skin tone | woo hoo | yay -๐Ÿ™Œ๐Ÿพ hands: medium-dark skin tone celebration | gesture | hand | hooray | medium-dark skin tone | raised | raising hands | raising hands: medium-dark skin tone | woo hoo | yay -๐Ÿ™Œ๐Ÿฟ hands: dark skin tone celebration | dark skin tone | gesture | hand | hooray | raised | raising hands | raising hands: dark skin tone | woo hoo | yay -๐Ÿซถ hands heart hands | love -๐Ÿซถ๐Ÿป hands: light skin tone heart hands | heart hands: light skin tone | light skin tone | love -๐Ÿซถ๐Ÿผ hands: medium-light skin tone heart hands | heart hands: medium-light skin tone | love | medium-light skin tone -๐Ÿซถ๐Ÿฝ hands: medium skin tone heart hands | heart hands: medium skin tone | love | medium skin tone -๐Ÿซถ๐Ÿพ hands: medium-dark skin tone heart hands | heart hands: medium-dark skin tone | love | medium-dark skin tone -๐Ÿซถ๐Ÿฟ hands: dark skin tone dark skin tone | heart hands | heart hands: dark skin tone | love -๐Ÿ‘ hands hand | open | open hands -๐Ÿ‘๐Ÿป hands: light skin tone hand | light skin tone | open | open hands | open hands: light skin tone -๐Ÿ‘๐Ÿผ hands: medium-light skin tone hand | medium-light skin tone | open | open hands | open hands: medium-light skin tone -๐Ÿ‘๐Ÿฝ hands: medium skin tone hand | medium skin tone | open | open hands | open hands: medium skin tone -๐Ÿ‘๐Ÿพ hands: medium-dark skin tone hand | medium-dark skin tone | open | open hands | open hands: medium-dark skin tone -๐Ÿ‘๐Ÿฟ hands: dark skin tone dark skin tone | hand | open | open hands | open hands: dark skin tone -๐Ÿคฒ up together palms up together | prayer -๐Ÿคฒ๐Ÿป up together: light skin tone light skin tone | palms up together | palms up together: light skin tone | prayer -๐Ÿคฒ๐Ÿผ up together: medium-light skin tone medium-light skin tone | palms up together | palms up together: medium-light skin tone | prayer -๐Ÿคฒ๐Ÿฝ up together: medium skin tone medium skin tone | palms up together | palms up together: medium skin tone | prayer -๐Ÿคฒ๐Ÿพ up together: medium-dark skin tone medium-dark skin tone | palms up together | palms up together: medium-dark skin tone | prayer -๐Ÿคฒ๐Ÿฟ up together: dark skin tone dark skin tone | palms up together | palms up together: dark skin tone | prayer -๐Ÿค agreement | hand | handshake | meeting | shake -๐Ÿค๐Ÿป light skin tone agreement | hand | handshake | handshake: light skin tone | light skin tone | meeting | shake -๐Ÿค๐Ÿผ medium-light skin tone agreement | hand | handshake | handshake: medium-light skin tone | medium-light skin tone | meeting | shake -๐Ÿค๐Ÿฝ medium skin tone agreement | hand | handshake | handshake: medium skin tone | medium skin tone | meeting | shake -๐Ÿค๐Ÿพ medium-dark skin tone agreement | hand | handshake | handshake: medium-dark skin tone | medium-dark skin tone | meeting | shake -๐Ÿค๐Ÿฟ dark skin tone agreement | dark skin tone | hand | handshake | handshake: dark skin tone | meeting | shake -๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿผ light skin tone, medium-light skin tone agreement | hand | handshake | handshake: light skin tone, medium-light skin tone | light skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฝ light skin tone, medium skin tone agreement | hand | handshake | handshake: light skin tone, medium skin tone | light skin tone | medium skin tone | meeting | shake -๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿพ light skin tone, medium-dark skin tone agreement | hand | handshake | handshake: light skin tone, medium-dark skin tone | light skin tone | medium-dark skin tone | meeting | shake -๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฟ light skin tone, dark skin tone agreement | dark skin tone | hand | handshake | handshake: light skin tone, dark skin tone | light skin tone | meeting | shake -๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿป medium-light skin tone, light skin tone agreement | hand | handshake | handshake: medium-light skin tone, light skin tone | light skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฝ medium-light skin tone, medium skin tone agreement | hand | handshake | handshake: medium-light skin tone, medium skin tone | medium skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿพ medium-light skin tone, medium-dark skin tone agreement | hand | handshake | handshake: medium-light skin tone, medium-dark skin tone | medium-dark skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฟ medium-light skin tone, dark skin tone agreement | dark skin tone | hand | handshake | handshake: medium-light skin tone, dark skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿป medium skin tone, light skin tone agreement | hand | handshake | handshake: medium skin tone, light skin tone | light skin tone | medium skin tone | meeting | shake -๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿผ medium skin tone, medium-light skin tone agreement | hand | handshake | handshake: medium skin tone, medium-light skin tone | medium skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿพ medium skin tone, medium-dark skin tone agreement | hand | handshake | handshake: medium skin tone, medium-dark skin tone | medium skin tone | medium-dark skin tone | meeting | shake -๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿฟ medium skin tone, dark skin tone agreement | dark skin tone | hand | handshake | handshake: medium skin tone, dark skin tone | medium skin tone | meeting | shake -๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿป medium-dark skin tone, light skin tone agreement | hand | handshake | handshake: medium-dark skin tone, light skin tone | light skin tone | medium-dark skin tone | meeting | shake -๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿผ medium-dark skin tone, medium-light skin tone agreement | hand | handshake | handshake: medium-dark skin tone, medium-light skin tone | medium-dark skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฝ medium-dark skin tone, medium skin tone agreement | hand | handshake | handshake: medium-dark skin tone, medium skin tone | medium skin tone | medium-dark skin tone | meeting | shake -๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฟ medium-dark skin tone, dark skin tone agreement | dark skin tone | hand | handshake | handshake: medium-dark skin tone, dark skin tone | medium-dark skin tone | meeting | shake -๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿป dark skin tone, light skin tone agreement | dark skin tone | hand | handshake | handshake: dark skin tone, light skin tone | light skin tone | meeting | shake -๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿผ dark skin tone, medium-light skin tone agreement | dark skin tone | hand | handshake | handshake: dark skin tone, medium-light skin tone | medium-light skin tone | meeting | shake -๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿฝ dark skin tone, medium skin tone agreement | dark skin tone | hand | handshake | handshake: dark skin tone, medium skin tone | medium skin tone | meeting | shake -๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿพ dark skin tone, medium-dark skin tone agreement | dark skin tone | hand | handshake | handshake: dark skin tone, medium-dark skin tone | medium-dark skin tone | meeting | shake -๐Ÿ™ hands ask | folded hands | hand | high 5 | high five | please | pray | thanks -๐Ÿ™๐Ÿป hands: light skin tone ask | folded hands | folded hands: light skin tone | hand | high 5 | high five | light skin tone | please | pray | thanks -๐Ÿ™๐Ÿผ hands: medium-light skin tone ask | folded hands | folded hands: medium-light skin tone | hand | high 5 | high five | medium-light skin tone | please | pray | thanks -๐Ÿ™๐Ÿฝ hands: medium skin tone ask | folded hands | folded hands: medium skin tone | hand | high 5 | high five | medium skin tone | please | pray | thanks -๐Ÿ™๐Ÿพ hands: medium-dark skin tone ask | folded hands | folded hands: medium-dark skin tone | hand | high 5 | high five | medium-dark skin tone | please | pray | thanks -๐Ÿ™๐Ÿฟ hands: dark skin tone ask | dark skin tone | folded hands | folded hands: dark skin tone | hand | high 5 | high five | please | pray | thanks -โœ๏ธ hand -โœ hand hand | write | writing hand -โœ๐Ÿป hand: light skin tone hand | light skin tone | write | writing hand | writing hand: light skin tone -โœ๐Ÿผ hand: medium-light skin tone hand | medium-light skin tone | write | writing hand | writing hand: medium-light skin tone -โœ๐Ÿฝ hand: medium skin tone hand | medium skin tone | write | writing hand | writing hand: medium skin tone -โœ๐Ÿพ hand: medium-dark skin tone hand | medium-dark skin tone | write | writing hand | writing hand: medium-dark skin tone -โœ๐Ÿฟ hand: dark skin tone dark skin tone | hand | write | writing hand | writing hand: dark skin tone -๐Ÿ’… polish care | cosmetics | manicure | nail | polish -๐Ÿ’…๐Ÿป polish: light skin tone care | cosmetics | light skin tone | manicure | nail | nail polish: light skin tone | polish -๐Ÿ’…๐Ÿผ polish: medium-light skin tone care | cosmetics | manicure | medium-light skin tone | nail | nail polish: medium-light skin tone | polish -๐Ÿ’…๐Ÿฝ polish: medium skin tone care | cosmetics | manicure | medium skin tone | nail | nail polish: medium skin tone | polish -๐Ÿ’…๐Ÿพ polish: medium-dark skin tone care | cosmetics | manicure | medium-dark skin tone | nail | nail polish: medium-dark skin tone | polish -๐Ÿ’…๐Ÿฟ polish: dark skin tone care | cosmetics | dark skin tone | manicure | nail | nail polish: dark skin tone | polish -๐Ÿคณ camera | phone | selfie -๐Ÿคณ๐Ÿป light skin tone camera | light skin tone | phone | selfie | selfie: light skin tone -๐Ÿคณ๐Ÿผ medium-light skin tone camera | medium-light skin tone | phone | selfie | selfie: medium-light skin tone -๐Ÿคณ๐Ÿฝ medium skin tone camera | medium skin tone | phone | selfie | selfie: medium skin tone -๐Ÿคณ๐Ÿพ medium-dark skin tone camera | medium-dark skin tone | phone | selfie | selfie: medium-dark skin tone -๐Ÿคณ๐Ÿฟ dark skin tone camera | dark skin tone | phone | selfie | selfie: dark skin tone -๐Ÿ’ช biceps biceps | comic | flex | flexed biceps | muscle | flexed bicep -๐Ÿ’ช๐Ÿป biceps: light skin tone biceps | comic | flex | flexed biceps | flexed biceps: light skin tone | light skin tone | muscle | flexed bicep | flexed bicep: light skin tone -๐Ÿ’ช๐Ÿผ biceps: medium-light skin tone biceps | comic | flex | flexed biceps | flexed biceps: medium-light skin tone | medium-light skin tone | muscle | flexed bicep | flexed bicep: medium-light skin tone -๐Ÿ’ช๐Ÿฝ biceps: medium skin tone biceps | comic | flex | flexed biceps | flexed biceps: medium skin tone | medium skin tone | muscle | flexed bicep | flexed bicep: medium skin tone -๐Ÿ’ช๐Ÿพ biceps: medium-dark skin tone biceps | comic | flex | flexed biceps | flexed biceps: medium-dark skin tone | medium-dark skin tone | muscle | flexed bicep | flexed bicep: medium-dark skin tone -๐Ÿ’ช๐Ÿฟ biceps: dark skin tone biceps | comic | dark skin tone | flex | flexed biceps | flexed biceps: dark skin tone | muscle | flexed bicep | flexed bicep: dark skin tone -๐Ÿฆพ arm accessibility | mechanical arm | prosthetic -๐Ÿฆฟ leg accessibility | mechanical leg | prosthetic -๐Ÿฆต kick | leg | limb -๐Ÿฆต๐Ÿป light skin tone kick | leg | leg: light skin tone | light skin tone | limb -๐Ÿฆต๐Ÿผ medium-light skin tone kick | leg | leg: medium-light skin tone | limb | medium-light skin tone -๐Ÿฆต๐Ÿฝ medium skin tone kick | leg | leg: medium skin tone | limb | medium skin tone -๐Ÿฆต๐Ÿพ medium-dark skin tone kick | leg | leg: medium-dark skin tone | limb | medium-dark skin tone -๐Ÿฆต๐Ÿฟ dark skin tone dark skin tone | kick | leg | leg: dark skin tone | limb -๐Ÿฆถ foot | kick | stomp -๐Ÿฆถ๐Ÿป light skin tone foot | foot: light skin tone | kick | light skin tone | stomp -๐Ÿฆถ๐Ÿผ medium-light skin tone foot | foot: medium-light skin tone | kick | medium-light skin tone | stomp -๐Ÿฆถ๐Ÿฝ medium skin tone foot | foot: medium skin tone | kick | medium skin tone | stomp -๐Ÿฆถ๐Ÿพ medium-dark skin tone foot | foot: medium-dark skin tone | kick | medium-dark skin tone | stomp -๐Ÿฆถ๐Ÿฟ dark skin tone dark skin tone | foot | foot: dark skin tone | kick | stomp -๐Ÿ‘‚ body | ear -๐Ÿ‘‚๐Ÿป light skin tone body | ear | ear: light skin tone | light skin tone -๐Ÿ‘‚๐Ÿผ medium-light skin tone body | ear | ear: medium-light skin tone | medium-light skin tone -๐Ÿ‘‚๐Ÿฝ medium skin tone body | ear | ear: medium skin tone | medium skin tone -๐Ÿ‘‚๐Ÿพ medium-dark skin tone body | ear | ear: medium-dark skin tone | medium-dark skin tone -๐Ÿ‘‚๐Ÿฟ dark skin tone body | dark skin tone | ear | ear: dark skin tone -๐Ÿฆป with hearing aid accessibility | ear with hearing aid | hard of hearing | hearing impaired -๐Ÿฆป๐Ÿป with hearing aid: light skin tone accessibility | ear with hearing aid | ear with hearing aid: light skin tone | hard of hearing | light skin tone | hearing impaired -๐Ÿฆป๐Ÿผ with hearing aid: medium-light skin tone accessibility | ear with hearing aid | ear with hearing aid: medium-light skin tone | hard of hearing | medium-light skin tone | hearing impaired -๐Ÿฆป๐Ÿฝ with hearing aid: medium skin tone accessibility | ear with hearing aid | ear with hearing aid: medium skin tone | hard of hearing | medium skin tone | hearing impaired -๐Ÿฆป๐Ÿพ with hearing aid: medium-dark skin tone accessibility | ear with hearing aid | ear with hearing aid: medium-dark skin tone | hard of hearing | medium-dark skin tone | hearing impaired -๐Ÿฆป๐Ÿฟ with hearing aid: dark skin tone accessibility | dark skin tone | ear with hearing aid | ear with hearing aid: dark skin tone | hard of hearing | hearing impaired -๐Ÿ‘ƒ body | nose -๐Ÿ‘ƒ๐Ÿป light skin tone body | light skin tone | nose | nose: light skin tone -๐Ÿ‘ƒ๐Ÿผ medium-light skin tone body | medium-light skin tone | nose | nose: medium-light skin tone -๐Ÿ‘ƒ๐Ÿฝ medium skin tone body | medium skin tone | nose | nose: medium skin tone -๐Ÿ‘ƒ๐Ÿพ medium-dark skin tone body | medium-dark skin tone | nose | nose: medium-dark skin tone -๐Ÿ‘ƒ๐Ÿฟ dark skin tone body | dark skin tone | nose | nose: dark skin tone -๐Ÿง  brain | intelligent -๐Ÿซ€ heart anatomical | cardiology | heart | organ | pulse | anatomical heart -๐Ÿซ breath | exhalation | inhalation | lungs | organ | respiration -๐Ÿฆท dentist | tooth -๐Ÿฆด bone | skeleton -๐Ÿ‘€ eye | eyes | face -๐Ÿ‘๏ธ brown eyes -๐Ÿ‘ body | eye -๐Ÿ‘… body | tongue -๐Ÿ‘„ lips | mouth -๐Ÿซฆ lip anxious | biting lip | fear | flirting | nervous | uncomfortable | worried -๐Ÿ‘ถ baby | young -๐Ÿ‘ถ๐Ÿป light skin tone baby | baby: light skin tone | light skin tone | young -๐Ÿ‘ถ๐Ÿผ medium-light skin tone baby | baby: medium-light skin tone | medium-light skin tone | young -๐Ÿ‘ถ๐Ÿฝ medium skin tone baby | baby: medium skin tone | medium skin tone | young -๐Ÿ‘ถ๐Ÿพ medium-dark skin tone baby | baby: medium-dark skin tone | medium-dark skin tone | young -๐Ÿ‘ถ๐Ÿฟ dark skin tone baby | baby: dark skin tone | dark skin tone | young -๐Ÿง’ child | gender-neutral | unspecified gender | young -๐Ÿง’๐Ÿป light skin tone child | child: light skin tone | gender-neutral | light skin tone | unspecified gender | young -๐Ÿง’๐Ÿผ medium-light skin tone child | child: medium-light skin tone | gender-neutral | medium-light skin tone | unspecified gender | young -๐Ÿง’๐Ÿฝ medium skin tone child | child: medium skin tone | gender-neutral | medium skin tone | unspecified gender | young -๐Ÿง’๐Ÿพ medium-dark skin tone child | child: medium-dark skin tone | gender-neutral | medium-dark skin tone | unspecified gender | young -๐Ÿง’๐Ÿฟ dark skin tone child | child: dark skin tone | dark skin tone | gender-neutral | unspecified gender | young -๐Ÿ‘ฆ boy | young | young person -๐Ÿ‘ฆ๐Ÿป light skin tone boy | boy: light skin tone | light skin tone | young | young person -๐Ÿ‘ฆ๐Ÿผ medium-light skin tone boy | boy: medium-light skin tone | medium-light skin tone | young | young person -๐Ÿ‘ฆ๐Ÿฝ medium skin tone boy | boy: medium skin tone | medium skin tone | young | young person -๐Ÿ‘ฆ๐Ÿพ medium-dark skin tone boy | boy: medium-dark skin tone | medium-dark skin tone | young | young person -๐Ÿ‘ฆ๐Ÿฟ dark skin tone boy | boy: dark skin tone | dark skin tone | young | young person -๐Ÿ‘ง girl | Virgo | young | zodiac | young person -๐Ÿ‘ง๐Ÿป light skin tone girl | girl: light skin tone | light skin tone | Virgo | young | zodiac | young person -๐Ÿ‘ง๐Ÿผ medium-light skin tone girl | girl: medium-light skin tone | medium-light skin tone | Virgo | young | zodiac | young person -๐Ÿ‘ง๐Ÿฝ medium skin tone girl | girl: medium skin tone | medium skin tone | Virgo | young | zodiac | young person -๐Ÿ‘ง๐Ÿพ medium-dark skin tone girl | girl: medium-dark skin tone | medium-dark skin tone | Virgo | young | zodiac | young person -๐Ÿ‘ง๐Ÿฟ dark skin tone dark skin tone | girl | girl: dark skin tone | Virgo | young | zodiac | young person -๐Ÿง‘ adult | gender-neutral | person | unspecified gender -๐Ÿง‘๐Ÿป light skin tone adult | gender-neutral | light skin tone | person | person: light skin tone | unspecified gender -๐Ÿง‘๐Ÿผ medium-light skin tone adult | gender-neutral | medium-light skin tone | person | person: medium-light skin tone | unspecified gender -๐Ÿง‘๐Ÿฝ medium skin tone adult | gender-neutral | medium skin tone | person | person: medium skin tone | unspecified gender -๐Ÿง‘๐Ÿพ medium-dark skin tone adult | gender-neutral | medium-dark skin tone | person | person: medium-dark skin tone | unspecified gender -๐Ÿง‘๐Ÿฟ dark skin tone adult | dark skin tone | gender-neutral | person | person: dark skin tone | unspecified gender -๐Ÿ‘ฑ blond hair blond | blond-haired person | hair | person: blond hair -๐Ÿ‘ฑ๐Ÿป light skin tone, blond hair blond | blond-haired person | hair | light skin tone | person: blond hair | person: light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿผ medium-light skin tone, blond hair blond | blond-haired person | hair | medium-light skin tone | person: blond hair | person: medium-light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฝ medium skin tone, blond hair blond | blond-haired person | hair | medium skin tone | person: blond hair | person: medium skin tone, blond hair -๐Ÿ‘ฑ๐Ÿพ medium-dark skin tone, blond hair blond | blond-haired person | hair | medium-dark skin tone | person: blond hair | person: medium-dark skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฟ dark skin tone, blond hair blond | blond-haired person | dark skin tone | hair | person: blond hair | person: dark skin tone, blond hair -๐Ÿ‘จ adult | man -๐Ÿ‘จ๐Ÿป light skin tone adult | light skin tone | man | man: light skin tone -๐Ÿ‘จ๐Ÿผ medium-light skin tone adult | man | man: medium-light skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿฝ medium skin tone adult | man | man: medium skin tone | medium skin tone -๐Ÿ‘จ๐Ÿพ medium-dark skin tone adult | man | man: medium-dark skin tone | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟ dark skin tone adult | dark skin tone | man | man: dark skin tone -๐Ÿง” beard beard | person | person: beard -๐Ÿง”๐Ÿป light skin tone, beard beard | light skin tone | person | person: beard | person: light skin tone, beard -๐Ÿง”๐Ÿผ medium-light skin tone, beard beard | medium-light skin tone | person | person: beard | person: medium-light skin tone, beard -๐Ÿง”๐Ÿฝ medium skin tone, beard beard | medium skin tone | person | person: beard | person: medium skin tone, beard -๐Ÿง”๐Ÿพ medium-dark skin tone, beard beard | medium-dark skin tone | person | person: beard | person: medium-dark skin tone, beard -๐Ÿง”๐Ÿฟ dark skin tone, beard beard | dark skin tone | person | person: beard | person: dark skin tone, beard -๐Ÿง”โ€โ™‚๏ธ beard -๐Ÿง”โ€โ™‚ beard beard | man | man: beard -๐Ÿง”๐Ÿปโ€โ™‚๏ธ light skin tone, beard -๐Ÿง”๐Ÿปโ€โ™‚ light skin tone, beard beard | light skin tone | man | man: beard | man: light skin tone, beard -๐Ÿง”๐Ÿผโ€โ™‚๏ธ medium-light skin tone, beard -๐Ÿง”๐Ÿผโ€โ™‚ medium-light skin tone, beard beard | man | man: beard | man: medium-light skin tone, beard | medium-light skin tone -๐Ÿง”๐Ÿฝโ€โ™‚๏ธ medium skin tone, beard -๐Ÿง”๐Ÿฝโ€โ™‚ medium skin tone, beard beard | man | man: beard | man: medium skin tone, beard | medium skin tone -๐Ÿง”๐Ÿพโ€โ™‚๏ธ medium-dark skin tone, beard -๐Ÿง”๐Ÿพโ€โ™‚ medium-dark skin tone, beard beard | man | man: beard | man: medium-dark skin tone, beard | medium-dark skin tone -๐Ÿง”๐Ÿฟโ€โ™‚๏ธ dark skin tone, beard -๐Ÿง”๐Ÿฟโ€โ™‚ dark skin tone, beard beard | dark skin tone | man | man: beard | man: dark skin tone, beard -๐Ÿง”โ€โ™€๏ธ beard -๐Ÿง”โ€โ™€ beard beard | woman | woman: beard -๐Ÿง”๐Ÿปโ€โ™€๏ธ light skin tone, beard -๐Ÿง”๐Ÿปโ€โ™€ light skin tone, beard beard | light skin tone | woman | woman: beard | woman: light skin tone, beard -๐Ÿง”๐Ÿผโ€โ™€๏ธ medium-light skin tone, beard -๐Ÿง”๐Ÿผโ€โ™€ medium-light skin tone, beard beard | medium-light skin tone | woman | woman: beard | woman: medium-light skin tone, beard -๐Ÿง”๐Ÿฝโ€โ™€๏ธ medium skin tone, beard -๐Ÿง”๐Ÿฝโ€โ™€ medium skin tone, beard beard | medium skin tone | woman | woman: beard | woman: medium skin tone, beard -๐Ÿง”๐Ÿพโ€โ™€๏ธ medium-dark skin tone, beard -๐Ÿง”๐Ÿพโ€โ™€ medium-dark skin tone, beard beard | medium-dark skin tone | woman | woman: beard | woman: medium-dark skin tone, beard -๐Ÿง”๐Ÿฟโ€โ™€๏ธ dark skin tone, beard -๐Ÿง”๐Ÿฟโ€โ™€ dark skin tone, beard beard | dark skin tone | woman | woman: beard | woman: dark skin tone, beard -๐Ÿ‘จโ€๐Ÿฆฐ red hair adult | man | man: red hair | red hair -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ light skin tone, red hair adult | light skin tone | man | man: light skin tone, red hair | red hair -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ medium-light skin tone, red hair adult | man | man: medium-light skin tone, red hair | medium-light skin tone | red hair -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ medium skin tone, red hair adult | man | man: medium skin tone, red hair | medium skin tone | red hair -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ medium-dark skin tone, red hair adult | man | man: medium-dark skin tone, red hair | medium-dark skin tone | red hair -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ dark skin tone, red hair adult | dark skin tone | man | man: dark skin tone, red hair | red hair -๐Ÿ‘จโ€๐Ÿฆฑ curly hair adult | curly hair | man | man: curly hair -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ light skin tone, curly hair adult | curly hair | light skin tone | man | man: light skin tone, curly hair -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ medium-light skin tone, curly hair adult | curly hair | man | man: medium-light skin tone, curly hair | medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ medium skin tone, curly hair adult | curly hair | man | man: medium skin tone, curly hair | medium skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ medium-dark skin tone, curly hair adult | curly hair | man | man: medium-dark skin tone, curly hair | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ dark skin tone, curly hair adult | curly hair | dark skin tone | man | man: dark skin tone, curly hair -๐Ÿ‘จโ€๐Ÿฆณ white hair adult | man | man: white hair | white hair -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ light skin tone, white hair adult | light skin tone | man | man: light skin tone, white hair | white hair -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ medium-light skin tone, white hair adult | man | man: medium-light skin tone, white hair | medium-light skin tone | white hair -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ medium skin tone, white hair adult | man | man: medium skin tone, white hair | medium skin tone | white hair -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ medium-dark skin tone, white hair adult | man | man: medium-dark skin tone, white hair | medium-dark skin tone | white hair -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ dark skin tone, white hair adult | dark skin tone | man | man: dark skin tone, white hair | white hair -๐Ÿ‘จโ€๐Ÿฆฒ bald adult | bald | man | man: bald -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ light skin tone, bald adult | bald | light skin tone | man | man: light skin tone, bald -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ medium-light skin tone, bald adult | bald | man | man: medium-light skin tone, bald | medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ medium skin tone, bald adult | bald | man | man: medium skin tone, bald | medium skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ medium-dark skin tone, bald adult | bald | man | man: medium-dark skin tone, bald | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ dark skin tone, bald adult | bald | dark skin tone | man | man: dark skin tone, bald -๐Ÿ‘ฉ adult | woman -๐Ÿ‘ฉ๐Ÿป light skin tone adult | light skin tone | woman | woman: light skin tone -๐Ÿ‘ฉ๐Ÿผ medium-light skin tone adult | medium-light skin tone | woman | woman: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝ medium skin tone adult | medium skin tone | woman | woman: medium skin tone -๐Ÿ‘ฉ๐Ÿพ medium-dark skin tone adult | medium-dark skin tone | woman | woman: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟ dark skin tone adult | dark skin tone | woman | woman: dark skin tone -๐Ÿ‘ฉโ€๐Ÿฆฐ red hair adult | red hair | woman | woman: red hair -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ light skin tone, red hair adult | light skin tone | red hair | woman | woman: light skin tone, red hair -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ medium-light skin tone, red hair adult | medium-light skin tone | red hair | woman | woman: medium-light skin tone, red hair -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ medium skin tone, red hair adult | medium skin tone | red hair | woman | woman: medium skin tone, red hair -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ medium-dark skin tone, red hair adult | medium-dark skin tone | red hair | woman | woman: medium-dark skin tone, red hair -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ dark skin tone, red hair adult | dark skin tone | red hair | woman | woman: dark skin tone, red hair -๐Ÿง‘โ€๐Ÿฆฐ red hair adult | gender-neutral | person | person: red hair | red hair | unspecified gender -๐Ÿง‘๐Ÿปโ€๐Ÿฆฐ light skin tone, red hair adult | gender-neutral | light skin tone | person | person: light skin tone, red hair | red hair | unspecified gender -๐Ÿง‘๐Ÿผโ€๐Ÿฆฐ medium-light skin tone, red hair adult | gender-neutral | medium-light skin tone | person | person: medium-light skin tone, red hair | red hair | unspecified gender -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฐ medium skin tone, red hair adult | gender-neutral | medium skin tone | person | person: medium skin tone, red hair | red hair | unspecified gender -๐Ÿง‘๐Ÿพโ€๐Ÿฆฐ medium-dark skin tone, red hair adult | gender-neutral | medium-dark skin tone | person | person: medium-dark skin tone, red hair | red hair | unspecified gender -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฐ dark skin tone, red hair adult | dark skin tone | gender-neutral | person | person: dark skin tone, red hair | red hair | unspecified gender -๐Ÿ‘ฉโ€๐Ÿฆฑ curly hair adult | curly hair | woman | woman: curly hair -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ light skin tone, curly hair adult | curly hair | light skin tone | woman | woman: light skin tone, curly hair -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ medium-light skin tone, curly hair adult | curly hair | medium-light skin tone | woman | woman: medium-light skin tone, curly hair -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ medium skin tone, curly hair adult | curly hair | medium skin tone | woman | woman: medium skin tone, curly hair -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ medium-dark skin tone, curly hair adult | curly hair | medium-dark skin tone | woman | woman: medium-dark skin tone, curly hair -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ dark skin tone, curly hair adult | curly hair | dark skin tone | woman | woman: dark skin tone, curly hair -๐Ÿง‘โ€๐Ÿฆฑ curly hair adult | curly hair | gender-neutral | person | person: curly hair | unspecified gender -๐Ÿง‘๐Ÿปโ€๐Ÿฆฑ light skin tone, curly hair adult | curly hair | gender-neutral | light skin tone | person | person: light skin tone, curly hair | unspecified gender -๐Ÿง‘๐Ÿผโ€๐Ÿฆฑ medium-light skin tone, curly hair adult | curly hair | gender-neutral | medium-light skin tone | person | person: medium-light skin tone, curly hair | unspecified gender -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฑ medium skin tone, curly hair adult | curly hair | gender-neutral | medium skin tone | person | person: medium skin tone, curly hair | unspecified gender -๐Ÿง‘๐Ÿพโ€๐Ÿฆฑ medium-dark skin tone, curly hair adult | curly hair | gender-neutral | medium-dark skin tone | person | person: medium-dark skin tone, curly hair | unspecified gender -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฑ dark skin tone, curly hair adult | curly hair | dark skin tone | gender-neutral | person | person: dark skin tone, curly hair | unspecified gender -๐Ÿ‘ฉโ€๐Ÿฆณ white hair adult | white hair | woman | woman: white hair -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ light skin tone, white hair adult | light skin tone | white hair | woman | woman: light skin tone, white hair -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ medium-light skin tone, white hair adult | medium-light skin tone | white hair | woman | woman: medium-light skin tone, white hair -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ medium skin tone, white hair adult | medium skin tone | white hair | woman | woman: medium skin tone, white hair -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ medium-dark skin tone, white hair adult | medium-dark skin tone | white hair | woman | woman: medium-dark skin tone, white hair -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ dark skin tone, white hair adult | dark skin tone | white hair | woman | woman: dark skin tone, white hair -๐Ÿง‘โ€๐Ÿฆณ white hair adult | gender-neutral | person | person: white hair | unspecified gender | white hair -๐Ÿง‘๐Ÿปโ€๐Ÿฆณ light skin tone, white hair adult | gender-neutral | light skin tone | person | person: light skin tone, white hair | unspecified gender | white hair -๐Ÿง‘๐Ÿผโ€๐Ÿฆณ medium-light skin tone, white hair adult | gender-neutral | medium-light skin tone | person | person: medium-light skin tone, white hair | unspecified gender | white hair -๐Ÿง‘๐Ÿฝโ€๐Ÿฆณ medium skin tone, white hair adult | gender-neutral | medium skin tone | person | person: medium skin tone, white hair | unspecified gender | white hair -๐Ÿง‘๐Ÿพโ€๐Ÿฆณ medium-dark skin tone, white hair adult | gender-neutral | medium-dark skin tone | person | person: medium-dark skin tone, white hair | unspecified gender | white hair -๐Ÿง‘๐Ÿฟโ€๐Ÿฆณ dark skin tone, white hair adult | dark skin tone | gender-neutral | person | person: dark skin tone, white hair | unspecified gender | white hair -๐Ÿ‘ฉโ€๐Ÿฆฒ bald adult | bald | woman | woman: bald -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ light skin tone, bald adult | bald | light skin tone | woman | woman: light skin tone, bald -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ medium-light skin tone, bald adult | bald | medium-light skin tone | woman | woman: medium-light skin tone, bald -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ medium skin tone, bald adult | bald | medium skin tone | woman | woman: medium skin tone, bald -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ medium-dark skin tone, bald adult | bald | medium-dark skin tone | woman | woman: medium-dark skin tone, bald -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ dark skin tone, bald adult | bald | dark skin tone | woman | woman: dark skin tone, bald -๐Ÿง‘โ€๐Ÿฆฒ bald adult | bald | gender-neutral | person | person: bald | unspecified gender -๐Ÿง‘๐Ÿปโ€๐Ÿฆฒ light skin tone, bald adult | bald | gender-neutral | light skin tone | person | person: light skin tone, bald | unspecified gender -๐Ÿง‘๐Ÿผโ€๐Ÿฆฒ medium-light skin tone, bald adult | bald | gender-neutral | medium-light skin tone | person | person: medium-light skin tone, bald | unspecified gender -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฒ medium skin tone, bald adult | bald | gender-neutral | medium skin tone | person | person: medium skin tone, bald | unspecified gender -๐Ÿง‘๐Ÿพโ€๐Ÿฆฒ medium-dark skin tone, bald adult | bald | gender-neutral | medium-dark skin tone | person | person: medium-dark skin tone, bald | unspecified gender -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฒ dark skin tone, bald adult | bald | dark skin tone | gender-neutral | person | person: dark skin tone, bald | unspecified gender -๐Ÿ‘ฑโ€โ™€๏ธ blond hair -๐Ÿ‘ฑโ€โ™€ blond hair blond-haired woman | blonde | hair | woman | woman: blond hair -๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿปโ€โ™€ light skin tone, blond hair blond hair | blond-haired woman | blonde | hair | light skin tone | woman | woman: blond hair | woman: light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ medium-light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿผโ€โ™€ medium-light skin tone, blond hair blond hair | blond-haired woman | blonde | hair | medium-light skin tone | woman | woman: blond hair | woman: medium-light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ medium skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฝโ€โ™€ medium skin tone, blond hair blond hair | blond-haired woman | blonde | hair | medium skin tone | woman | woman: blond hair | woman: medium skin tone, blond hair -๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ medium-dark skin tone, blond hair -๐Ÿ‘ฑ๐Ÿพโ€โ™€ medium-dark skin tone, blond hair blond hair | blond-haired woman | blonde | hair | medium-dark skin tone | woman | woman: blond hair | woman: medium-dark skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ dark skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฟโ€โ™€ dark skin tone, blond hair blond hair | blond-haired woman | blonde | dark skin tone | hair | woman | woman: blond hair | woman: dark skin tone, blond hair -๐Ÿ‘ฑโ€โ™‚๏ธ blond hair -๐Ÿ‘ฑโ€โ™‚ blond hair blond | blond-haired man | hair | man | man: blond hair -๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿปโ€โ™‚ light skin tone, blond hair blond | blond-haired man | hair | light skin tone | man | man: blond hair | man: light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ medium-light skin tone, blond hair -๐Ÿ‘ฑ๐Ÿผโ€โ™‚ medium-light skin tone, blond hair blond | blond-haired man | hair | man | man: blond hair | man: medium-light skin tone, blond hair | medium-light skin tone -๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ medium skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฝโ€โ™‚ medium skin tone, blond hair blond | blond-haired man | hair | man | man: blond hair | man: medium skin tone, blond hair | medium skin tone -๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ medium-dark skin tone, blond hair -๐Ÿ‘ฑ๐Ÿพโ€โ™‚ medium-dark skin tone, blond hair blond | blond-haired man | hair | man | man: blond hair | man: medium-dark skin tone, blond hair | medium-dark skin tone -๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ dark skin tone, blond hair -๐Ÿ‘ฑ๐Ÿฟโ€โ™‚ dark skin tone, blond hair blond | blond-haired man | dark skin tone | hair | man | man: blond hair | man: dark skin tone, blond hair -๐Ÿง“ person adult | gender-neutral | old | older person | unspecified gender -๐Ÿง“๐Ÿป person: light skin tone adult | gender-neutral | light skin tone | old | older person | older person: light skin tone | unspecified gender -๐Ÿง“๐Ÿผ person: medium-light skin tone adult | gender-neutral | medium-light skin tone | old | older person | older person: medium-light skin tone | unspecified gender -๐Ÿง“๐Ÿฝ person: medium skin tone adult | gender-neutral | medium skin tone | old | older person | older person: medium skin tone | unspecified gender -๐Ÿง“๐Ÿพ person: medium-dark skin tone adult | gender-neutral | medium-dark skin tone | old | older person | older person: medium-dark skin tone | unspecified gender -๐Ÿง“๐Ÿฟ person: dark skin tone adult | dark skin tone | gender-neutral | old | older person | older person: dark skin tone | unspecified gender -๐Ÿ‘ด man adult | man | old -๐Ÿ‘ด๐Ÿป man: light skin tone adult | light skin tone | man | old | old man: light skin tone -๐Ÿ‘ด๐Ÿผ man: medium-light skin tone adult | man | medium-light skin tone | old | old man: medium-light skin tone -๐Ÿ‘ด๐Ÿฝ man: medium skin tone adult | man | medium skin tone | old | old man: medium skin tone -๐Ÿ‘ด๐Ÿพ man: medium-dark skin tone adult | man | medium-dark skin tone | old | old man: medium-dark skin tone -๐Ÿ‘ด๐Ÿฟ man: dark skin tone adult | dark skin tone | man | old | old man: dark skin tone -๐Ÿ‘ต woman adult | old | woman -๐Ÿ‘ต๐Ÿป woman: light skin tone adult | light skin tone | old | old woman: light skin tone | woman -๐Ÿ‘ต๐Ÿผ woman: medium-light skin tone adult | medium-light skin tone | old | old woman: medium-light skin tone | woman -๐Ÿ‘ต๐Ÿฝ woman: medium skin tone adult | medium skin tone | old | old woman: medium skin tone | woman -๐Ÿ‘ต๐Ÿพ woman: medium-dark skin tone adult | medium-dark skin tone | old | old woman: medium-dark skin tone | woman -๐Ÿ‘ต๐Ÿฟ woman: dark skin tone adult | dark skin tone | old | old woman: dark skin tone | woman -๐Ÿ™ frowning frown | gesture | person frowning -๐Ÿ™๐Ÿป frowning: light skin tone frown | gesture | light skin tone | person frowning | person frowning: light skin tone -๐Ÿ™๐Ÿผ frowning: medium-light skin tone frown | gesture | medium-light skin tone | person frowning | person frowning: medium-light skin tone -๐Ÿ™๐Ÿฝ frowning: medium skin tone frown | gesture | medium skin tone | person frowning | person frowning: medium skin tone -๐Ÿ™๐Ÿพ frowning: medium-dark skin tone frown | gesture | medium-dark skin tone | person frowning | person frowning: medium-dark skin tone -๐Ÿ™๐Ÿฟ frowning: dark skin tone dark skin tone | frown | gesture | person frowning | person frowning: dark skin tone -๐Ÿ™โ€โ™‚๏ธ frowning -๐Ÿ™โ€โ™‚ frowning frowning | gesture | man -๐Ÿ™๐Ÿปโ€โ™‚๏ธ frowning: light skin tone -๐Ÿ™๐Ÿปโ€โ™‚ frowning: light skin tone frowning | gesture | light skin tone | man | man frowning: light skin tone -๐Ÿ™๐Ÿผโ€โ™‚๏ธ frowning: medium-light skin tone -๐Ÿ™๐Ÿผโ€โ™‚ frowning: medium-light skin tone frowning | gesture | man | man frowning: medium-light skin tone | medium-light skin tone -๐Ÿ™๐Ÿฝโ€โ™‚๏ธ frowning: medium skin tone -๐Ÿ™๐Ÿฝโ€โ™‚ frowning: medium skin tone frowning | gesture | man | man frowning: medium skin tone | medium skin tone -๐Ÿ™๐Ÿพโ€โ™‚๏ธ frowning: medium-dark skin tone -๐Ÿ™๐Ÿพโ€โ™‚ frowning: medium-dark skin tone frowning | gesture | man | man frowning: medium-dark skin tone | medium-dark skin tone -๐Ÿ™๐Ÿฟโ€โ™‚๏ธ frowning: dark skin tone -๐Ÿ™๐Ÿฟโ€โ™‚ frowning: dark skin tone dark skin tone | frowning | gesture | man | man frowning: dark skin tone -๐Ÿ™โ€โ™€๏ธ frowning -๐Ÿ™โ€โ™€ frowning frowning | gesture | woman -๐Ÿ™๐Ÿปโ€โ™€๏ธ frowning: light skin tone -๐Ÿ™๐Ÿปโ€โ™€ frowning: light skin tone frowning | gesture | light skin tone | woman | woman frowning: light skin tone -๐Ÿ™๐Ÿผโ€โ™€๏ธ frowning: medium-light skin tone -๐Ÿ™๐Ÿผโ€โ™€ frowning: medium-light skin tone frowning | gesture | medium-light skin tone | woman | woman frowning: medium-light skin tone -๐Ÿ™๐Ÿฝโ€โ™€๏ธ frowning: medium skin tone -๐Ÿ™๐Ÿฝโ€โ™€ frowning: medium skin tone frowning | gesture | medium skin tone | woman | woman frowning: medium skin tone -๐Ÿ™๐Ÿพโ€โ™€๏ธ frowning: medium-dark skin tone -๐Ÿ™๐Ÿพโ€โ™€ frowning: medium-dark skin tone frowning | gesture | medium-dark skin tone | woman | woman frowning: medium-dark skin tone -๐Ÿ™๐Ÿฟโ€โ™€๏ธ frowning: dark skin tone -๐Ÿ™๐Ÿฟโ€โ™€ frowning: dark skin tone dark skin tone | frowning | gesture | woman | woman frowning: dark skin tone -๐Ÿ™Ž pouting gesture | person pouting | pouting | facial expression -๐Ÿ™Ž๐Ÿป pouting: light skin tone gesture | light skin tone | person pouting | person pouting: light skin tone | pouting | facial expression -๐Ÿ™Ž๐Ÿผ pouting: medium-light skin tone gesture | medium-light skin tone | person pouting | person pouting: medium-light skin tone | pouting | facial expression -๐Ÿ™Ž๐Ÿฝ pouting: medium skin tone gesture | medium skin tone | person pouting | person pouting: medium skin tone | pouting | facial expression -๐Ÿ™Ž๐Ÿพ pouting: medium-dark skin tone gesture | medium-dark skin tone | person pouting | person pouting: medium-dark skin tone | pouting | facial expression -๐Ÿ™Ž๐Ÿฟ pouting: dark skin tone dark skin tone | gesture | person pouting | person pouting: dark skin tone | pouting | facial expression -๐Ÿ™Žโ€โ™‚๏ธ pouting -๐Ÿ™Žโ€โ™‚ pouting gesture | man | pouting -๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ pouting: light skin tone -๐Ÿ™Ž๐Ÿปโ€โ™‚ pouting: light skin tone gesture | light skin tone | man | man pouting: light skin tone | pouting -๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ pouting: medium-light skin tone -๐Ÿ™Ž๐Ÿผโ€โ™‚ pouting: medium-light skin tone gesture | man | man pouting: medium-light skin tone | medium-light skin tone | pouting -๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ pouting: medium skin tone -๐Ÿ™Ž๐Ÿฝโ€โ™‚ pouting: medium skin tone gesture | man | man pouting: medium skin tone | medium skin tone | pouting -๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ pouting: medium-dark skin tone -๐Ÿ™Ž๐Ÿพโ€โ™‚ pouting: medium-dark skin tone gesture | man | man pouting: medium-dark skin tone | medium-dark skin tone | pouting -๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ pouting: dark skin tone -๐Ÿ™Ž๐Ÿฟโ€โ™‚ pouting: dark skin tone dark skin tone | gesture | man | man pouting: dark skin tone | pouting -๐Ÿ™Žโ€โ™€๏ธ pouting -๐Ÿ™Žโ€โ™€ pouting gesture | pouting | woman -๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ pouting: light skin tone -๐Ÿ™Ž๐Ÿปโ€โ™€ pouting: light skin tone gesture | light skin tone | pouting | woman | woman pouting: light skin tone -๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ pouting: medium-light skin tone -๐Ÿ™Ž๐Ÿผโ€โ™€ pouting: medium-light skin tone gesture | medium-light skin tone | pouting | woman | woman pouting: medium-light skin tone -๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ pouting: medium skin tone -๐Ÿ™Ž๐Ÿฝโ€โ™€ pouting: medium skin tone gesture | medium skin tone | pouting | woman | woman pouting: medium skin tone -๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ pouting: medium-dark skin tone -๐Ÿ™Ž๐Ÿพโ€โ™€ pouting: medium-dark skin tone gesture | medium-dark skin tone | pouting | woman | woman pouting: medium-dark skin tone -๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ pouting: dark skin tone -๐Ÿ™Ž๐Ÿฟโ€โ™€ pouting: dark skin tone dark skin tone | gesture | pouting | woman | woman pouting: dark skin tone -๐Ÿ™… gesturing NO forbidden | gesture | hand | person gesturing NO | prohibited -๐Ÿ™…๐Ÿป gesturing NO: light skin tone forbidden | gesture | hand | light skin tone | person gesturing NO | person gesturing NO: light skin tone | prohibited -๐Ÿ™…๐Ÿผ gesturing NO: medium-light skin tone forbidden | gesture | hand | medium-light skin tone | person gesturing NO | person gesturing NO: medium-light skin tone | prohibited -๐Ÿ™…๐Ÿฝ gesturing NO: medium skin tone forbidden | gesture | hand | medium skin tone | person gesturing NO | person gesturing NO: medium skin tone | prohibited -๐Ÿ™…๐Ÿพ gesturing NO: medium-dark skin tone forbidden | gesture | hand | medium-dark skin tone | person gesturing NO | person gesturing NO: medium-dark skin tone | prohibited -๐Ÿ™…๐Ÿฟ gesturing NO: dark skin tone dark skin tone | forbidden | gesture | hand | person gesturing NO | person gesturing NO: dark skin tone | prohibited -๐Ÿ™…โ€โ™‚๏ธ gesturing NO -๐Ÿ™…โ€โ™‚ gesturing NO forbidden | gesture | hand | man | man gesturing NO | prohibited -๐Ÿ™…๐Ÿปโ€โ™‚๏ธ gesturing NO: light skin tone -๐Ÿ™…๐Ÿปโ€โ™‚ gesturing NO: light skin tone forbidden | gesture | hand | light skin tone | man | man gesturing NO | man gesturing NO: light skin tone | prohibited -๐Ÿ™…๐Ÿผโ€โ™‚๏ธ gesturing NO: medium-light skin tone -๐Ÿ™…๐Ÿผโ€โ™‚ gesturing NO: medium-light skin tone forbidden | gesture | hand | man | man gesturing NO | man gesturing NO: medium-light skin tone | medium-light skin tone | prohibited -๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ gesturing NO: medium skin tone -๐Ÿ™…๐Ÿฝโ€โ™‚ gesturing NO: medium skin tone forbidden | gesture | hand | man | man gesturing NO | man gesturing NO: medium skin tone | medium skin tone | prohibited -๐Ÿ™…๐Ÿพโ€โ™‚๏ธ gesturing NO: medium-dark skin tone -๐Ÿ™…๐Ÿพโ€โ™‚ gesturing NO: medium-dark skin tone forbidden | gesture | hand | man | man gesturing NO | man gesturing NO: medium-dark skin tone | medium-dark skin tone | prohibited -๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ gesturing NO: dark skin tone -๐Ÿ™…๐Ÿฟโ€โ™‚ gesturing NO: dark skin tone dark skin tone | forbidden | gesture | hand | man | man gesturing NO | man gesturing NO: dark skin tone | prohibited -๐Ÿ™…โ€โ™€๏ธ gesturing NO -๐Ÿ™…โ€โ™€ gesturing NO forbidden | gesture | hand | prohibited | woman | woman gesturing NO -๐Ÿ™…๐Ÿปโ€โ™€๏ธ gesturing NO: light skin tone -๐Ÿ™…๐Ÿปโ€โ™€ gesturing NO: light skin tone forbidden | gesture | hand | light skin tone | prohibited | woman | woman gesturing NO | woman gesturing NO: light skin tone -๐Ÿ™…๐Ÿผโ€โ™€๏ธ gesturing NO: medium-light skin tone -๐Ÿ™…๐Ÿผโ€โ™€ gesturing NO: medium-light skin tone forbidden | gesture | hand | medium-light skin tone | prohibited | woman | woman gesturing NO | woman gesturing NO: medium-light skin tone -๐Ÿ™…๐Ÿฝโ€โ™€๏ธ gesturing NO: medium skin tone -๐Ÿ™…๐Ÿฝโ€โ™€ gesturing NO: medium skin tone forbidden | gesture | hand | medium skin tone | prohibited | woman | woman gesturing NO | woman gesturing NO: medium skin tone -๐Ÿ™…๐Ÿพโ€โ™€๏ธ gesturing NO: medium-dark skin tone -๐Ÿ™…๐Ÿพโ€โ™€ gesturing NO: medium-dark skin tone forbidden | gesture | hand | medium-dark skin tone | prohibited | woman | woman gesturing NO | woman gesturing NO: medium-dark skin tone -๐Ÿ™…๐Ÿฟโ€โ™€๏ธ gesturing NO: dark skin tone -๐Ÿ™…๐Ÿฟโ€โ™€ gesturing NO: dark skin tone dark skin tone | forbidden | gesture | hand | prohibited | woman | woman gesturing NO | woman gesturing NO: dark skin tone -๐Ÿ™† gesturing OK gesture | hand | OK | person gesturing OK -๐Ÿ™†๐Ÿป gesturing OK: light skin tone gesture | hand | light skin tone | OK | person gesturing OK | person gesturing OK: light skin tone -๐Ÿ™†๐Ÿผ gesturing OK: medium-light skin tone gesture | hand | medium-light skin tone | OK | person gesturing OK | person gesturing OK: medium-light skin tone -๐Ÿ™†๐Ÿฝ gesturing OK: medium skin tone gesture | hand | medium skin tone | OK | person gesturing OK | person gesturing OK: medium skin tone -๐Ÿ™†๐Ÿพ gesturing OK: medium-dark skin tone gesture | hand | medium-dark skin tone | OK | person gesturing OK | person gesturing OK: medium-dark skin tone -๐Ÿ™†๐Ÿฟ gesturing OK: dark skin tone dark skin tone | gesture | hand | OK | person gesturing OK | person gesturing OK: dark skin tone -๐Ÿ™†โ€โ™‚๏ธ gesturing OK -๐Ÿ™†โ€โ™‚ gesturing OK gesture | hand | man | man gesturing OK | OK -๐Ÿ™†๐Ÿปโ€โ™‚๏ธ gesturing OK: light skin tone -๐Ÿ™†๐Ÿปโ€โ™‚ gesturing OK: light skin tone gesture | hand | light skin tone | man | man gesturing OK | man gesturing OK: light skin tone | OK -๐Ÿ™†๐Ÿผโ€โ™‚๏ธ gesturing OK: medium-light skin tone -๐Ÿ™†๐Ÿผโ€โ™‚ gesturing OK: medium-light skin tone gesture | hand | man | man gesturing OK | man gesturing OK: medium-light skin tone | medium-light skin tone | OK -๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ gesturing OK: medium skin tone -๐Ÿ™†๐Ÿฝโ€โ™‚ gesturing OK: medium skin tone gesture | hand | man | man gesturing OK | man gesturing OK: medium skin tone | medium skin tone | OK -๐Ÿ™†๐Ÿพโ€โ™‚๏ธ gesturing OK: medium-dark skin tone -๐Ÿ™†๐Ÿพโ€โ™‚ gesturing OK: medium-dark skin tone gesture | hand | man | man gesturing OK | man gesturing OK: medium-dark skin tone | medium-dark skin tone | OK -๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ gesturing OK: dark skin tone -๐Ÿ™†๐Ÿฟโ€โ™‚ gesturing OK: dark skin tone dark skin tone | gesture | hand | man | man gesturing OK | man gesturing OK: dark skin tone | OK -๐Ÿ™†โ€โ™€๏ธ gesturing OK -๐Ÿ™†โ€โ™€ gesturing OK gesture | hand | OK | woman | woman gesturing OK -๐Ÿ™†๐Ÿปโ€โ™€๏ธ gesturing OK: light skin tone -๐Ÿ™†๐Ÿปโ€โ™€ gesturing OK: light skin tone gesture | hand | light skin tone | OK | woman | woman gesturing OK | woman gesturing OK: light skin tone -๐Ÿ™†๐Ÿผโ€โ™€๏ธ gesturing OK: medium-light skin tone -๐Ÿ™†๐Ÿผโ€โ™€ gesturing OK: medium-light skin tone gesture | hand | medium-light skin tone | OK | woman | woman gesturing OK | woman gesturing OK: medium-light skin tone -๐Ÿ™†๐Ÿฝโ€โ™€๏ธ gesturing OK: medium skin tone -๐Ÿ™†๐Ÿฝโ€โ™€ gesturing OK: medium skin tone gesture | hand | medium skin tone | OK | woman | woman gesturing OK | woman gesturing OK: medium skin tone -๐Ÿ™†๐Ÿพโ€โ™€๏ธ gesturing OK: medium-dark skin tone -๐Ÿ™†๐Ÿพโ€โ™€ gesturing OK: medium-dark skin tone gesture | hand | medium-dark skin tone | OK | woman | woman gesturing OK | woman gesturing OK: medium-dark skin tone -๐Ÿ™†๐Ÿฟโ€โ™€๏ธ gesturing OK: dark skin tone -๐Ÿ™†๐Ÿฟโ€โ™€ gesturing OK: dark skin tone dark skin tone | gesture | hand | OK | woman | woman gesturing OK | woman gesturing OK: dark skin tone -๐Ÿ’ tipping hand hand | help | information | person tipping hand | sassy | tipping -๐Ÿ’๐Ÿป tipping hand: light skin tone hand | help | information | light skin tone | person tipping hand | person tipping hand: light skin tone | sassy | tipping -๐Ÿ’๐Ÿผ tipping hand: medium-light skin tone hand | help | information | medium-light skin tone | person tipping hand | person tipping hand: medium-light skin tone | sassy | tipping -๐Ÿ’๐Ÿฝ tipping hand: medium skin tone hand | help | information | medium skin tone | person tipping hand | person tipping hand: medium skin tone | sassy | tipping -๐Ÿ’๐Ÿพ tipping hand: medium-dark skin tone hand | help | information | medium-dark skin tone | person tipping hand | person tipping hand: medium-dark skin tone | sassy | tipping -๐Ÿ’๐Ÿฟ tipping hand: dark skin tone dark skin tone | hand | help | information | person tipping hand | person tipping hand: dark skin tone | sassy | tipping -๐Ÿ’โ€โ™‚๏ธ tipping hand -๐Ÿ’โ€โ™‚ tipping hand man | man tipping hand | sassy | tipping hand -๐Ÿ’๐Ÿปโ€โ™‚๏ธ tipping hand: light skin tone -๐Ÿ’๐Ÿปโ€โ™‚ tipping hand: light skin tone light skin tone | man | man tipping hand | man tipping hand: light skin tone | sassy | tipping hand -๐Ÿ’๐Ÿผโ€โ™‚๏ธ tipping hand: medium-light skin tone -๐Ÿ’๐Ÿผโ€โ™‚ tipping hand: medium-light skin tone man | man tipping hand | man tipping hand: medium-light skin tone | medium-light skin tone | sassy | tipping hand -๐Ÿ’๐Ÿฝโ€โ™‚๏ธ tipping hand: medium skin tone -๐Ÿ’๐Ÿฝโ€โ™‚ tipping hand: medium skin tone man | man tipping hand | man tipping hand: medium skin tone | medium skin tone | sassy | tipping hand -๐Ÿ’๐Ÿพโ€โ™‚๏ธ tipping hand: medium-dark skin tone -๐Ÿ’๐Ÿพโ€โ™‚ tipping hand: medium-dark skin tone man | man tipping hand | man tipping hand: medium-dark skin tone | medium-dark skin tone | sassy | tipping hand -๐Ÿ’๐Ÿฟโ€โ™‚๏ธ tipping hand: dark skin tone -๐Ÿ’๐Ÿฟโ€โ™‚ tipping hand: dark skin tone dark skin tone | man | man tipping hand | man tipping hand: dark skin tone | sassy | tipping hand -๐Ÿ’โ€โ™€๏ธ tipping hand -๐Ÿ’โ€โ™€ tipping hand sassy | tipping hand | woman | woman tipping hand -๐Ÿ’๐Ÿปโ€โ™€๏ธ tipping hand: light skin tone -๐Ÿ’๐Ÿปโ€โ™€ tipping hand: light skin tone light skin tone | sassy | tipping hand | woman | woman tipping hand | woman tipping hand: light skin tone -๐Ÿ’๐Ÿผโ€โ™€๏ธ tipping hand: medium-light skin tone -๐Ÿ’๐Ÿผโ€โ™€ tipping hand: medium-light skin tone medium-light skin tone | sassy | tipping hand | woman | woman tipping hand | woman tipping hand: medium-light skin tone -๐Ÿ’๐Ÿฝโ€โ™€๏ธ tipping hand: medium skin tone -๐Ÿ’๐Ÿฝโ€โ™€ tipping hand: medium skin tone medium skin tone | sassy | tipping hand | woman | woman tipping hand | woman tipping hand: medium skin tone -๐Ÿ’๐Ÿพโ€โ™€๏ธ tipping hand: medium-dark skin tone -๐Ÿ’๐Ÿพโ€โ™€ tipping hand: medium-dark skin tone medium-dark skin tone | sassy | tipping hand | woman | woman tipping hand | woman tipping hand: medium-dark skin tone -๐Ÿ’๐Ÿฟโ€โ™€๏ธ tipping hand: dark skin tone -๐Ÿ’๐Ÿฟโ€โ™€ tipping hand: dark skin tone dark skin tone | sassy | tipping hand | woman | woman tipping hand | woman tipping hand: dark skin tone -๐Ÿ™‹ raising hand gesture | hand | happy | person raising hand | raised -๐Ÿ™‹๐Ÿป raising hand: light skin tone gesture | hand | happy | light skin tone | person raising hand | person raising hand: light skin tone | raised -๐Ÿ™‹๐Ÿผ raising hand: medium-light skin tone gesture | hand | happy | medium-light skin tone | person raising hand | person raising hand: medium-light skin tone | raised -๐Ÿ™‹๐Ÿฝ raising hand: medium skin tone gesture | hand | happy | medium skin tone | person raising hand | person raising hand: medium skin tone | raised -๐Ÿ™‹๐Ÿพ raising hand: medium-dark skin tone gesture | hand | happy | medium-dark skin tone | person raising hand | person raising hand: medium-dark skin tone | raised -๐Ÿ™‹๐Ÿฟ raising hand: dark skin tone dark skin tone | gesture | hand | happy | person raising hand | person raising hand: dark skin tone | raised -๐Ÿ™‹โ€โ™‚๏ธ raising hand -๐Ÿ™‹โ€โ™‚ raising hand gesture | man | man raising hand | raising hand -๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ raising hand: light skin tone -๐Ÿ™‹๐Ÿปโ€โ™‚ raising hand: light skin tone gesture | light skin tone | man | man raising hand | man raising hand: light skin tone | raising hand -๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ raising hand: medium-light skin tone -๐Ÿ™‹๐Ÿผโ€โ™‚ raising hand: medium-light skin tone gesture | man | man raising hand | man raising hand: medium-light skin tone | medium-light skin tone | raising hand -๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ raising hand: medium skin tone -๐Ÿ™‹๐Ÿฝโ€โ™‚ raising hand: medium skin tone gesture | man | man raising hand | man raising hand: medium skin tone | medium skin tone | raising hand -๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ raising hand: medium-dark skin tone -๐Ÿ™‹๐Ÿพโ€โ™‚ raising hand: medium-dark skin tone gesture | man | man raising hand | man raising hand: medium-dark skin tone | medium-dark skin tone | raising hand -๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ raising hand: dark skin tone -๐Ÿ™‹๐Ÿฟโ€โ™‚ raising hand: dark skin tone dark skin tone | gesture | man | man raising hand | man raising hand: dark skin tone | raising hand -๐Ÿ™‹โ€โ™€๏ธ raising hand -๐Ÿ™‹โ€โ™€ raising hand gesture | raising hand | woman | woman raising hand -๐Ÿ™‹๐Ÿปโ€โ™€๏ธ raising hand: light skin tone -๐Ÿ™‹๐Ÿปโ€โ™€ raising hand: light skin tone gesture | light skin tone | raising hand | woman | woman raising hand | woman raising hand: light skin tone -๐Ÿ™‹๐Ÿผโ€โ™€๏ธ raising hand: medium-light skin tone -๐Ÿ™‹๐Ÿผโ€โ™€ raising hand: medium-light skin tone gesture | medium-light skin tone | raising hand | woman | woman raising hand | woman raising hand: medium-light skin tone -๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ raising hand: medium skin tone -๐Ÿ™‹๐Ÿฝโ€โ™€ raising hand: medium skin tone gesture | medium skin tone | raising hand | woman | woman raising hand | woman raising hand: medium skin tone -๐Ÿ™‹๐Ÿพโ€โ™€๏ธ raising hand: medium-dark skin tone -๐Ÿ™‹๐Ÿพโ€โ™€ raising hand: medium-dark skin tone gesture | medium-dark skin tone | raising hand | woman | woman raising hand | woman raising hand: medium-dark skin tone -๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ raising hand: dark skin tone -๐Ÿ™‹๐Ÿฟโ€โ™€ raising hand: dark skin tone dark skin tone | gesture | raising hand | woman | woman raising hand | woman raising hand: dark skin tone -๐Ÿง person accessibility | deaf | deaf person | ear | hear | hard of hearing | hearing impaired -๐Ÿง๐Ÿป person: light skin tone accessibility | deaf | deaf person | deaf person: light skin tone | ear | hear | light skin tone | hard of hearing | hearing impaired -๐Ÿง๐Ÿผ person: medium-light skin tone accessibility | deaf | deaf person | deaf person: medium-light skin tone | ear | hear | medium-light skin tone | hard of hearing | hearing impaired -๐Ÿง๐Ÿฝ person: medium skin tone accessibility | deaf | deaf person | deaf person: medium skin tone | ear | hear | medium skin tone | hard of hearing | hearing impaired -๐Ÿง๐Ÿพ person: medium-dark skin tone accessibility | deaf | deaf person | deaf person: medium-dark skin tone | ear | hear | medium-dark skin tone | hard of hearing | hearing impaired -๐Ÿง๐Ÿฟ person: dark skin tone accessibility | dark skin tone | deaf | deaf person | deaf person: dark skin tone | ear | hear | hard of hearing | hearing impaired -๐Ÿงโ€โ™‚๏ธ man -๐Ÿงโ€โ™‚ man deaf | man -๐Ÿง๐Ÿปโ€โ™‚๏ธ man: light skin tone -๐Ÿง๐Ÿปโ€โ™‚ man: light skin tone deaf | deaf man: light skin tone | light skin tone | man -๐Ÿง๐Ÿผโ€โ™‚๏ธ man: medium-light skin tone -๐Ÿง๐Ÿผโ€โ™‚ man: medium-light skin tone deaf | deaf man: medium-light skin tone | man | medium-light skin tone -๐Ÿง๐Ÿฝโ€โ™‚๏ธ man: medium skin tone -๐Ÿง๐Ÿฝโ€โ™‚ man: medium skin tone deaf | deaf man: medium skin tone | man | medium skin tone -๐Ÿง๐Ÿพโ€โ™‚๏ธ man: medium-dark skin tone -๐Ÿง๐Ÿพโ€โ™‚ man: medium-dark skin tone deaf | deaf man: medium-dark skin tone | man | medium-dark skin tone -๐Ÿง๐Ÿฟโ€โ™‚๏ธ man: dark skin tone -๐Ÿง๐Ÿฟโ€โ™‚ man: dark skin tone dark skin tone | deaf | deaf man: dark skin tone | man -๐Ÿงโ€โ™€๏ธ woman -๐Ÿงโ€โ™€ woman deaf | woman -๐Ÿง๐Ÿปโ€โ™€๏ธ woman: light skin tone -๐Ÿง๐Ÿปโ€โ™€ woman: light skin tone deaf | deaf woman: light skin tone | light skin tone | woman -๐Ÿง๐Ÿผโ€โ™€๏ธ woman: medium-light skin tone -๐Ÿง๐Ÿผโ€โ™€ woman: medium-light skin tone deaf | deaf woman: medium-light skin tone | medium-light skin tone | woman -๐Ÿง๐Ÿฝโ€โ™€๏ธ woman: medium skin tone -๐Ÿง๐Ÿฝโ€โ™€ woman: medium skin tone deaf | deaf woman: medium skin tone | medium skin tone | woman -๐Ÿง๐Ÿพโ€โ™€๏ธ woman: medium-dark skin tone -๐Ÿง๐Ÿพโ€โ™€ woman: medium-dark skin tone deaf | deaf woman: medium-dark skin tone | medium-dark skin tone | woman -๐Ÿง๐Ÿฟโ€โ™€๏ธ woman: dark skin tone -๐Ÿง๐Ÿฟโ€โ™€ woman: dark skin tone dark skin tone | deaf | deaf woman: dark skin tone | woman -๐Ÿ™‡ bowing apology | bow | gesture | person bowing | sorry -๐Ÿ™‡๐Ÿป bowing: light skin tone apology | bow | gesture | light skin tone | person bowing | person bowing: light skin tone | sorry -๐Ÿ™‡๐Ÿผ bowing: medium-light skin tone apology | bow | gesture | medium-light skin tone | person bowing | person bowing: medium-light skin tone | sorry -๐Ÿ™‡๐Ÿฝ bowing: medium skin tone apology | bow | gesture | medium skin tone | person bowing | person bowing: medium skin tone | sorry -๐Ÿ™‡๐Ÿพ bowing: medium-dark skin tone apology | bow | gesture | medium-dark skin tone | person bowing | person bowing: medium-dark skin tone | sorry -๐Ÿ™‡๐Ÿฟ bowing: dark skin tone apology | bow | dark skin tone | gesture | person bowing | person bowing: dark skin tone | sorry -๐Ÿ™‡โ€โ™‚๏ธ bowing -๐Ÿ™‡โ€โ™‚ bowing apology | bowing | favor | gesture | man | sorry | favour -๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ bowing: light skin tone -๐Ÿ™‡๐Ÿปโ€โ™‚ bowing: light skin tone apology | bowing | favor | gesture | light skin tone | man | man bowing: light skin tone | sorry | favour -๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ bowing: medium-light skin tone -๐Ÿ™‡๐Ÿผโ€โ™‚ bowing: medium-light skin tone apology | bowing | favor | gesture | man | man bowing: medium-light skin tone | medium-light skin tone | sorry | favour -๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ bowing: medium skin tone -๐Ÿ™‡๐Ÿฝโ€โ™‚ bowing: medium skin tone apology | bowing | favor | gesture | man | man bowing: medium skin tone | medium skin tone | sorry | favour -๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ bowing: medium-dark skin tone -๐Ÿ™‡๐Ÿพโ€โ™‚ bowing: medium-dark skin tone apology | bowing | favor | gesture | man | man bowing: medium-dark skin tone | medium-dark skin tone | sorry | favour -๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ bowing: dark skin tone -๐Ÿ™‡๐Ÿฟโ€โ™‚ bowing: dark skin tone apology | bowing | dark skin tone | favor | gesture | man | man bowing: dark skin tone | sorry | favour -๐Ÿ™‡โ€โ™€๏ธ bowing -๐Ÿ™‡โ€โ™€ bowing apology | bowing | favor | gesture | sorry | woman | favour -๐Ÿ™‡๐Ÿปโ€โ™€๏ธ bowing: light skin tone -๐Ÿ™‡๐Ÿปโ€โ™€ bowing: light skin tone apology | bowing | favor | gesture | light skin tone | sorry | woman | woman bowing: light skin tone | favour -๐Ÿ™‡๐Ÿผโ€โ™€๏ธ bowing: medium-light skin tone -๐Ÿ™‡๐Ÿผโ€โ™€ bowing: medium-light skin tone apology | bowing | favor | gesture | medium-light skin tone | sorry | woman | woman bowing: medium-light skin tone | favour -๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ bowing: medium skin tone -๐Ÿ™‡๐Ÿฝโ€โ™€ bowing: medium skin tone apology | bowing | favor | gesture | medium skin tone | sorry | woman | woman bowing: medium skin tone | favour -๐Ÿ™‡๐Ÿพโ€โ™€๏ธ bowing: medium-dark skin tone -๐Ÿ™‡๐Ÿพโ€โ™€ bowing: medium-dark skin tone apology | bowing | favor | gesture | medium-dark skin tone | sorry | woman | woman bowing: medium-dark skin tone | favour -๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ bowing: dark skin tone -๐Ÿ™‡๐Ÿฟโ€โ™€ bowing: dark skin tone apology | bowing | dark skin tone | favor | gesture | sorry | woman | woman bowing: dark skin tone | favour -๐Ÿคฆ facepalming disbelief | exasperation | face | palm | person facepalming -๐Ÿคฆ๐Ÿป facepalming: light skin tone disbelief | exasperation | face | light skin tone | palm | person facepalming | person facepalming: light skin tone -๐Ÿคฆ๐Ÿผ facepalming: medium-light skin tone disbelief | exasperation | face | medium-light skin tone | palm | person facepalming | person facepalming: medium-light skin tone -๐Ÿคฆ๐Ÿฝ facepalming: medium skin tone disbelief | exasperation | face | medium skin tone | palm | person facepalming | person facepalming: medium skin tone -๐Ÿคฆ๐Ÿพ facepalming: medium-dark skin tone disbelief | exasperation | face | medium-dark skin tone | palm | person facepalming | person facepalming: medium-dark skin tone -๐Ÿคฆ๐Ÿฟ facepalming: dark skin tone dark skin tone | disbelief | exasperation | face | palm | person facepalming | person facepalming: dark skin tone -๐Ÿคฆโ€โ™‚๏ธ facepalming -๐Ÿคฆโ€โ™‚ facepalming disbelief | exasperation | facepalm | man | man facepalming -๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ facepalming: light skin tone -๐Ÿคฆ๐Ÿปโ€โ™‚ facepalming: light skin tone disbelief | exasperation | facepalm | light skin tone | man | man facepalming | man facepalming: light skin tone -๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ facepalming: medium-light skin tone -๐Ÿคฆ๐Ÿผโ€โ™‚ facepalming: medium-light skin tone disbelief | exasperation | facepalm | man | man facepalming | man facepalming: medium-light skin tone | medium-light skin tone -๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ facepalming: medium skin tone -๐Ÿคฆ๐Ÿฝโ€โ™‚ facepalming: medium skin tone disbelief | exasperation | facepalm | man | man facepalming | man facepalming: medium skin tone | medium skin tone -๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ facepalming: medium-dark skin tone -๐Ÿคฆ๐Ÿพโ€โ™‚ facepalming: medium-dark skin tone disbelief | exasperation | facepalm | man | man facepalming | man facepalming: medium-dark skin tone | medium-dark skin tone -๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ facepalming: dark skin tone -๐Ÿคฆ๐Ÿฟโ€โ™‚ facepalming: dark skin tone dark skin tone | disbelief | exasperation | facepalm | man | man facepalming | man facepalming: dark skin tone -๐Ÿคฆโ€โ™€๏ธ facepalming -๐Ÿคฆโ€โ™€ facepalming disbelief | exasperation | facepalm | woman | woman facepalming -๐Ÿคฆ๐Ÿปโ€โ™€๏ธ facepalming: light skin tone -๐Ÿคฆ๐Ÿปโ€โ™€ facepalming: light skin tone disbelief | exasperation | facepalm | light skin tone | woman | woman facepalming | woman facepalming: light skin tone -๐Ÿคฆ๐Ÿผโ€โ™€๏ธ facepalming: medium-light skin tone -๐Ÿคฆ๐Ÿผโ€โ™€ facepalming: medium-light skin tone disbelief | exasperation | facepalm | medium-light skin tone | woman | woman facepalming | woman facepalming: medium-light skin tone -๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ facepalming: medium skin tone -๐Ÿคฆ๐Ÿฝโ€โ™€ facepalming: medium skin tone disbelief | exasperation | facepalm | medium skin tone | woman | woman facepalming | woman facepalming: medium skin tone -๐Ÿคฆ๐Ÿพโ€โ™€๏ธ facepalming: medium-dark skin tone -๐Ÿคฆ๐Ÿพโ€โ™€ facepalming: medium-dark skin tone disbelief | exasperation | facepalm | medium-dark skin tone | woman | woman facepalming | woman facepalming: medium-dark skin tone -๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ facepalming: dark skin tone -๐Ÿคฆ๐Ÿฟโ€โ™€ facepalming: dark skin tone dark skin tone | disbelief | exasperation | facepalm | woman | woman facepalming | woman facepalming: dark skin tone -๐Ÿคท shrugging doubt | ignorance | indifference | person shrugging | shrug -๐Ÿคท๐Ÿป shrugging: light skin tone doubt | ignorance | indifference | light skin tone | person shrugging | person shrugging: light skin tone | shrug -๐Ÿคท๐Ÿผ shrugging: medium-light skin tone doubt | ignorance | indifference | medium-light skin tone | person shrugging | person shrugging: medium-light skin tone | shrug -๐Ÿคท๐Ÿฝ shrugging: medium skin tone doubt | ignorance | indifference | medium skin tone | person shrugging | person shrugging: medium skin tone | shrug -๐Ÿคท๐Ÿพ shrugging: medium-dark skin tone doubt | ignorance | indifference | medium-dark skin tone | person shrugging | person shrugging: medium-dark skin tone | shrug -๐Ÿคท๐Ÿฟ shrugging: dark skin tone dark skin tone | doubt | ignorance | indifference | person shrugging | person shrugging: dark skin tone | shrug -๐Ÿคทโ€โ™‚๏ธ shrugging -๐Ÿคทโ€โ™‚ shrugging doubt | ignorance | indifference | man | man shrugging | shrug -๐Ÿคท๐Ÿปโ€โ™‚๏ธ shrugging: light skin tone -๐Ÿคท๐Ÿปโ€โ™‚ shrugging: light skin tone doubt | ignorance | indifference | light skin tone | man | man shrugging | man shrugging: light skin tone | shrug -๐Ÿคท๐Ÿผโ€โ™‚๏ธ shrugging: medium-light skin tone -๐Ÿคท๐Ÿผโ€โ™‚ shrugging: medium-light skin tone doubt | ignorance | indifference | man | man shrugging | man shrugging: medium-light skin tone | medium-light skin tone | shrug -๐Ÿคท๐Ÿฝโ€โ™‚๏ธ shrugging: medium skin tone -๐Ÿคท๐Ÿฝโ€โ™‚ shrugging: medium skin tone doubt | ignorance | indifference | man | man shrugging | man shrugging: medium skin tone | medium skin tone | shrug -๐Ÿคท๐Ÿพโ€โ™‚๏ธ shrugging: medium-dark skin tone -๐Ÿคท๐Ÿพโ€โ™‚ shrugging: medium-dark skin tone doubt | ignorance | indifference | man | man shrugging | man shrugging: medium-dark skin tone | medium-dark skin tone | shrug -๐Ÿคท๐Ÿฟโ€โ™‚๏ธ shrugging: dark skin tone -๐Ÿคท๐Ÿฟโ€โ™‚ shrugging: dark skin tone dark skin tone | doubt | ignorance | indifference | man | man shrugging | man shrugging: dark skin tone | shrug -๐Ÿคทโ€โ™€๏ธ shrugging -๐Ÿคทโ€โ™€ shrugging doubt | ignorance | indifference | shrug | woman | woman shrugging -๐Ÿคท๐Ÿปโ€โ™€๏ธ shrugging: light skin tone -๐Ÿคท๐Ÿปโ€โ™€ shrugging: light skin tone doubt | ignorance | indifference | light skin tone | shrug | woman | woman shrugging | woman shrugging: light skin tone -๐Ÿคท๐Ÿผโ€โ™€๏ธ shrugging: medium-light skin tone -๐Ÿคท๐Ÿผโ€โ™€ shrugging: medium-light skin tone doubt | ignorance | indifference | medium-light skin tone | shrug | woman | woman shrugging | woman shrugging: medium-light skin tone -๐Ÿคท๐Ÿฝโ€โ™€๏ธ shrugging: medium skin tone -๐Ÿคท๐Ÿฝโ€โ™€ shrugging: medium skin tone doubt | ignorance | indifference | medium skin tone | shrug | woman | woman shrugging | woman shrugging: medium skin tone -๐Ÿคท๐Ÿพโ€โ™€๏ธ shrugging: medium-dark skin tone -๐Ÿคท๐Ÿพโ€โ™€ shrugging: medium-dark skin tone doubt | ignorance | indifference | medium-dark skin tone | shrug | woman | woman shrugging | woman shrugging: medium-dark skin tone -๐Ÿคท๐Ÿฟโ€โ™€๏ธ shrugging: dark skin tone -๐Ÿคท๐Ÿฟโ€โ™€ shrugging: dark skin tone dark skin tone | doubt | ignorance | indifference | shrug | woman | woman shrugging | woman shrugging: dark skin tone -๐Ÿง‘โ€โš•๏ธ worker -๐Ÿง‘โ€โš• worker doctor | health worker | healthcare | nurse | therapist | health care -๐Ÿง‘๐Ÿปโ€โš•๏ธ worker: light skin tone -๐Ÿง‘๐Ÿปโ€โš• worker: light skin tone doctor | health worker | health worker: light skin tone | healthcare | light skin tone | nurse | therapist | health care -๐Ÿง‘๐Ÿผโ€โš•๏ธ worker: medium-light skin tone -๐Ÿง‘๐Ÿผโ€โš• worker: medium-light skin tone doctor | health worker | health worker: medium-light skin tone | healthcare | medium-light skin tone | nurse | therapist | health care -๐Ÿง‘๐Ÿฝโ€โš•๏ธ worker: medium skin tone -๐Ÿง‘๐Ÿฝโ€โš• worker: medium skin tone doctor | health worker | health worker: medium skin tone | healthcare | medium skin tone | nurse | therapist | health care -๐Ÿง‘๐Ÿพโ€โš•๏ธ worker: medium-dark skin tone -๐Ÿง‘๐Ÿพโ€โš• worker: medium-dark skin tone doctor | health worker | health worker: medium-dark skin tone | healthcare | medium-dark skin tone | nurse | therapist | health care -๐Ÿง‘๐Ÿฟโ€โš•๏ธ worker: dark skin tone -๐Ÿง‘๐Ÿฟโ€โš• worker: dark skin tone dark skin tone | doctor | health worker | health worker: dark skin tone | healthcare | nurse | therapist | health care -๐Ÿ‘จโ€โš•๏ธ health worker -๐Ÿ‘จโ€โš• health worker doctor | healthcare | man | man health worker | nurse | therapist | health care -๐Ÿ‘จ๐Ÿปโ€โš•๏ธ health worker: light skin tone -๐Ÿ‘จ๐Ÿปโ€โš• health worker: light skin tone doctor | healthcare | light skin tone | man | man health worker | man health worker: light skin tone | nurse | therapist | health care -๐Ÿ‘จ๐Ÿผโ€โš•๏ธ health worker: medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โš• health worker: medium-light skin tone doctor | healthcare | man | man health worker | man health worker: medium-light skin tone | medium-light skin tone | nurse | therapist | health care -๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ health worker: medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โš• health worker: medium skin tone doctor | healthcare | man | man health worker | man health worker: medium skin tone | medium skin tone | nurse | therapist | health care -๐Ÿ‘จ๐Ÿพโ€โš•๏ธ health worker: medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โš• health worker: medium-dark skin tone doctor | healthcare | man | man health worker | man health worker: medium-dark skin tone | medium-dark skin tone | nurse | therapist | health care -๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ health worker: dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โš• health worker: dark skin tone dark skin tone | doctor | healthcare | man | man health worker | man health worker: dark skin tone | nurse | therapist | health care -๐Ÿ‘ฉโ€โš•๏ธ health worker -๐Ÿ‘ฉโ€โš• health worker doctor | healthcare | nurse | therapist | woman | woman health worker | health care -๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ health worker: light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โš• health worker: light skin tone doctor | healthcare | light skin tone | nurse | therapist | woman | woman health worker | woman health worker: light skin tone | health care -๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ health worker: medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โš• health worker: medium-light skin tone doctor | healthcare | medium-light skin tone | nurse | therapist | woman | woman health worker | woman health worker: medium-light skin tone | health care -๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ health worker: medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โš• health worker: medium skin tone doctor | healthcare | medium skin tone | nurse | therapist | woman | woman health worker | woman health worker: medium skin tone | health care -๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ health worker: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โš• health worker: medium-dark skin tone doctor | healthcare | medium-dark skin tone | nurse | therapist | woman | woman health worker | woman health worker: medium-dark skin tone | health care -๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ health worker: dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โš• health worker: dark skin tone dark skin tone | doctor | healthcare | nurse | therapist | woman | woman health worker | woman health worker: dark skin tone | health care -๐Ÿง‘โ€๐ŸŽ“ graduate | student -๐Ÿง‘๐Ÿปโ€๐ŸŽ“ light skin tone graduate | light skin tone | student | student: light skin tone -๐Ÿง‘๐Ÿผโ€๐ŸŽ“ medium-light skin tone graduate | medium-light skin tone | student | student: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐ŸŽ“ medium skin tone graduate | medium skin tone | student | student: medium skin tone -๐Ÿง‘๐Ÿพโ€๐ŸŽ“ medium-dark skin tone graduate | medium-dark skin tone | student | student: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐ŸŽ“ dark skin tone dark skin tone | graduate | student | student: dark skin tone -๐Ÿ‘จโ€๐ŸŽ“ student graduate | man | student -๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“ student: light skin tone graduate | light skin tone | man | man student: light skin tone | student -๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“ student: medium-light skin tone graduate | man | man student: medium-light skin tone | medium-light skin tone | student -๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“ student: medium skin tone graduate | man | man student: medium skin tone | medium skin tone | student -๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“ student: medium-dark skin tone graduate | man | man student: medium-dark skin tone | medium-dark skin tone | student -๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“ student: dark skin tone dark skin tone | graduate | man | man student: dark skin tone | student -๐Ÿ‘ฉโ€๐ŸŽ“ student graduate | student | woman -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“ student: light skin tone graduate | light skin tone | student | woman | woman student: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“ student: medium-light skin tone graduate | medium-light skin tone | student | woman | woman student: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“ student: medium skin tone graduate | medium skin tone | student | woman | woman student: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“ student: medium-dark skin tone graduate | medium-dark skin tone | student | woman | woman student: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“ student: dark skin tone dark skin tone | graduate | student | woman | woman student: dark skin tone -๐Ÿง‘โ€๐Ÿซ instructor | lecturer | professor | teacher -๐Ÿง‘๐Ÿปโ€๐Ÿซ light skin tone instructor | lecturer | light skin tone | professor | teacher | teacher: light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿซ medium-light skin tone instructor | lecturer | medium-light skin tone | professor | teacher | teacher: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿซ medium skin tone instructor | lecturer | medium skin tone | professor | teacher | teacher: medium skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿซ medium-dark skin tone instructor | lecturer | medium-dark skin tone | professor | teacher | teacher: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿซ dark skin tone dark skin tone | instructor | lecturer | professor | teacher | teacher: dark skin tone -๐Ÿ‘จโ€๐Ÿซ teacher instructor | lecturer | man | professor | teacher -๐Ÿ‘จ๐Ÿปโ€๐Ÿซ teacher: light skin tone instructor | lecturer | light skin tone | man | man teacher: light skin tone | professor | teacher -๐Ÿ‘จ๐Ÿผโ€๐Ÿซ teacher: medium-light skin tone instructor | lecturer | man | man teacher: medium-light skin tone | medium-light skin tone | professor | teacher -๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ teacher: medium skin tone instructor | lecturer | man | man teacher: medium skin tone | medium skin tone | professor | teacher -๐Ÿ‘จ๐Ÿพโ€๐Ÿซ teacher: medium-dark skin tone instructor | lecturer | man | man teacher: medium-dark skin tone | medium-dark skin tone | professor | teacher -๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ teacher: dark skin tone dark skin tone | instructor | lecturer | man | man teacher: dark skin tone | professor | teacher -๐Ÿ‘ฉโ€๐Ÿซ teacher instructor | lecturer | professor | teacher | woman -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ teacher: light skin tone instructor | lecturer | light skin tone | professor | teacher | woman | woman teacher: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ teacher: medium-light skin tone instructor | lecturer | medium-light skin tone | professor | teacher | woman | woman teacher: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ teacher: medium skin tone instructor | lecturer | medium skin tone | professor | teacher | woman | woman teacher: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ teacher: medium-dark skin tone instructor | lecturer | medium-dark skin tone | professor | teacher | woman | woman teacher: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ teacher: dark skin tone dark skin tone | instructor | lecturer | professor | teacher | woman | woman teacher: dark skin tone -๐Ÿง‘โ€โš– judge | justice | law | scales -๐Ÿง‘๐Ÿปโ€โš–๏ธ light skin tone -๐Ÿง‘๐Ÿปโ€โš– light skin tone judge | judge: light skin tone | justice | law | light skin tone | scales -๐Ÿง‘๐Ÿผโ€โš–๏ธ medium-light skin tone -๐Ÿง‘๐Ÿผโ€โš– medium-light skin tone judge | judge: medium-light skin tone | justice | law | medium-light skin tone | scales -๐Ÿง‘๐Ÿฝโ€โš–๏ธ medium skin tone -๐Ÿง‘๐Ÿฝโ€โš– medium skin tone judge | judge: medium skin tone | justice | law | medium skin tone | scales -๐Ÿง‘๐Ÿพโ€โš–๏ธ medium-dark skin tone -๐Ÿง‘๐Ÿพโ€โš– medium-dark skin tone judge | judge: medium-dark skin tone | justice | law | medium-dark skin tone | scales -๐Ÿง‘๐Ÿฟโ€โš–๏ธ dark skin tone -๐Ÿง‘๐Ÿฟโ€โš– dark skin tone dark skin tone | judge | judge: dark skin tone | justice | law | scales -๐Ÿ‘จโ€โš–๏ธ judge -๐Ÿ‘จโ€โš– judge judge | justice | law | man | scales -๐Ÿ‘จ๐Ÿปโ€โš–๏ธ judge: light skin tone -๐Ÿ‘จ๐Ÿปโ€โš– judge: light skin tone judge | justice | law | light skin tone | man | man judge: light skin tone | scales -๐Ÿ‘จ๐Ÿผโ€โš–๏ธ judge: medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โš– judge: medium-light skin tone judge | justice | law | man | man judge: medium-light skin tone | medium-light skin tone | scales -๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ judge: medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โš– judge: medium skin tone judge | justice | law | man | man judge: medium skin tone | medium skin tone | scales -๐Ÿ‘จ๐Ÿพโ€โš–๏ธ judge: medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โš– judge: medium-dark skin tone judge | justice | law | man | man judge: medium-dark skin tone | medium-dark skin tone | scales -๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ judge: dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โš– judge: dark skin tone dark skin tone | judge | justice | law | man | man judge: dark skin tone | scales -๐Ÿ‘ฉโ€โš–๏ธ judge -๐Ÿ‘ฉโ€โš– judge judge | justice | law | scales | woman -๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ judge: light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โš– judge: light skin tone judge | justice | law | light skin tone | scales | woman | woman judge: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ judge: medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โš– judge: medium-light skin tone judge | justice | law | medium-light skin tone | scales | woman | woman judge: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ judge: medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โš– judge: medium skin tone judge | justice | law | medium skin tone | scales | woman | woman judge: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ judge: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โš– judge: medium-dark skin tone judge | justice | law | medium-dark skin tone | scales | woman | woman judge: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ judge: dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โš– judge: dark skin tone dark skin tone | judge | justice | law | scales | woman | woman judge: dark skin tone -๐Ÿง‘โ€๐ŸŒพ farmer | gardener | rancher -๐Ÿง‘๐Ÿปโ€๐ŸŒพ light skin tone farmer | farmer: light skin tone | gardener | light skin tone | rancher -๐Ÿง‘๐Ÿผโ€๐ŸŒพ medium-light skin tone farmer | farmer: medium-light skin tone | gardener | medium-light skin tone | rancher -๐Ÿง‘๐Ÿฝโ€๐ŸŒพ medium skin tone farmer | farmer: medium skin tone | gardener | medium skin tone | rancher -๐Ÿง‘๐Ÿพโ€๐ŸŒพ medium-dark skin tone farmer | farmer: medium-dark skin tone | gardener | medium-dark skin tone | rancher -๐Ÿง‘๐Ÿฟโ€๐ŸŒพ dark skin tone dark skin tone | farmer | farmer: dark skin tone | gardener | rancher -๐Ÿ‘จโ€๐ŸŒพ farmer farmer | gardener | man | rancher -๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ farmer: light skin tone farmer | gardener | light skin tone | man | man farmer: light skin tone | rancher -๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ farmer: medium-light skin tone farmer | gardener | man | man farmer: medium-light skin tone | medium-light skin tone | rancher -๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ farmer: medium skin tone farmer | gardener | man | man farmer: medium skin tone | medium skin tone | rancher -๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ farmer: medium-dark skin tone farmer | gardener | man | man farmer: medium-dark skin tone | medium-dark skin tone | rancher -๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ farmer: dark skin tone dark skin tone | farmer | gardener | man | man farmer: dark skin tone | rancher -๐Ÿ‘ฉโ€๐ŸŒพ farmer farmer | gardener | rancher | woman -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ farmer: light skin tone farmer | gardener | light skin tone | rancher | woman | woman farmer: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ farmer: medium-light skin tone farmer | gardener | medium-light skin tone | rancher | woman | woman farmer: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ farmer: medium skin tone farmer | gardener | medium skin tone | rancher | woman | woman farmer: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ farmer: medium-dark skin tone farmer | gardener | medium-dark skin tone | rancher | woman | woman farmer: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ farmer: dark skin tone dark skin tone | farmer | gardener | rancher | woman | woman farmer: dark skin tone -๐Ÿง‘โ€๐Ÿณ chef | cook -๐Ÿง‘๐Ÿปโ€๐Ÿณ light skin tone chef | cook | cook: light skin tone | light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿณ medium-light skin tone chef | cook | cook: medium-light skin tone | medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿณ medium skin tone chef | cook | cook: medium skin tone | medium skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿณ medium-dark skin tone chef | cook | cook: medium-dark skin tone | medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿณ dark skin tone chef | cook | cook: dark skin tone | dark skin tone -๐Ÿ‘จโ€๐Ÿณ cook chef | cook | man -๐Ÿ‘จ๐Ÿปโ€๐Ÿณ cook: light skin tone chef | cook | light skin tone | man | man cook: light skin tone -๐Ÿ‘จ๐Ÿผโ€๐Ÿณ cook: medium-light skin tone chef | cook | man | man cook: medium-light skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ cook: medium skin tone chef | cook | man | man cook: medium skin tone | medium skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿณ cook: medium-dark skin tone chef | cook | man | man cook: medium-dark skin tone | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ cook: dark skin tone chef | cook | dark skin tone | man | man cook: dark skin tone -๐Ÿ‘ฉโ€๐Ÿณ cook chef | cook | woman -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ cook: light skin tone chef | cook | light skin tone | woman | woman cook: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ cook: medium-light skin tone chef | cook | medium-light skin tone | woman | woman cook: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ cook: medium skin tone chef | cook | medium skin tone | woman | woman cook: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ cook: medium-dark skin tone chef | cook | medium-dark skin tone | woman | woman cook: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ cook: dark skin tone chef | cook | dark skin tone | woman | woman cook: dark skin tone -๐Ÿง‘โ€๐Ÿ”ง electrician | mechanic | plumber | tradesperson | tradie -๐Ÿง‘๐Ÿปโ€๐Ÿ”ง light skin tone electrician | light skin tone | mechanic | mechanic: light skin tone | plumber | tradesperson | tradie -๐Ÿง‘๐Ÿผโ€๐Ÿ”ง medium-light skin tone electrician | mechanic | mechanic: medium-light skin tone | medium-light skin tone | plumber | tradesperson | tradie -๐Ÿง‘๐Ÿฝโ€๐Ÿ”ง medium skin tone electrician | mechanic | mechanic: medium skin tone | medium skin tone | plumber | tradesperson | tradie -๐Ÿง‘๐Ÿพโ€๐Ÿ”ง medium-dark skin tone electrician | mechanic | mechanic: medium-dark skin tone | medium-dark skin tone | plumber | tradesperson | tradie -๐Ÿง‘๐Ÿฟโ€๐Ÿ”ง dark skin tone dark skin tone | electrician | mechanic | mechanic: dark skin tone | plumber | tradesperson | tradie -๐Ÿ‘จโ€๐Ÿ”ง mechanic electrician | man | mechanic | plumber | tradesperson -๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง mechanic: light skin tone electrician | light skin tone | man | man mechanic: light skin tone | mechanic | plumber | tradesperson -๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง mechanic: medium-light skin tone electrician | man | man mechanic: medium-light skin tone | mechanic | medium-light skin tone | plumber | tradesperson -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง mechanic: medium skin tone electrician | man | man mechanic: medium skin tone | mechanic | medium skin tone | plumber | tradesperson -๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง mechanic: medium-dark skin tone electrician | man | man mechanic: medium-dark skin tone | mechanic | medium-dark skin tone | plumber | tradesperson -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง mechanic: dark skin tone dark skin tone | electrician | man | man mechanic: dark skin tone | mechanic | plumber | tradesperson -๐Ÿ‘ฉโ€๐Ÿ”ง mechanic electrician | mechanic | plumber | tradesperson | woman -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง mechanic: light skin tone electrician | light skin tone | mechanic | plumber | tradesperson | woman | woman mechanic: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง mechanic: medium-light skin tone electrician | mechanic | medium-light skin tone | plumber | tradesperson | woman | woman mechanic: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง mechanic: medium skin tone electrician | mechanic | medium skin tone | plumber | tradesperson | woman | woman mechanic: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง mechanic: medium-dark skin tone electrician | mechanic | medium-dark skin tone | plumber | tradesperson | woman | woman mechanic: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง mechanic: dark skin tone dark skin tone | electrician | mechanic | plumber | tradesperson | woman | woman mechanic: dark skin tone -๐Ÿง‘โ€๐Ÿญ worker assembly | factory | industrial | worker -๐Ÿง‘๐Ÿปโ€๐Ÿญ worker: light skin tone assembly | factory | factory worker: light skin tone | industrial | light skin tone | worker -๐Ÿง‘๐Ÿผโ€๐Ÿญ worker: medium-light skin tone assembly | factory | factory worker: medium-light skin tone | industrial | medium-light skin tone | worker -๐Ÿง‘๐Ÿฝโ€๐Ÿญ worker: medium skin tone assembly | factory | factory worker: medium skin tone | industrial | medium skin tone | worker -๐Ÿง‘๐Ÿพโ€๐Ÿญ worker: medium-dark skin tone assembly | factory | factory worker: medium-dark skin tone | industrial | medium-dark skin tone | worker -๐Ÿง‘๐Ÿฟโ€๐Ÿญ worker: dark skin tone assembly | dark skin tone | factory | factory worker: dark skin tone | industrial | worker -๐Ÿ‘จโ€๐Ÿญ factory worker assembly | factory | industrial | man | worker -๐Ÿ‘จ๐Ÿปโ€๐Ÿญ factory worker: light skin tone assembly | factory | industrial | light skin tone | man | man factory worker: light skin tone | worker -๐Ÿ‘จ๐Ÿผโ€๐Ÿญ factory worker: medium-light skin tone assembly | factory | industrial | man | man factory worker: medium-light skin tone | medium-light skin tone | worker -๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ factory worker: medium skin tone assembly | factory | industrial | man | man factory worker: medium skin tone | medium skin tone | worker -๐Ÿ‘จ๐Ÿพโ€๐Ÿญ factory worker: medium-dark skin tone assembly | factory | industrial | man | man factory worker: medium-dark skin tone | medium-dark skin tone | worker -๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ factory worker: dark skin tone assembly | dark skin tone | factory | industrial | man | man factory worker: dark skin tone | worker -๐Ÿ‘ฉโ€๐Ÿญ factory worker assembly | factory | industrial | woman | worker -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ factory worker: light skin tone assembly | factory | industrial | light skin tone | woman | woman factory worker: light skin tone | worker -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ factory worker: medium-light skin tone assembly | factory | industrial | medium-light skin tone | woman | woman factory worker: medium-light skin tone | worker -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ factory worker: medium skin tone assembly | factory | industrial | medium skin tone | woman | woman factory worker: medium skin tone | worker -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ factory worker: medium-dark skin tone assembly | factory | industrial | medium-dark skin tone | woman | woman factory worker: medium-dark skin tone | worker -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ factory worker: dark skin tone assembly | dark skin tone | factory | industrial | woman | woman factory worker: dark skin tone | worker -๐Ÿง‘โ€๐Ÿ’ผ worker architect | business | manager | office worker | white-collar -๐Ÿง‘๐Ÿปโ€๐Ÿ’ผ worker: light skin tone architect | business | light skin tone | manager | office worker | office worker: light skin tone | white-collar -๐Ÿง‘๐Ÿผโ€๐Ÿ’ผ worker: medium-light skin tone architect | business | manager | medium-light skin tone | office worker | office worker: medium-light skin tone | white-collar -๐Ÿง‘๐Ÿฝโ€๐Ÿ’ผ worker: medium skin tone architect | business | manager | medium skin tone | office worker | office worker: medium skin tone | white-collar -๐Ÿง‘๐Ÿพโ€๐Ÿ’ผ worker: medium-dark skin tone architect | business | manager | medium-dark skin tone | office worker | office worker: medium-dark skin tone | white-collar -๐Ÿง‘๐Ÿฟโ€๐Ÿ’ผ worker: dark skin tone architect | business | dark skin tone | manager | office worker | office worker: dark skin tone | white-collar -๐Ÿ‘จโ€๐Ÿ’ผ office worker architect | business | man | man office worker | manager | white-collar | business man | office worker | white collar -๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ office worker: light skin tone architect | business | light skin tone | man | man office worker | man office worker: light skin tone | manager | white-collar | business man | office worker | white collar -๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ office worker: medium-light skin tone architect | business | man | man office worker | man office worker: medium-light skin tone | manager | medium-light skin tone | white-collar | business man | office worker | white collar -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ office worker: medium skin tone architect | business | man | man office worker | man office worker: medium skin tone | manager | medium skin tone | white-collar | business man | office worker | white collar -๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ office worker: medium-dark skin tone architect | business | man | man office worker | man office worker: medium-dark skin tone | manager | medium-dark skin tone | white-collar | business man | office worker | white collar -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ office worker: dark skin tone architect | business | dark skin tone | man | man office worker | man office worker: dark skin tone | manager | white-collar | business man | office worker | white collar -๐Ÿ‘ฉโ€๐Ÿ’ผ office worker architect | business | manager | white-collar | woman | woman office worker | business woman | office worker | white collar -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ office worker: light skin tone architect | business | light skin tone | manager | white-collar | woman | woman office worker | woman office worker: light skin tone | business woman | office worker | white collar -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ office worker: medium-light skin tone architect | business | manager | medium-light skin tone | white-collar | woman | woman office worker | woman office worker: medium-light skin tone | business woman | office worker | white collar -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ office worker: medium skin tone architect | business | manager | medium skin tone | white-collar | woman | woman office worker | woman office worker: medium skin tone | business woman | office worker | white collar -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ office worker: medium-dark skin tone architect | business | manager | medium-dark skin tone | white-collar | woman | woman office worker | woman office worker: medium-dark skin tone | business woman | office worker | white collar -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ office worker: dark skin tone architect | business | dark skin tone | manager | white-collar | woman | woman office worker | woman office worker: dark skin tone | business woman | office worker | white collar -๐Ÿง‘โ€๐Ÿ”ฌ biologist | chemist | engineer | physicist | scientist -๐Ÿง‘๐Ÿปโ€๐Ÿ”ฌ light skin tone biologist | chemist | engineer | light skin tone | physicist | scientist | scientist: light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿ”ฌ medium-light skin tone biologist | chemist | engineer | medium-light skin tone | physicist | scientist | scientist: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿ”ฌ medium skin tone biologist | chemist | engineer | medium skin tone | physicist | scientist | scientist: medium skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿ”ฌ medium-dark skin tone biologist | chemist | engineer | medium-dark skin tone | physicist | scientist | scientist: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿ”ฌ dark skin tone biologist | chemist | dark skin tone | engineer | physicist | scientist | scientist: dark skin tone -๐Ÿ‘จโ€๐Ÿ”ฌ scientist biologist | chemist | engineer | man | physicist | scientist -๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ scientist: light skin tone biologist | chemist | engineer | light skin tone | man | man scientist: light skin tone | physicist | scientist -๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ scientist: medium-light skin tone biologist | chemist | engineer | man | man scientist: medium-light skin tone | medium-light skin tone | physicist | scientist -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ scientist: medium skin tone biologist | chemist | engineer | man | man scientist: medium skin tone | medium skin tone | physicist | scientist -๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ scientist: medium-dark skin tone biologist | chemist | engineer | man | man scientist: medium-dark skin tone | medium-dark skin tone | physicist | scientist -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ scientist: dark skin tone biologist | chemist | dark skin tone | engineer | man | man scientist: dark skin tone | physicist | scientist -๐Ÿ‘ฉโ€๐Ÿ”ฌ scientist biologist | chemist | engineer | physicist | scientist | woman -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ scientist: light skin tone biologist | chemist | engineer | light skin tone | physicist | scientist | woman | woman scientist: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ scientist: medium-light skin tone biologist | chemist | engineer | medium-light skin tone | physicist | scientist | woman | woman scientist: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ scientist: medium skin tone biologist | chemist | engineer | medium skin tone | physicist | scientist | woman | woman scientist: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ scientist: medium-dark skin tone biologist | chemist | engineer | medium-dark skin tone | physicist | scientist | woman | woman scientist: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ scientist: dark skin tone biologist | chemist | dark skin tone | engineer | physicist | scientist | woman | woman scientist: dark skin tone -๐Ÿง‘โ€๐Ÿ’ป coder | developer | inventor | software | technologist -๐Ÿง‘๐Ÿปโ€๐Ÿ’ป light skin tone coder | developer | inventor | light skin tone | software | technologist | technologist: light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿ’ป medium-light skin tone coder | developer | inventor | medium-light skin tone | software | technologist | technologist: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป medium skin tone coder | developer | inventor | medium skin tone | software | technologist | technologist: medium skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿ’ป medium-dark skin tone coder | developer | inventor | medium-dark skin tone | software | technologist | technologist: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿ’ป dark skin tone coder | dark skin tone | developer | inventor | software | technologist | technologist: dark skin tone -๐Ÿ‘จโ€๐Ÿ’ป technologist coder | developer | inventor | man | software | technologist -๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป technologist: light skin tone coder | developer | inventor | light skin tone | man | man technologist: light skin tone | software | technologist -๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป technologist: medium-light skin tone coder | developer | inventor | man | man technologist: medium-light skin tone | medium-light skin tone | software | technologist -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป technologist: medium skin tone coder | developer | inventor | man | man technologist: medium skin tone | medium skin tone | software | technologist -๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป technologist: medium-dark skin tone coder | developer | inventor | man | man technologist: medium-dark skin tone | medium-dark skin tone | software | technologist -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป technologist: dark skin tone coder | dark skin tone | developer | inventor | man | man technologist: dark skin tone | software | technologist -๐Ÿ‘ฉโ€๐Ÿ’ป technologist coder | developer | inventor | software | technologist | woman -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป technologist: light skin tone coder | developer | inventor | light skin tone | software | technologist | woman | woman technologist: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป technologist: medium-light skin tone coder | developer | inventor | medium-light skin tone | software | technologist | woman | woman technologist: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป technologist: medium skin tone coder | developer | inventor | medium skin tone | software | technologist | woman | woman technologist: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป technologist: medium-dark skin tone coder | developer | inventor | medium-dark skin tone | software | technologist | woman | woman technologist: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป technologist: dark skin tone coder | dark skin tone | developer | inventor | software | technologist | woman | woman technologist: dark skin tone -๐Ÿง‘โ€๐ŸŽค actor | entertainer | rock | singer | star -๐Ÿง‘๐Ÿปโ€๐ŸŽค light skin tone actor | entertainer | light skin tone | rock | singer | singer: light skin tone | star -๐Ÿง‘๐Ÿผโ€๐ŸŽค medium-light skin tone actor | entertainer | medium-light skin tone | rock | singer | singer: medium-light skin tone | star -๐Ÿง‘๐Ÿฝโ€๐ŸŽค medium skin tone actor | entertainer | medium skin tone | rock | singer | singer: medium skin tone | star -๐Ÿง‘๐Ÿพโ€๐ŸŽค medium-dark skin tone actor | entertainer | medium-dark skin tone | rock | singer | singer: medium-dark skin tone | star -๐Ÿง‘๐Ÿฟโ€๐ŸŽค dark skin tone actor | dark skin tone | entertainer | rock | singer | singer: dark skin tone | star -๐Ÿ‘จโ€๐ŸŽค singer actor | entertainer | man | rock | singer | star -๐Ÿ‘จ๐Ÿปโ€๐ŸŽค singer: light skin tone actor | entertainer | light skin tone | man | man singer: light skin tone | rock | singer | star -๐Ÿ‘จ๐Ÿผโ€๐ŸŽค singer: medium-light skin tone actor | entertainer | man | man singer: medium-light skin tone | medium-light skin tone | rock | singer | star -๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค singer: medium skin tone actor | entertainer | man | man singer: medium skin tone | medium skin tone | rock | singer | star -๐Ÿ‘จ๐Ÿพโ€๐ŸŽค singer: medium-dark skin tone actor | entertainer | man | man singer: medium-dark skin tone | medium-dark skin tone | rock | singer | star -๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค singer: dark skin tone actor | dark skin tone | entertainer | man | man singer: dark skin tone | rock | singer | star -๐Ÿ‘ฉโ€๐ŸŽค singer actor | entertainer | rock | singer | star | woman -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค singer: light skin tone actor | entertainer | light skin tone | rock | singer | star | woman | woman singer: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค singer: medium-light skin tone actor | entertainer | medium-light skin tone | rock | singer | star | woman | woman singer: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค singer: medium skin tone actor | entertainer | medium skin tone | rock | singer | star | woman | woman singer: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค singer: medium-dark skin tone actor | entertainer | medium-dark skin tone | rock | singer | star | woman | woman singer: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค singer: dark skin tone actor | dark skin tone | entertainer | rock | singer | star | woman | woman singer: dark skin tone -๐Ÿง‘โ€๐ŸŽจ artist | palette -๐Ÿง‘๐Ÿปโ€๐ŸŽจ light skin tone artist | artist: light skin tone | light skin tone | palette -๐Ÿง‘๐Ÿผโ€๐ŸŽจ medium-light skin tone artist | artist: medium-light skin tone | medium-light skin tone | palette -๐Ÿง‘๐Ÿฝโ€๐ŸŽจ medium skin tone artist | artist: medium skin tone | medium skin tone | palette -๐Ÿง‘๐Ÿพโ€๐ŸŽจ medium-dark skin tone artist | artist: medium-dark skin tone | medium-dark skin tone | palette -๐Ÿง‘๐Ÿฟโ€๐ŸŽจ dark skin tone artist | artist: dark skin tone | dark skin tone | palette -๐Ÿ‘จโ€๐ŸŽจ artist artist | man | palette | painter -๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ artist: light skin tone artist | light skin tone | man | man artist: light skin tone | palette | painter -๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ artist: medium-light skin tone artist | man | man artist: medium-light skin tone | medium-light skin tone | palette | painter -๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ artist: medium skin tone artist | man | man artist: medium skin tone | medium skin tone | palette | painter -๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ artist: medium-dark skin tone artist | man | man artist: medium-dark skin tone | medium-dark skin tone | palette | painter -๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ artist: dark skin tone artist | dark skin tone | man | man artist: dark skin tone | palette | painter -๐Ÿ‘ฉโ€๐ŸŽจ artist artist | palette | woman | painter -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ artist: light skin tone artist | light skin tone | palette | woman | woman artist: light skin tone | painter -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ artist: medium-light skin tone artist | medium-light skin tone | palette | woman | woman artist: medium-light skin tone | painter -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ artist: medium skin tone artist | medium skin tone | palette | woman | woman artist: medium skin tone | painter -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ artist: medium-dark skin tone artist | medium-dark skin tone | palette | woman | woman artist: medium-dark skin tone | painter -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ artist: dark skin tone artist | dark skin tone | palette | woman | woman artist: dark skin tone | painter -๐Ÿง‘โ€โœˆ pilot | plane -๐Ÿง‘๐Ÿปโ€โœˆ๏ธ light skin tone -๐Ÿง‘๐Ÿปโ€โœˆ light skin tone light skin tone | pilot | pilot: light skin tone | plane -๐Ÿง‘๐Ÿผโ€โœˆ๏ธ medium-light skin tone -๐Ÿง‘๐Ÿผโ€โœˆ medium-light skin tone medium-light skin tone | pilot | pilot: medium-light skin tone | plane -๐Ÿง‘๐Ÿฝโ€โœˆ๏ธ medium skin tone -๐Ÿง‘๐Ÿฝโ€โœˆ medium skin tone medium skin tone | pilot | pilot: medium skin tone | plane -๐Ÿง‘๐Ÿพโ€โœˆ๏ธ medium-dark skin tone -๐Ÿง‘๐Ÿพโ€โœˆ medium-dark skin tone medium-dark skin tone | pilot | pilot: medium-dark skin tone | plane -๐Ÿง‘๐Ÿฟโ€โœˆ๏ธ dark skin tone -๐Ÿง‘๐Ÿฟโ€โœˆ dark skin tone dark skin tone | pilot | pilot: dark skin tone | plane -๐Ÿ‘จโ€โœˆ๏ธ pilot -๐Ÿ‘จโ€โœˆ pilot man | pilot | plane -๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ pilot: light skin tone -๐Ÿ‘จ๐Ÿปโ€โœˆ pilot: light skin tone light skin tone | man | man pilot: light skin tone | pilot | plane -๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ pilot: medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โœˆ pilot: medium-light skin tone man | man pilot: medium-light skin tone | medium-light skin tone | pilot | plane -๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ pilot: medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โœˆ pilot: medium skin tone man | man pilot: medium skin tone | medium skin tone | pilot | plane -๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ pilot: medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โœˆ pilot: medium-dark skin tone man | man pilot: medium-dark skin tone | medium-dark skin tone | pilot | plane -๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ pilot: dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โœˆ pilot: dark skin tone dark skin tone | man | man pilot: dark skin tone | pilot | plane -๐Ÿ‘ฉโ€โœˆ๏ธ pilot -๐Ÿ‘ฉโ€โœˆ pilot pilot | plane | woman -๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ pilot: light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โœˆ pilot: light skin tone light skin tone | pilot | plane | woman | woman pilot: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ pilot: medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โœˆ pilot: medium-light skin tone medium-light skin tone | pilot | plane | woman | woman pilot: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ pilot: medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โœˆ pilot: medium skin tone medium skin tone | pilot | plane | woman | woman pilot: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ pilot: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โœˆ pilot: medium-dark skin tone medium-dark skin tone | pilot | plane | woman | woman pilot: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ pilot: dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โœˆ pilot: dark skin tone dark skin tone | pilot | plane | woman | woman pilot: dark skin tone -๐Ÿง‘โ€๐Ÿš€ astronaut | rocket -๐Ÿง‘๐Ÿปโ€๐Ÿš€ light skin tone astronaut | astronaut: light skin tone | light skin tone | rocket -๐Ÿง‘๐Ÿผโ€๐Ÿš€ medium-light skin tone astronaut | astronaut: medium-light skin tone | medium-light skin tone | rocket -๐Ÿง‘๐Ÿฝโ€๐Ÿš€ medium skin tone astronaut | astronaut: medium skin tone | medium skin tone | rocket -๐Ÿง‘๐Ÿพโ€๐Ÿš€ medium-dark skin tone astronaut | astronaut: medium-dark skin tone | medium-dark skin tone | rocket -๐Ÿง‘๐Ÿฟโ€๐Ÿš€ dark skin tone astronaut | astronaut: dark skin tone | dark skin tone | rocket -๐Ÿ‘จโ€๐Ÿš€ astronaut astronaut | man | rocket -๐Ÿ‘จ๐Ÿปโ€๐Ÿš€ astronaut: light skin tone astronaut | light skin tone | man | man astronaut: light skin tone | rocket -๐Ÿ‘จ๐Ÿผโ€๐Ÿš€ astronaut: medium-light skin tone astronaut | man | man astronaut: medium-light skin tone | medium-light skin tone | rocket -๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€ astronaut: medium skin tone astronaut | man | man astronaut: medium skin tone | medium skin tone | rocket -๐Ÿ‘จ๐Ÿพโ€๐Ÿš€ astronaut: medium-dark skin tone astronaut | man | man astronaut: medium-dark skin tone | medium-dark skin tone | rocket -๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€ astronaut: dark skin tone astronaut | dark skin tone | man | man astronaut: dark skin tone | rocket -๐Ÿ‘ฉโ€๐Ÿš€ astronaut astronaut | rocket | woman -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€ astronaut: light skin tone astronaut | light skin tone | rocket | woman | woman astronaut: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€ astronaut: medium-light skin tone astronaut | medium-light skin tone | rocket | woman | woman astronaut: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€ astronaut: medium skin tone astronaut | medium skin tone | rocket | woman | woman astronaut: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€ astronaut: medium-dark skin tone astronaut | medium-dark skin tone | rocket | woman | woman astronaut: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€ astronaut: dark skin tone astronaut | dark skin tone | rocket | woman | woman astronaut: dark skin tone -๐Ÿง‘โ€๐Ÿš’ fire | firefighter | firetruck | fire engine | fire truck | engine | truck -๐Ÿง‘๐Ÿปโ€๐Ÿš’ light skin tone fire | firefighter | firefighter: light skin tone | firetruck | light skin tone | fire engine | fire truck | engine | truck -๐Ÿง‘๐Ÿผโ€๐Ÿš’ medium-light skin tone fire | firefighter | firefighter: medium-light skin tone | firetruck | medium-light skin tone | fire engine | fire truck | engine | truck -๐Ÿง‘๐Ÿฝโ€๐Ÿš’ medium skin tone fire | firefighter | firefighter: medium skin tone | firetruck | medium skin tone | fire engine | fire truck | engine | truck -๐Ÿง‘๐Ÿพโ€๐Ÿš’ medium-dark skin tone fire | firefighter | firefighter: medium-dark skin tone | firetruck | medium-dark skin tone | fire engine | fire truck | engine | truck -๐Ÿง‘๐Ÿฟโ€๐Ÿš’ dark skin tone dark skin tone | fire | firefighter | firefighter: dark skin tone | firetruck | fire engine | fire truck | engine | truck -๐Ÿ‘จโ€๐Ÿš’ firefighter firefighter | firetruck | man | fire | fire truck | fireman -๐Ÿ‘จ๐Ÿปโ€๐Ÿš’ firefighter: light skin tone firefighter | firetruck | light skin tone | man | man firefighter: light skin tone | fire | fire truck | fireman -๐Ÿ‘จ๐Ÿผโ€๐Ÿš’ firefighter: medium-light skin tone firefighter | firetruck | man | man firefighter: medium-light skin tone | medium-light skin tone | fire | fire truck | fireman -๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’ firefighter: medium skin tone firefighter | firetruck | man | man firefighter: medium skin tone | medium skin tone | fire | fire truck | fireman -๐Ÿ‘จ๐Ÿพโ€๐Ÿš’ firefighter: medium-dark skin tone firefighter | firetruck | man | man firefighter: medium-dark skin tone | medium-dark skin tone | fire | fire truck | fireman -๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’ firefighter: dark skin tone dark skin tone | firefighter | firetruck | man | man firefighter: dark skin tone | fire | fire truck | fireman -๐Ÿ‘ฉโ€๐Ÿš’ firefighter firefighter | firetruck | woman | fire | fire truck | engine | firewoman | truck -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’ firefighter: light skin tone firefighter | firetruck | light skin tone | woman | woman firefighter: light skin tone | fire | fire truck | engine | firewoman | truck -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’ firefighter: medium-light skin tone firefighter | firetruck | medium-light skin tone | woman | woman firefighter: medium-light skin tone | fire | fire truck | engine | firewoman | truck -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’ firefighter: medium skin tone firefighter | firetruck | medium skin tone | woman | woman firefighter: medium skin tone | fire | fire truck | engine | firewoman | truck -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’ firefighter: medium-dark skin tone firefighter | firetruck | medium-dark skin tone | woman | woman firefighter: medium-dark skin tone | fire | fire truck | engine | firewoman | truck -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’ firefighter: dark skin tone dark skin tone | firefighter | firetruck | woman | woman firefighter: dark skin tone | fire | fire truck | engine | firewoman | truck -๐Ÿ‘ฎ officer cop | officer | police -๐Ÿ‘ฎ๐Ÿป officer: light skin tone cop | light skin tone | officer | police | police officer: light skin tone -๐Ÿ‘ฎ๐Ÿผ officer: medium-light skin tone cop | medium-light skin tone | officer | police | police officer: medium-light skin tone -๐Ÿ‘ฎ๐Ÿฝ officer: medium skin tone cop | medium skin tone | officer | police | police officer: medium skin tone -๐Ÿ‘ฎ๐Ÿพ officer: medium-dark skin tone cop | medium-dark skin tone | officer | police | police officer: medium-dark skin tone -๐Ÿ‘ฎ๐Ÿฟ officer: dark skin tone cop | dark skin tone | officer | police | police officer: dark skin tone -๐Ÿ‘ฎโ€โ™‚๏ธ police officer -๐Ÿ‘ฎโ€โ™‚ police officer cop | man | officer | police -๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ police officer: light skin tone -๐Ÿ‘ฎ๐Ÿปโ€โ™‚ police officer: light skin tone cop | light skin tone | man | man police officer: light skin tone | officer | police -๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ police officer: medium-light skin tone -๐Ÿ‘ฎ๐Ÿผโ€โ™‚ police officer: medium-light skin tone cop | man | man police officer: medium-light skin tone | medium-light skin tone | officer | police -๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ police officer: medium skin tone -๐Ÿ‘ฎ๐Ÿฝโ€โ™‚ police officer: medium skin tone cop | man | man police officer: medium skin tone | medium skin tone | officer | police -๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ police officer: medium-dark skin tone -๐Ÿ‘ฎ๐Ÿพโ€โ™‚ police officer: medium-dark skin tone cop | man | man police officer: medium-dark skin tone | medium-dark skin tone | officer | police -๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ police officer: dark skin tone -๐Ÿ‘ฎ๐Ÿฟโ€โ™‚ police officer: dark skin tone cop | dark skin tone | man | man police officer: dark skin tone | officer | police -๐Ÿ‘ฎโ€โ™€๏ธ police officer -๐Ÿ‘ฎโ€โ™€ police officer cop | officer | police | woman -๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ police officer: light skin tone -๐Ÿ‘ฎ๐Ÿปโ€โ™€ police officer: light skin tone cop | light skin tone | officer | police | woman | woman police officer: light skin tone -๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ police officer: medium-light skin tone -๐Ÿ‘ฎ๐Ÿผโ€โ™€ police officer: medium-light skin tone cop | medium-light skin tone | officer | police | woman | woman police officer: medium-light skin tone -๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ police officer: medium skin tone -๐Ÿ‘ฎ๐Ÿฝโ€โ™€ police officer: medium skin tone cop | medium skin tone | officer | police | woman | woman police officer: medium skin tone -๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ police officer: medium-dark skin tone -๐Ÿ‘ฎ๐Ÿพโ€โ™€ police officer: medium-dark skin tone cop | medium-dark skin tone | officer | police | woman | woman police officer: medium-dark skin tone -๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ police officer: dark skin tone -๐Ÿ‘ฎ๐Ÿฟโ€โ™€ police officer: dark skin tone cop | dark skin tone | officer | police | woman | woman police officer: dark skin tone -๐Ÿ•ต detective | sleuth | spy | investigator | private eye -๐Ÿ•ต๐Ÿป light skin tone detective | detective: light skin tone | light skin tone | sleuth | spy | investigator | private eye -๐Ÿ•ต๐Ÿผ medium-light skin tone detective | detective: medium-light skin tone | medium-light skin tone | sleuth | spy | investigator | private eye -๐Ÿ•ต๐Ÿฝ medium skin tone detective | detective: medium skin tone | medium skin tone | sleuth | spy | investigator | private eye -๐Ÿ•ต๐Ÿพ medium-dark skin tone detective | detective: medium-dark skin tone | medium-dark skin tone | sleuth | spy | investigator | private eye -๐Ÿ•ต๐Ÿฟ dark skin tone dark skin tone | detective | detective: dark skin tone | sleuth | spy | investigator | private eye -๐Ÿ•ต๏ธโ€โ™‚๏ธ detective -๐Ÿ•ต๏ธโ€โ™‚ detective -๐Ÿ•ตโ€โ™‚ detective detective | man | sleuth | spy | investigator -๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ detective: light skin tone -๐Ÿ•ต๐Ÿปโ€โ™‚ detective: light skin tone detective | light skin tone | man | man detective: light skin tone | sleuth | spy | investigator -๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ detective: medium-light skin tone -๐Ÿ•ต๐Ÿผโ€โ™‚ detective: medium-light skin tone detective | man | man detective: medium-light skin tone | medium-light skin tone | sleuth | spy | investigator -๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ detective: medium skin tone -๐Ÿ•ต๐Ÿฝโ€โ™‚ detective: medium skin tone detective | man | man detective: medium skin tone | medium skin tone | sleuth | spy | investigator -๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ detective: medium-dark skin tone -๐Ÿ•ต๐Ÿพโ€โ™‚ detective: medium-dark skin tone detective | man | man detective: medium-dark skin tone | medium-dark skin tone | sleuth | spy | investigator -๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ detective: dark skin tone -๐Ÿ•ต๐Ÿฟโ€โ™‚ detective: dark skin tone dark skin tone | detective | man | man detective: dark skin tone | sleuth | spy | investigator -๐Ÿ•ตโ€โ™€ detective detective | sleuth | spy | woman | investigator -๐Ÿ•ต๐Ÿปโ€โ™€๏ธ detective: light skin tone -๐Ÿ•ต๐Ÿปโ€โ™€ detective: light skin tone detective | light skin tone | sleuth | spy | woman | woman detective: light skin tone | investigator -๐Ÿ•ต๐Ÿผโ€โ™€๏ธ detective: medium-light skin tone -๐Ÿ•ต๐Ÿผโ€โ™€ detective: medium-light skin tone detective | medium-light skin tone | sleuth | spy | woman | woman detective: medium-light skin tone | investigator -๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ detective: medium skin tone -๐Ÿ•ต๐Ÿฝโ€โ™€ detective: medium skin tone detective | medium skin tone | sleuth | spy | woman | woman detective: medium skin tone | investigator -๐Ÿ•ต๐Ÿพโ€โ™€๏ธ detective: medium-dark skin tone -๐Ÿ•ต๐Ÿพโ€โ™€ detective: medium-dark skin tone detective | medium-dark skin tone | sleuth | spy | woman | woman detective: medium-dark skin tone | investigator -๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ detective: dark skin tone -๐Ÿ•ต๐Ÿฟโ€โ™€ detective: dark skin tone dark skin tone | detective | sleuth | spy | woman | woman detective: dark skin tone | investigator -๐Ÿ’‚ guard -๐Ÿ’‚๐Ÿป light skin tone guard | guard: light skin tone | light skin tone -๐Ÿ’‚๐Ÿผ medium-light skin tone guard | guard: medium-light skin tone | medium-light skin tone -๐Ÿ’‚๐Ÿฝ medium skin tone guard | guard: medium skin tone | medium skin tone -๐Ÿ’‚๐Ÿพ medium-dark skin tone guard | guard: medium-dark skin tone | medium-dark skin tone -๐Ÿ’‚๐Ÿฟ dark skin tone dark skin tone | guard | guard: dark skin tone -๐Ÿ’‚โ€โ™‚ guard guard | man -๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ guard: light skin tone -๐Ÿ’‚๐Ÿปโ€โ™‚ guard: light skin tone guard | light skin tone | man | man guard: light skin tone -๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ guard: medium-light skin tone -๐Ÿ’‚๐Ÿผโ€โ™‚ guard: medium-light skin tone guard | man | man guard: medium-light skin tone | medium-light skin tone -๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ guard: medium skin tone -๐Ÿ’‚๐Ÿฝโ€โ™‚ guard: medium skin tone guard | man | man guard: medium skin tone | medium skin tone -๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ guard: medium-dark skin tone -๐Ÿ’‚๐Ÿพโ€โ™‚ guard: medium-dark skin tone guard | man | man guard: medium-dark skin tone | medium-dark skin tone -๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ guard: dark skin tone -๐Ÿ’‚๐Ÿฟโ€โ™‚ guard: dark skin tone dark skin tone | guard | man | man guard: dark skin tone -๐Ÿ’‚โ€โ™€๏ธ guard -๐Ÿ’‚โ€โ™€ guard guard | woman -๐Ÿ’‚๐Ÿปโ€โ™€๏ธ guard: light skin tone -๐Ÿ’‚๐Ÿปโ€โ™€ guard: light skin tone guard | light skin tone | woman | woman guard: light skin tone -๐Ÿ’‚๐Ÿผโ€โ™€๏ธ guard: medium-light skin tone -๐Ÿ’‚๐Ÿผโ€โ™€ guard: medium-light skin tone guard | medium-light skin tone | woman | woman guard: medium-light skin tone -๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ guard: medium skin tone -๐Ÿ’‚๐Ÿฝโ€โ™€ guard: medium skin tone guard | medium skin tone | woman | woman guard: medium skin tone -๐Ÿ’‚๐Ÿพโ€โ™€๏ธ guard: medium-dark skin tone -๐Ÿ’‚๐Ÿพโ€โ™€ guard: medium-dark skin tone guard | medium-dark skin tone | woman | woman guard: medium-dark skin tone -๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ guard: dark skin tone -๐Ÿ’‚๐Ÿฟโ€โ™€ guard: dark skin tone dark skin tone | guard | woman | woman guard: dark skin tone -๐Ÿฅท fighter | hidden | ninja | stealth -๐Ÿฅท๐Ÿป light skin tone fighter | hidden | light skin tone | ninja | ninja: light skin tone | stealth -๐Ÿฅท๐Ÿผ medium-light skin tone fighter | hidden | medium-light skin tone | ninja | ninja: medium-light skin tone | stealth -๐Ÿฅท๐Ÿฝ medium skin tone fighter | hidden | medium skin tone | ninja | ninja: medium skin tone | stealth -๐Ÿฅท๐Ÿพ medium-dark skin tone fighter | hidden | medium-dark skin tone | ninja | ninja: medium-dark skin tone | stealth -๐Ÿฅท๐Ÿฟ dark skin tone dark skin tone | fighter | hidden | ninja | ninja: dark skin tone | stealth -๐Ÿ‘ท worker construction | hat | worker -๐Ÿ‘ท๐Ÿป worker: light skin tone construction | construction worker: light skin tone | hat | light skin tone | worker -๐Ÿ‘ท๐Ÿผ worker: medium-light skin tone construction | construction worker: medium-light skin tone | hat | medium-light skin tone | worker -๐Ÿ‘ท๐Ÿฝ worker: medium skin tone construction | construction worker: medium skin tone | hat | medium skin tone | worker -๐Ÿ‘ท๐Ÿพ worker: medium-dark skin tone construction | construction worker: medium-dark skin tone | hat | medium-dark skin tone | worker -๐Ÿ‘ท๐Ÿฟ worker: dark skin tone construction | construction worker: dark skin tone | dark skin tone | hat | worker -๐Ÿ‘ทโ€โ™‚๏ธ construction worker -๐Ÿ‘ทโ€โ™‚ construction worker construction | man | worker -๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ construction worker: light skin tone -๐Ÿ‘ท๐Ÿปโ€โ™‚ construction worker: light skin tone construction | light skin tone | man | man construction worker: light skin tone | worker -๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ construction worker: medium-light skin tone -๐Ÿ‘ท๐Ÿผโ€โ™‚ construction worker: medium-light skin tone construction | man | man construction worker: medium-light skin tone | medium-light skin tone | worker -๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ construction worker: medium skin tone -๐Ÿ‘ท๐Ÿฝโ€โ™‚ construction worker: medium skin tone construction | man | man construction worker: medium skin tone | medium skin tone | worker -๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ construction worker: medium-dark skin tone -๐Ÿ‘ท๐Ÿพโ€โ™‚ construction worker: medium-dark skin tone construction | man | man construction worker: medium-dark skin tone | medium-dark skin tone | worker -๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ construction worker: dark skin tone -๐Ÿ‘ท๐Ÿฟโ€โ™‚ construction worker: dark skin tone construction | dark skin tone | man | man construction worker: dark skin tone | worker -๐Ÿ‘ทโ€โ™€๏ธ construction worker -๐Ÿ‘ทโ€โ™€ construction worker construction | woman | worker -๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ construction worker: light skin tone -๐Ÿ‘ท๐Ÿปโ€โ™€ construction worker: light skin tone construction | light skin tone | woman | woman construction worker: light skin tone | worker -๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ construction worker: medium-light skin tone -๐Ÿ‘ท๐Ÿผโ€โ™€ construction worker: medium-light skin tone construction | medium-light skin tone | woman | woman construction worker: medium-light skin tone | worker -๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ construction worker: medium skin tone -๐Ÿ‘ท๐Ÿฝโ€โ™€ construction worker: medium skin tone construction | medium skin tone | woman | woman construction worker: medium skin tone | worker -๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ construction worker: medium-dark skin tone -๐Ÿ‘ท๐Ÿพโ€โ™€ construction worker: medium-dark skin tone construction | medium-dark skin tone | woman | woman construction worker: medium-dark skin tone | worker -๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ construction worker: dark skin tone -๐Ÿ‘ท๐Ÿฟโ€โ™€ construction worker: dark skin tone construction | dark skin tone | woman | woman construction worker: dark skin tone | worker -๐Ÿซ… with crown monarch | noble | person with crown | regal | royalty | king | queen -๐Ÿซ…๐Ÿป with crown: light skin tone light skin tone | monarch | noble | person with crown | person with crown: light skin tone | regal | royalty | king | queen -๐Ÿซ…๐Ÿผ with crown: medium-light skin tone medium-light skin tone | monarch | noble | person with crown | person with crown: medium-light skin tone | regal | royalty | king | queen -๐Ÿซ…๐Ÿฝ with crown: medium skin tone medium skin tone | monarch | noble | person with crown | person with crown: medium skin tone | regal | royalty | king | queen -๐Ÿซ…๐Ÿพ with crown: medium-dark skin tone medium-dark skin tone | monarch | noble | person with crown | person with crown: medium-dark skin tone | regal | royalty | king | queen -๐Ÿซ…๐Ÿฟ with crown: dark skin tone dark skin tone | monarch | noble | person with crown | person with crown: dark skin tone | regal | royalty | king | queen -๐Ÿคด prince | fairy tale | fantasy -๐Ÿคด๐Ÿป light skin tone light skin tone | prince | prince: light skin tone | fairy tale | fantasy -๐Ÿคด๐Ÿผ medium-light skin tone medium-light skin tone | prince | prince: medium-light skin tone | fairy tale | fantasy -๐Ÿคด๐Ÿฝ medium skin tone medium skin tone | prince | prince: medium skin tone | fairy tale | fantasy -๐Ÿคด๐Ÿพ medium-dark skin tone medium-dark skin tone | prince | prince: medium-dark skin tone | fairy tale | fantasy -๐Ÿคด๐Ÿฟ dark skin tone dark skin tone | prince | prince: dark skin tone | fairy tale | fantasy -๐Ÿ‘ธ fairy tale | fantasy | princess -๐Ÿ‘ธ๐Ÿป light skin tone fairy tale | fantasy | light skin tone | princess | princess: light skin tone -๐Ÿ‘ธ๐Ÿผ medium-light skin tone fairy tale | fantasy | medium-light skin tone | princess | princess: medium-light skin tone -๐Ÿ‘ธ๐Ÿฝ medium skin tone fairy tale | fantasy | medium skin tone | princess | princess: medium skin tone -๐Ÿ‘ธ๐Ÿพ medium-dark skin tone fairy tale | fantasy | medium-dark skin tone | princess | princess: medium-dark skin tone -๐Ÿ‘ธ๐Ÿฟ dark skin tone dark skin tone | fairy tale | fantasy | princess | princess: dark skin tone -๐Ÿ‘ณ wearing turban person wearing turban | turban -๐Ÿ‘ณ๐Ÿป wearing turban: light skin tone light skin tone | person wearing turban | person wearing turban: light skin tone | turban -๐Ÿ‘ณ๐Ÿผ wearing turban: medium-light skin tone medium-light skin tone | person wearing turban | person wearing turban: medium-light skin tone | turban -๐Ÿ‘ณ๐Ÿฝ wearing turban: medium skin tone medium skin tone | person wearing turban | person wearing turban: medium skin tone | turban -๐Ÿ‘ณ๐Ÿพ wearing turban: medium-dark skin tone medium-dark skin tone | person wearing turban | person wearing turban: medium-dark skin tone | turban -๐Ÿ‘ณ๐Ÿฟ wearing turban: dark skin tone dark skin tone | person wearing turban | person wearing turban: dark skin tone | turban -๐Ÿ‘ณโ€โ™‚๏ธ wearing turban -๐Ÿ‘ณโ€โ™‚ wearing turban man | man wearing turban | turban -๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ wearing turban: light skin tone -๐Ÿ‘ณ๐Ÿปโ€โ™‚ wearing turban: light skin tone light skin tone | man | man wearing turban | man wearing turban: light skin tone | turban -๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ wearing turban: medium-light skin tone -๐Ÿ‘ณ๐Ÿผโ€โ™‚ wearing turban: medium-light skin tone man | man wearing turban | man wearing turban: medium-light skin tone | medium-light skin tone | turban -๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ wearing turban: medium skin tone -๐Ÿ‘ณ๐Ÿฝโ€โ™‚ wearing turban: medium skin tone man | man wearing turban | man wearing turban: medium skin tone | medium skin tone | turban -๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ wearing turban: medium-dark skin tone -๐Ÿ‘ณ๐Ÿพโ€โ™‚ wearing turban: medium-dark skin tone man | man wearing turban | man wearing turban: medium-dark skin tone | medium-dark skin tone | turban -๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ wearing turban: dark skin tone -๐Ÿ‘ณ๐Ÿฟโ€โ™‚ wearing turban: dark skin tone dark skin tone | man | man wearing turban | man wearing turban: dark skin tone | turban -๐Ÿ‘ณโ€โ™€๏ธ wearing turban -๐Ÿ‘ณโ€โ™€ wearing turban turban | woman | woman wearing turban -๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ wearing turban: light skin tone -๐Ÿ‘ณ๐Ÿปโ€โ™€ wearing turban: light skin tone light skin tone | turban | woman | woman wearing turban | woman wearing turban: light skin tone -๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ wearing turban: medium-light skin tone -๐Ÿ‘ณ๐Ÿผโ€โ™€ wearing turban: medium-light skin tone medium-light skin tone | turban | woman | woman wearing turban | woman wearing turban: medium-light skin tone -๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ wearing turban: medium skin tone -๐Ÿ‘ณ๐Ÿฝโ€โ™€ wearing turban: medium skin tone medium skin tone | turban | woman | woman wearing turban | woman wearing turban: medium skin tone -๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ wearing turban: medium-dark skin tone -๐Ÿ‘ณ๐Ÿพโ€โ™€ wearing turban: medium-dark skin tone medium-dark skin tone | turban | woman | woman wearing turban | woman wearing turban: medium-dark skin tone -๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ wearing turban: dark skin tone -๐Ÿ‘ณ๐Ÿฟโ€โ™€ wearing turban: dark skin tone dark skin tone | turban | woman | woman wearing turban | woman wearing turban: dark skin tone -๐Ÿ‘ฒ with skullcap cap | gua pi mao | hat | person | person with skullcap | skullcap -๐Ÿ‘ฒ๐Ÿป with skullcap: light skin tone cap | gua pi mao | hat | light skin tone | person | person with skullcap | person with skullcap: light skin tone | skullcap -๐Ÿ‘ฒ๐Ÿผ with skullcap: medium-light skin tone cap | gua pi mao | hat | medium-light skin tone | person | person with skullcap | person with skullcap: medium-light skin tone | skullcap -๐Ÿ‘ฒ๐Ÿฝ with skullcap: medium skin tone cap | gua pi mao | hat | medium skin tone | person | person with skullcap | person with skullcap: medium skin tone | skullcap -๐Ÿ‘ฒ๐Ÿพ with skullcap: medium-dark skin tone cap | gua pi mao | hat | medium-dark skin tone | person | person with skullcap | person with skullcap: medium-dark skin tone | skullcap -๐Ÿ‘ฒ๐Ÿฟ with skullcap: dark skin tone cap | dark skin tone | gua pi mao | hat | person | person with skullcap | person with skullcap: dark skin tone | skullcap -๐Ÿง• with headscarf headscarf | hijab | mantilla | tichel | woman with headscarf -๐Ÿง•๐Ÿป with headscarf: light skin tone headscarf | hijab | light skin tone | mantilla | tichel | woman with headscarf | woman with headscarf: light skin tone -๐Ÿง•๐Ÿผ with headscarf: medium-light skin tone headscarf | hijab | mantilla | medium-light skin tone | tichel | woman with headscarf | woman with headscarf: medium-light skin tone -๐Ÿง•๐Ÿฝ with headscarf: medium skin tone headscarf | hijab | mantilla | medium skin tone | tichel | woman with headscarf | woman with headscarf: medium skin tone -๐Ÿง•๐Ÿพ with headscarf: medium-dark skin tone headscarf | hijab | mantilla | medium-dark skin tone | tichel | woman with headscarf | woman with headscarf: medium-dark skin tone -๐Ÿง•๐Ÿฟ with headscarf: dark skin tone dark skin tone | headscarf | hijab | mantilla | tichel | woman with headscarf | woman with headscarf: dark skin tone -๐Ÿคต in tuxedo groom | person | person in tuxedo | tuxedo | person in tux -๐Ÿคต๐Ÿป in tuxedo: light skin tone groom | light skin tone | person | person in tuxedo | person in tuxedo: light skin tone | tuxedo | person in tux -๐Ÿคต๐Ÿผ in tuxedo: medium-light skin tone groom | medium-light skin tone | person | person in tuxedo | person in tuxedo: medium-light skin tone | tuxedo | person in tux -๐Ÿคต๐Ÿฝ in tuxedo: medium skin tone groom | medium skin tone | person | person in tuxedo | person in tuxedo: medium skin tone | tuxedo | person in tux -๐Ÿคต๐Ÿพ in tuxedo: medium-dark skin tone groom | medium-dark skin tone | person | person in tuxedo | person in tuxedo: medium-dark skin tone | tuxedo | person in tux -๐Ÿคต๐Ÿฟ in tuxedo: dark skin tone dark skin tone | groom | person | person in tuxedo | person in tuxedo: dark skin tone | tuxedo | person in tux -๐Ÿคตโ€โ™‚๏ธ in tuxedo -๐Ÿคตโ€โ™‚ in tuxedo man | man in tuxedo | tuxedo | man in tux | tux -๐Ÿคต๐Ÿปโ€โ™‚๏ธ in tuxedo: light skin tone -๐Ÿคต๐Ÿปโ€โ™‚ in tuxedo: light skin tone light skin tone | man | man in tuxedo | man in tuxedo: light skin tone | tuxedo | man in tux | tux -๐Ÿคต๐Ÿผโ€โ™‚๏ธ in tuxedo: medium-light skin tone -๐Ÿคต๐Ÿผโ€โ™‚ in tuxedo: medium-light skin tone man | man in tuxedo | man in tuxedo: medium-light skin tone | medium-light skin tone | tuxedo | man in tux | tux -๐Ÿคต๐Ÿฝโ€โ™‚๏ธ in tuxedo: medium skin tone -๐Ÿคต๐Ÿฝโ€โ™‚ in tuxedo: medium skin tone man | man in tuxedo | man in tuxedo: medium skin tone | medium skin tone | tuxedo | man in tux | tux -๐Ÿคต๐Ÿพโ€โ™‚๏ธ in tuxedo: medium-dark skin tone -๐Ÿคต๐Ÿพโ€โ™‚ in tuxedo: medium-dark skin tone man | man in tuxedo | man in tuxedo: medium-dark skin tone | medium-dark skin tone | tuxedo | man in tux | tux -๐Ÿคต๐Ÿฟโ€โ™‚๏ธ in tuxedo: dark skin tone -๐Ÿคต๐Ÿฟโ€โ™‚ in tuxedo: dark skin tone dark skin tone | man | man in tuxedo | man in tuxedo: dark skin tone | tuxedo | man in tux | tux -๐Ÿคตโ€โ™€๏ธ in tuxedo -๐Ÿคตโ€โ™€ in tuxedo tuxedo | woman | woman in tuxedo | woman in tux -๐Ÿคต๐Ÿปโ€โ™€๏ธ in tuxedo: light skin tone -๐Ÿคต๐Ÿปโ€โ™€ in tuxedo: light skin tone light skin tone | tuxedo | woman | woman in tuxedo | woman in tuxedo: light skin tone | woman in tux -๐Ÿคต๐Ÿผโ€โ™€๏ธ in tuxedo: medium-light skin tone -๐Ÿคต๐Ÿผโ€โ™€ in tuxedo: medium-light skin tone medium-light skin tone | tuxedo | woman | woman in tuxedo | woman in tuxedo: medium-light skin tone | woman in tux -๐Ÿคต๐Ÿฝโ€โ™€๏ธ in tuxedo: medium skin tone -๐Ÿคต๐Ÿฝโ€โ™€ in tuxedo: medium skin tone medium skin tone | tuxedo | woman | woman in tuxedo | woman in tuxedo: medium skin tone | woman in tux -๐Ÿคต๐Ÿพโ€โ™€๏ธ in tuxedo: medium-dark skin tone -๐Ÿคต๐Ÿพโ€โ™€ in tuxedo: medium-dark skin tone medium-dark skin tone | tuxedo | woman | woman in tuxedo | woman in tuxedo: medium-dark skin tone | woman in tux -๐Ÿคต๐Ÿฟโ€โ™€๏ธ in tuxedo: dark skin tone -๐Ÿคต๐Ÿฟโ€โ™€ in tuxedo: dark skin tone dark skin tone | tuxedo | woman | woman in tuxedo | woman in tuxedo: dark skin tone | woman in tux -๐Ÿ‘ฐ with veil bride | person | person with veil | veil | wedding -๐Ÿ‘ฐ๐Ÿป with veil: light skin tone bride | light skin tone | person | person with veil | person with veil: light skin tone | veil | wedding -๐Ÿ‘ฐ๐Ÿผ with veil: medium-light skin tone bride | medium-light skin tone | person | person with veil | person with veil: medium-light skin tone | veil | wedding -๐Ÿ‘ฐ๐Ÿฝ with veil: medium skin tone bride | medium skin tone | person | person with veil | person with veil: medium skin tone | veil | wedding -๐Ÿ‘ฐ๐Ÿพ with veil: medium-dark skin tone bride | medium-dark skin tone | person | person with veil | person with veil: medium-dark skin tone | veil | wedding -๐Ÿ‘ฐ๐Ÿฟ with veil: dark skin tone bride | dark skin tone | person | person with veil | person with veil: dark skin tone | veil | wedding -๐Ÿ‘ฐโ€โ™‚๏ธ with veil -๐Ÿ‘ฐโ€โ™‚ with veil man | man with veil | veil -๐Ÿ‘ฐ๐Ÿปโ€โ™‚๏ธ with veil: light skin tone -๐Ÿ‘ฐ๐Ÿปโ€โ™‚ with veil: light skin tone light skin tone | man | man with veil | man with veil: light skin tone | veil -๐Ÿ‘ฐ๐Ÿผโ€โ™‚๏ธ with veil: medium-light skin tone -๐Ÿ‘ฐ๐Ÿผโ€โ™‚ with veil: medium-light skin tone man | man with veil | man with veil: medium-light skin tone | medium-light skin tone | veil -๐Ÿ‘ฐ๐Ÿฝโ€โ™‚๏ธ with veil: medium skin tone -๐Ÿ‘ฐ๐Ÿฝโ€โ™‚ with veil: medium skin tone man | man with veil | man with veil: medium skin tone | medium skin tone | veil -๐Ÿ‘ฐ๐Ÿพโ€โ™‚๏ธ with veil: medium-dark skin tone -๐Ÿ‘ฐ๐Ÿพโ€โ™‚ with veil: medium-dark skin tone man | man with veil | man with veil: medium-dark skin tone | medium-dark skin tone | veil -๐Ÿ‘ฐ๐Ÿฟโ€โ™‚๏ธ with veil: dark skin tone -๐Ÿ‘ฐ๐Ÿฟโ€โ™‚ with veil: dark skin tone dark skin tone | man | man with veil | man with veil: dark skin tone | veil -๐Ÿ‘ฐโ€โ™€๏ธ with veil -๐Ÿ‘ฐโ€โ™€ with veil veil | woman | woman with veil | bride -๐Ÿ‘ฐ๐Ÿปโ€โ™€๏ธ with veil: light skin tone -๐Ÿ‘ฐ๐Ÿปโ€โ™€ with veil: light skin tone light skin tone | veil | woman | woman with veil | woman with veil: light skin tone | bride -๐Ÿ‘ฐ๐Ÿผโ€โ™€๏ธ with veil: medium-light skin tone -๐Ÿ‘ฐ๐Ÿผโ€โ™€ with veil: medium-light skin tone medium-light skin tone | veil | woman | woman with veil | woman with veil: medium-light skin tone | bride -๐Ÿ‘ฐ๐Ÿฝโ€โ™€๏ธ with veil: medium skin tone -๐Ÿ‘ฐ๐Ÿฝโ€โ™€ with veil: medium skin tone medium skin tone | veil | woman | woman with veil | woman with veil: medium skin tone | bride -๐Ÿ‘ฐ๐Ÿพโ€โ™€๏ธ with veil: medium-dark skin tone -๐Ÿ‘ฐ๐Ÿพโ€โ™€ with veil: medium-dark skin tone medium-dark skin tone | veil | woman | woman with veil | woman with veil: medium-dark skin tone | bride -๐Ÿ‘ฐ๐Ÿฟโ€โ™€๏ธ with veil: dark skin tone -๐Ÿ‘ฐ๐Ÿฟโ€โ™€ with veil: dark skin tone dark skin tone | veil | woman | woman with veil | woman with veil: dark skin tone | bride -๐Ÿคฐ woman pregnant | woman -๐Ÿคฐ๐Ÿป woman: light skin tone light skin tone | pregnant | pregnant woman: light skin tone | woman -๐Ÿคฐ๐Ÿผ woman: medium-light skin tone medium-light skin tone | pregnant | pregnant woman: medium-light skin tone | woman -๐Ÿคฐ๐Ÿฝ woman: medium skin tone medium skin tone | pregnant | pregnant woman: medium skin tone | woman -๐Ÿคฐ๐Ÿพ woman: medium-dark skin tone medium-dark skin tone | pregnant | pregnant woman: medium-dark skin tone | woman -๐Ÿคฐ๐Ÿฟ woman: dark skin tone dark skin tone | pregnant | pregnant woman: dark skin tone | woman -๐Ÿซƒ man belly | bloated | full | pregnant | pregnant man -๐Ÿซƒ๐Ÿป man: light skin tone belly | bloated | full | light skin tone | pregnant | pregnant man | pregnant man: light skin tone -๐Ÿซƒ๐Ÿผ man: medium-light skin tone belly | bloated | full | medium-light skin tone | pregnant | pregnant man | pregnant man: medium-light skin tone -๐Ÿซƒ๐Ÿฝ man: medium skin tone belly | bloated | full | medium skin tone | pregnant | pregnant man | pregnant man: medium skin tone -๐Ÿซƒ๐Ÿพ man: medium-dark skin tone belly | bloated | full | medium-dark skin tone | pregnant | pregnant man | pregnant man: medium-dark skin tone -๐Ÿซƒ๐Ÿฟ man: dark skin tone belly | bloated | dark skin tone | full | pregnant | pregnant man | pregnant man: dark skin tone -๐Ÿซ„ person belly | bloated | full | pregnant | pregnant person -๐Ÿซ„๐Ÿป person: light skin tone belly | bloated | full | light skin tone | pregnant | pregnant person | pregnant person: light skin tone -๐Ÿซ„๐Ÿผ person: medium-light skin tone belly | bloated | full | medium-light skin tone | pregnant | pregnant person | pregnant person: medium-light skin tone -๐Ÿซ„๐Ÿฝ person: medium skin tone belly | bloated | full | medium skin tone | pregnant | pregnant person | pregnant person: medium skin tone -๐Ÿซ„๐Ÿพ person: medium-dark skin tone belly | bloated | full | medium-dark skin tone | pregnant | pregnant person | pregnant person: medium-dark skin tone -๐Ÿซ„๐Ÿฟ person: dark skin tone belly | bloated | dark skin tone | full | pregnant | pregnant person | pregnant person: dark skin tone -๐Ÿคฑ baby | breast | breast-feeding | nursing -๐Ÿคฑ๐Ÿป light skin tone baby | breast | breast-feeding | breast-feeding: light skin tone | light skin tone | nursing -๐Ÿคฑ๐Ÿผ medium-light skin tone baby | breast | breast-feeding | breast-feeding: medium-light skin tone | medium-light skin tone | nursing -๐Ÿคฑ๐Ÿฝ medium skin tone baby | breast | breast-feeding | breast-feeding: medium skin tone | medium skin tone | nursing -๐Ÿคฑ๐Ÿพ medium-dark skin tone baby | breast | breast-feeding | breast-feeding: medium-dark skin tone | medium-dark skin tone | nursing -๐Ÿคฑ๐Ÿฟ dark skin tone baby | breast | breast-feeding | breast-feeding: dark skin tone | dark skin tone | nursing -๐Ÿ‘ฉโ€๐Ÿผ feeding baby baby | feeding | nursing | woman -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿผ feeding baby: light skin tone baby | feeding | light skin tone | nursing | woman | woman feeding baby: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿผ feeding baby: medium-light skin tone baby | feeding | medium-light skin tone | nursing | woman | woman feeding baby: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿผ feeding baby: medium skin tone baby | feeding | medium skin tone | nursing | woman | woman feeding baby: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿผ feeding baby: medium-dark skin tone baby | feeding | medium-dark skin tone | nursing | woman | woman feeding baby: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿผ feeding baby: dark skin tone baby | dark skin tone | feeding | nursing | woman | woman feeding baby: dark skin tone -๐Ÿ‘จโ€๐Ÿผ feeding baby baby | feeding | man | nursing -๐Ÿ‘จ๐Ÿปโ€๐Ÿผ feeding baby: light skin tone baby | feeding | light skin tone | man | man feeding baby: light skin tone | nursing -๐Ÿ‘จ๐Ÿผโ€๐Ÿผ feeding baby: medium-light skin tone baby | feeding | man | man feeding baby: medium-light skin tone | medium-light skin tone | nursing -๐Ÿ‘จ๐Ÿฝโ€๐Ÿผ feeding baby: medium skin tone baby | feeding | man | man feeding baby: medium skin tone | medium skin tone | nursing -๐Ÿ‘จ๐Ÿพโ€๐Ÿผ feeding baby: medium-dark skin tone baby | feeding | man | man feeding baby: medium-dark skin tone | medium-dark skin tone | nursing -๐Ÿ‘จ๐Ÿฟโ€๐Ÿผ feeding baby: dark skin tone baby | dark skin tone | feeding | man | man feeding baby: dark skin tone | nursing -๐Ÿง‘โ€๐Ÿผ feeding baby baby | feeding | nursing | person -๐Ÿง‘๐Ÿปโ€๐Ÿผ feeding baby: light skin tone baby | feeding | light skin tone | nursing | person | person feeding baby: light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿผ feeding baby: medium-light skin tone baby | feeding | medium-light skin tone | nursing | person | person feeding baby: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿผ feeding baby: medium skin tone baby | feeding | medium skin tone | nursing | person | person feeding baby: medium skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿผ feeding baby: medium-dark skin tone baby | feeding | medium-dark skin tone | nursing | person | person feeding baby: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿผ feeding baby: dark skin tone baby | dark skin tone | feeding | nursing | person | person feeding baby: dark skin tone -๐Ÿ‘ผ angel angel | baby | face | fairy tale | fantasy -๐Ÿ‘ผ๐Ÿป angel: light skin tone angel | baby | baby angel: light skin tone | face | fairy tale | fantasy | light skin tone -๐Ÿ‘ผ๐Ÿผ angel: medium-light skin tone angel | baby | baby angel: medium-light skin tone | face | fairy tale | fantasy | medium-light skin tone -๐Ÿ‘ผ๐Ÿฝ angel: medium skin tone angel | baby | baby angel: medium skin tone | face | fairy tale | fantasy | medium skin tone -๐Ÿ‘ผ๐Ÿพ angel: medium-dark skin tone angel | baby | baby angel: medium-dark skin tone | face | fairy tale | fantasy | medium-dark skin tone -๐Ÿ‘ผ๐Ÿฟ angel: dark skin tone angel | baby | baby angel: dark skin tone | dark skin tone | face | fairy tale | fantasy -๐ŸŽ… Claus celebration | Christmas | claus | father | santa | Father Christmas | Santa | Santa Claus | Claus | Father -๐ŸŽ…๐Ÿป Claus: light skin tone celebration | Christmas | claus | father | light skin tone | santa | Santa Claus: light skin tone | Father Christmas | Santa | Santa Claus | Santa: light skin tone | Claus | Father -๐ŸŽ…๐Ÿผ Claus: medium-light skin tone celebration | Christmas | claus | father | medium-light skin tone | santa | Santa Claus: medium-light skin tone | Father Christmas | Santa | Santa Claus | Santa: medium-light skin tone | Claus | Father -๐ŸŽ…๐Ÿฝ Claus: medium skin tone celebration | Christmas | claus | father | medium skin tone | santa | Santa Claus: medium skin tone | Father Christmas | Santa | Santa Claus | Santa: medium skin tone | Claus | Father -๐ŸŽ…๐Ÿพ Claus: medium-dark skin tone celebration | Christmas | claus | father | medium-dark skin tone | santa | Santa Claus: medium-dark skin tone | Father Christmas | Santa | Santa Claus | Santa: medium-dark skin tone | Claus | Father -๐ŸŽ…๐Ÿฟ Claus: dark skin tone celebration | Christmas | claus | dark skin tone | father | santa | Santa Claus: dark skin tone | Father Christmas | Santa | Santa Claus | Santa: dark skin tone | Claus | Father -๐Ÿคถ Claus celebration | Christmas | claus | mother | Mrs. | Mrs Claus | Mrs Santa Claus | Mrs. Claus | Claus | Mother | Mrs -๐Ÿคถ๐Ÿป Claus: light skin tone celebration | Christmas | claus | light skin tone | mother | Mrs. | Mrs. Claus: light skin tone | Mrs Claus | Mrs Santa Claus | Mrs. Claus | Claus | Mother | Mrs | Mrs Claus: light skin tone -๐Ÿคถ๐Ÿผ Claus: medium-light skin tone celebration | Christmas | claus | medium-light skin tone | mother | Mrs. | Mrs. Claus: medium-light skin tone | Mrs Claus | Mrs Santa Claus | Mrs. Claus | Claus | Mother | Mrs | Mrs Claus: medium-light skin tone -๐Ÿคถ๐Ÿฝ Claus: medium skin tone celebration | Christmas | claus | medium skin tone | mother | Mrs. | Mrs. Claus: medium skin tone | Mrs Claus | Mrs Santa Claus | Mrs. Claus | Claus | Mother | Mrs | Mrs Claus: medium skin tone -๐Ÿคถ๐Ÿพ Claus: medium-dark skin tone celebration | Christmas | claus | medium-dark skin tone | mother | Mrs. | Mrs. Claus: medium-dark skin tone | Mrs Claus | Mrs Santa Claus | Mrs. Claus | Claus | Mother | Mrs | Mrs Claus: medium-dark skin tone -๐Ÿคถ๐Ÿฟ Claus: dark skin tone celebration | Christmas | claus | dark skin tone | mother | Mrs. | Mrs. Claus: dark skin tone | Mrs Claus | Mrs Santa Claus | Mrs. Claus | Claus | Mother | Mrs | Mrs Claus: dark skin tone -๐Ÿง‘โ€๐ŸŽ„ claus christmas | claus | mx claus | Christmas | Claus | Mx. Claus -๐Ÿง‘๐Ÿปโ€๐ŸŽ„ claus: light skin tone christmas | claus | light skin tone | mx claus | mx claus: light skin tone | Christmas | Claus | Mx. Claus | Mx. Claus: light skin tone -๐Ÿง‘๐Ÿผโ€๐ŸŽ„ claus: medium-light skin tone christmas | claus | medium-light skin tone | mx claus | mx claus: medium-light skin tone | Christmas | Claus | Mx. Claus | Mx. Claus: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐ŸŽ„ claus: medium skin tone christmas | claus | medium skin tone | mx claus | mx claus: medium skin tone | Christmas | Claus | Mx. Claus | Mx. Claus: medium skin tone -๐Ÿง‘๐Ÿพโ€๐ŸŽ„ claus: medium-dark skin tone christmas | claus | medium-dark skin tone | mx claus | mx claus: medium-dark skin tone | Christmas | Claus | Mx. Claus | Mx. Claus: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐ŸŽ„ claus: dark skin tone christmas | claus | dark skin tone | mx claus | mx claus: dark skin tone | Christmas | Claus | Mx. Claus | Mx. Claus: dark skin tone -๐Ÿฆธ good | hero | heroine | superhero | superpower -๐Ÿฆธ๐Ÿป light skin tone good | hero | heroine | light skin tone | superhero | superhero: light skin tone | superpower -๐Ÿฆธ๐Ÿผ medium-light skin tone good | hero | heroine | medium-light skin tone | superhero | superhero: medium-light skin tone | superpower -๐Ÿฆธ๐Ÿฝ medium skin tone good | hero | heroine | medium skin tone | superhero | superhero: medium skin tone | superpower -๐Ÿฆธ๐Ÿพ medium-dark skin tone good | hero | heroine | medium-dark skin tone | superhero | superhero: medium-dark skin tone | superpower -๐Ÿฆธ๐Ÿฟ dark skin tone dark skin tone | good | hero | heroine | superhero | superhero: dark skin tone | superpower -๐Ÿฆธโ€โ™‚๏ธ superhero -๐Ÿฆธโ€โ™‚ superhero good | hero | man | man superhero | superpower -๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ superhero: light skin tone -๐Ÿฆธ๐Ÿปโ€โ™‚ superhero: light skin tone good | hero | light skin tone | man | man superhero | man superhero: light skin tone | superpower -๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ superhero: medium-light skin tone -๐Ÿฆธ๐Ÿผโ€โ™‚ superhero: medium-light skin tone good | hero | man | man superhero | man superhero: medium-light skin tone | medium-light skin tone | superpower -๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ superhero: medium skin tone -๐Ÿฆธ๐Ÿฝโ€โ™‚ superhero: medium skin tone good | hero | man | man superhero | man superhero: medium skin tone | medium skin tone | superpower -๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ superhero: medium-dark skin tone -๐Ÿฆธ๐Ÿพโ€โ™‚ superhero: medium-dark skin tone good | hero | man | man superhero | man superhero: medium-dark skin tone | medium-dark skin tone | superpower -๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ superhero: dark skin tone -๐Ÿฆธ๐Ÿฟโ€โ™‚ superhero: dark skin tone dark skin tone | good | hero | man | man superhero | man superhero: dark skin tone | superpower -๐Ÿฆธโ€โ™€ superhero good | hero | heroine | superpower | woman | woman superhero -๐Ÿฆธ๐Ÿปโ€โ™€๏ธ superhero: light skin tone -๐Ÿฆธ๐Ÿปโ€โ™€ superhero: light skin tone good | hero | heroine | light skin tone | superpower | woman | woman superhero | woman superhero: light skin tone -๐Ÿฆธ๐Ÿผโ€โ™€๏ธ superhero: medium-light skin tone -๐Ÿฆธ๐Ÿผโ€โ™€ superhero: medium-light skin tone good | hero | heroine | medium-light skin tone | superpower | woman | woman superhero | woman superhero: medium-light skin tone -๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ superhero: medium skin tone -๐Ÿฆธ๐Ÿฝโ€โ™€ superhero: medium skin tone good | hero | heroine | medium skin tone | superpower | woman | woman superhero | woman superhero: medium skin tone -๐Ÿฆธ๐Ÿพโ€โ™€๏ธ superhero: medium-dark skin tone -๐Ÿฆธ๐Ÿพโ€โ™€ superhero: medium-dark skin tone good | hero | heroine | medium-dark skin tone | superpower | woman | woman superhero | woman superhero: medium-dark skin tone -๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ superhero: dark skin tone -๐Ÿฆธ๐Ÿฟโ€โ™€ superhero: dark skin tone dark skin tone | good | hero | heroine | superpower | woman | woman superhero | woman superhero: dark skin tone -๐Ÿฆน criminal | evil | superpower | supervillain | villain -๐Ÿฆน๐Ÿป light skin tone criminal | evil | light skin tone | superpower | supervillain | supervillain: light skin tone | villain -๐Ÿฆน๐Ÿผ medium-light skin tone criminal | evil | medium-light skin tone | superpower | supervillain | supervillain: medium-light skin tone | villain -๐Ÿฆน๐Ÿฝ medium skin tone criminal | evil | medium skin tone | superpower | supervillain | supervillain: medium skin tone | villain -๐Ÿฆน๐Ÿพ medium-dark skin tone criminal | evil | medium-dark skin tone | superpower | supervillain | supervillain: medium-dark skin tone | villain -๐Ÿฆน๐Ÿฟ dark skin tone criminal | dark skin tone | evil | superpower | supervillain | supervillain: dark skin tone | villain -๐Ÿฆนโ€โ™‚๏ธ supervillain -๐Ÿฆนโ€โ™‚ supervillain criminal | evil | man | man supervillain | superpower | villain -๐Ÿฆน๐Ÿปโ€โ™‚๏ธ supervillain: light skin tone -๐Ÿฆน๐Ÿปโ€โ™‚ supervillain: light skin tone criminal | evil | light skin tone | man | man supervillain | man supervillain: light skin tone | superpower | villain -๐Ÿฆน๐Ÿผโ€โ™‚๏ธ supervillain: medium-light skin tone -๐Ÿฆน๐Ÿผโ€โ™‚ supervillain: medium-light skin tone criminal | evil | man | man supervillain | man supervillain: medium-light skin tone | medium-light skin tone | superpower | villain -๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ supervillain: medium skin tone -๐Ÿฆน๐Ÿฝโ€โ™‚ supervillain: medium skin tone criminal | evil | man | man supervillain | man supervillain: medium skin tone | medium skin tone | superpower | villain -๐Ÿฆน๐Ÿพโ€โ™‚๏ธ supervillain: medium-dark skin tone -๐Ÿฆน๐Ÿพโ€โ™‚ supervillain: medium-dark skin tone criminal | evil | man | man supervillain | man supervillain: medium-dark skin tone | medium-dark skin tone | superpower | villain -๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ supervillain: dark skin tone -๐Ÿฆน๐Ÿฟโ€โ™‚ supervillain: dark skin tone criminal | dark skin tone | evil | man | man supervillain | man supervillain: dark skin tone | superpower | villain -๐Ÿฆนโ€โ™€๏ธ supervillain -๐Ÿฆนโ€โ™€ supervillain criminal | evil | superpower | villain | woman | woman supervillain -๐Ÿฆน๐Ÿปโ€โ™€๏ธ supervillain: light skin tone -๐Ÿฆน๐Ÿปโ€โ™€ supervillain: light skin tone criminal | evil | light skin tone | superpower | villain | woman | woman supervillain | woman supervillain: light skin tone -๐Ÿฆน๐Ÿผโ€โ™€๏ธ supervillain: medium-light skin tone -๐Ÿฆน๐Ÿผโ€โ™€ supervillain: medium-light skin tone criminal | evil | medium-light skin tone | superpower | villain | woman | woman supervillain | woman supervillain: medium-light skin tone -๐Ÿฆน๐Ÿฝโ€โ™€๏ธ supervillain: medium skin tone -๐Ÿฆน๐Ÿฝโ€โ™€ supervillain: medium skin tone criminal | evil | medium skin tone | superpower | villain | woman | woman supervillain | woman supervillain: medium skin tone -๐Ÿฆน๐Ÿพโ€โ™€๏ธ supervillain: medium-dark skin tone -๐Ÿฆน๐Ÿพโ€โ™€ supervillain: medium-dark skin tone criminal | evil | medium-dark skin tone | superpower | villain | woman | woman supervillain | woman supervillain: medium-dark skin tone -๐Ÿฆน๐Ÿฟโ€โ™€๏ธ supervillain: dark skin tone -๐Ÿฆน๐Ÿฟโ€โ™€ supervillain: dark skin tone criminal | dark skin tone | evil | superpower | villain | woman | woman supervillain | woman supervillain: dark skin tone -๐Ÿง™ mage | sorcerer | sorceress | witch | wizard -๐Ÿง™๐Ÿป light skin tone light skin tone | mage | mage: light skin tone | sorcerer | sorceress | witch | wizard -๐Ÿง™๐Ÿผ medium-light skin tone mage | mage: medium-light skin tone | medium-light skin tone | sorcerer | sorceress | witch | wizard -๐Ÿง™๐Ÿฝ medium skin tone mage | mage: medium skin tone | medium skin tone | sorcerer | sorceress | witch | wizard -๐Ÿง™๐Ÿพ medium-dark skin tone mage | mage: medium-dark skin tone | medium-dark skin tone | sorcerer | sorceress | witch | wizard -๐Ÿง™๐Ÿฟ dark skin tone dark skin tone | mage | mage: dark skin tone | sorcerer | sorceress | witch | wizard -๐Ÿง™โ€โ™‚๏ธ mage -๐Ÿง™โ€โ™‚ mage man mage | sorcerer | wizard -๐Ÿง™๐Ÿปโ€โ™‚๏ธ mage: light skin tone -๐Ÿง™๐Ÿปโ€โ™‚ mage: light skin tone light skin tone | man mage | man mage: light skin tone | sorcerer | wizard -๐Ÿง™๐Ÿผโ€โ™‚๏ธ mage: medium-light skin tone -๐Ÿง™๐Ÿผโ€โ™‚ mage: medium-light skin tone man mage | man mage: medium-light skin tone | medium-light skin tone | sorcerer | wizard -๐Ÿง™๐Ÿฝโ€โ™‚๏ธ mage: medium skin tone -๐Ÿง™๐Ÿฝโ€โ™‚ mage: medium skin tone man mage | man mage: medium skin tone | medium skin tone | sorcerer | wizard -๐Ÿง™๐Ÿพโ€โ™‚๏ธ mage: medium-dark skin tone -๐Ÿง™๐Ÿพโ€โ™‚ mage: medium-dark skin tone man mage | man mage: medium-dark skin tone | medium-dark skin tone | sorcerer | wizard -๐Ÿง™๐Ÿฟโ€โ™‚๏ธ mage: dark skin tone -๐Ÿง™๐Ÿฟโ€โ™‚ mage: dark skin tone dark skin tone | man mage | man mage: dark skin tone | sorcerer | wizard -๐Ÿง™โ€โ™€ mage sorceress | witch | woman mage -๐Ÿง™๐Ÿปโ€โ™€๏ธ mage: light skin tone -๐Ÿง™๐Ÿปโ€โ™€ mage: light skin tone light skin tone | sorceress | witch | woman mage | woman mage: light skin tone -๐Ÿง™๐Ÿผโ€โ™€๏ธ mage: medium-light skin tone -๐Ÿง™๐Ÿผโ€โ™€ mage: medium-light skin tone medium-light skin tone | sorceress | witch | woman mage | woman mage: medium-light skin tone -๐Ÿง™๐Ÿฝโ€โ™€๏ธ mage: medium skin tone -๐Ÿง™๐Ÿฝโ€โ™€ mage: medium skin tone medium skin tone | sorceress | witch | woman mage | woman mage: medium skin tone -๐Ÿง™๐Ÿพโ€โ™€๏ธ mage: medium-dark skin tone -๐Ÿง™๐Ÿพโ€โ™€ mage: medium-dark skin tone medium-dark skin tone | sorceress | witch | woman mage | woman mage: medium-dark skin tone -๐Ÿง™๐Ÿฟโ€โ™€๏ธ mage: dark skin tone -๐Ÿง™๐Ÿฟโ€โ™€ mage: dark skin tone dark skin tone | sorceress | witch | woman mage | woman mage: dark skin tone -๐Ÿงš fairy | Oberon | Puck | Titania -๐Ÿงš๐Ÿป light skin tone fairy | fairy: light skin tone | light skin tone | Oberon | Puck | Titania -๐Ÿงš๐Ÿผ medium-light skin tone fairy | fairy: medium-light skin tone | medium-light skin tone | Oberon | Puck | Titania -๐Ÿงš๐Ÿฝ medium skin tone fairy | fairy: medium skin tone | medium skin tone | Oberon | Puck | Titania -๐Ÿงš๐Ÿพ medium-dark skin tone fairy | fairy: medium-dark skin tone | medium-dark skin tone | Oberon | Puck | Titania -๐Ÿงš๐Ÿฟ dark skin tone dark skin tone | fairy | fairy: dark skin tone | Oberon | Puck | Titania -๐Ÿงšโ€โ™‚๏ธ fairy -๐Ÿงšโ€โ™‚ fairy man fairy | Oberon | Puck -๐Ÿงš๐Ÿปโ€โ™‚๏ธ fairy: light skin tone -๐Ÿงš๐Ÿปโ€โ™‚ fairy: light skin tone light skin tone | man fairy | man fairy: light skin tone | Oberon | Puck -๐Ÿงš๐Ÿผโ€โ™‚๏ธ fairy: medium-light skin tone -๐Ÿงš๐Ÿผโ€โ™‚ fairy: medium-light skin tone man fairy | man fairy: medium-light skin tone | medium-light skin tone | Oberon | Puck -๐Ÿงš๐Ÿฝโ€โ™‚๏ธ fairy: medium skin tone -๐Ÿงš๐Ÿฝโ€โ™‚ fairy: medium skin tone man fairy | man fairy: medium skin tone | medium skin tone | Oberon | Puck -๐Ÿงš๐Ÿพโ€โ™‚๏ธ fairy: medium-dark skin tone -๐Ÿงš๐Ÿพโ€โ™‚ fairy: medium-dark skin tone man fairy | man fairy: medium-dark skin tone | medium-dark skin tone | Oberon | Puck -๐Ÿงš๐Ÿฟโ€โ™‚๏ธ fairy: dark skin tone -๐Ÿงš๐Ÿฟโ€โ™‚ fairy: dark skin tone dark skin tone | man fairy | man fairy: dark skin tone | Oberon | Puck -๐Ÿงšโ€โ™€ fairy Titania | woman fairy -๐Ÿงš๐Ÿปโ€โ™€๏ธ fairy: light skin tone -๐Ÿงš๐Ÿปโ€โ™€ fairy: light skin tone light skin tone | Titania | woman fairy | woman fairy: light skin tone -๐Ÿงš๐Ÿผโ€โ™€๏ธ fairy: medium-light skin tone -๐Ÿงš๐Ÿผโ€โ™€ fairy: medium-light skin tone medium-light skin tone | Titania | woman fairy | woman fairy: medium-light skin tone -๐Ÿงš๐Ÿฝโ€โ™€๏ธ fairy: medium skin tone -๐Ÿงš๐Ÿฝโ€โ™€ fairy: medium skin tone medium skin tone | Titania | woman fairy | woman fairy: medium skin tone -๐Ÿงš๐Ÿพโ€โ™€๏ธ fairy: medium-dark skin tone -๐Ÿงš๐Ÿพโ€โ™€ fairy: medium-dark skin tone medium-dark skin tone | Titania | woman fairy | woman fairy: medium-dark skin tone -๐Ÿงš๐Ÿฟโ€โ™€๏ธ fairy: dark skin tone -๐Ÿงš๐Ÿฟโ€โ™€ fairy: dark skin tone dark skin tone | Titania | woman fairy | woman fairy: dark skin tone -๐Ÿง› Dracula | undead | vampire -๐Ÿง›๐Ÿป light skin tone Dracula | light skin tone | undead | vampire | vampire: light skin tone -๐Ÿง›๐Ÿผ medium-light skin tone Dracula | medium-light skin tone | undead | vampire | vampire: medium-light skin tone -๐Ÿง›๐Ÿฝ medium skin tone Dracula | medium skin tone | undead | vampire | vampire: medium skin tone -๐Ÿง›๐Ÿพ medium-dark skin tone Dracula | medium-dark skin tone | undead | vampire | vampire: medium-dark skin tone -๐Ÿง›๐Ÿฟ dark skin tone dark skin tone | Dracula | undead | vampire | vampire: dark skin tone -๐Ÿง›โ€โ™‚๏ธ vampire -๐Ÿง›โ€โ™‚ vampire Dracula | man vampire | undead -๐Ÿง›๐Ÿปโ€โ™‚๏ธ vampire: light skin tone -๐Ÿง›๐Ÿปโ€โ™‚ vampire: light skin tone Dracula | light skin tone | man vampire | man vampire: light skin tone | undead -๐Ÿง›๐Ÿผโ€โ™‚๏ธ vampire: medium-light skin tone -๐Ÿง›๐Ÿผโ€โ™‚ vampire: medium-light skin tone Dracula | man vampire | man vampire: medium-light skin tone | medium-light skin tone | undead -๐Ÿง›๐Ÿฝโ€โ™‚๏ธ vampire: medium skin tone -๐Ÿง›๐Ÿฝโ€โ™‚ vampire: medium skin tone Dracula | man vampire | man vampire: medium skin tone | medium skin tone | undead -๐Ÿง›๐Ÿพโ€โ™‚๏ธ vampire: medium-dark skin tone -๐Ÿง›๐Ÿพโ€โ™‚ vampire: medium-dark skin tone Dracula | man vampire | man vampire: medium-dark skin tone | medium-dark skin tone | undead -๐Ÿง›๐Ÿฟโ€โ™‚๏ธ vampire: dark skin tone -๐Ÿง›๐Ÿฟโ€โ™‚ vampire: dark skin tone dark skin tone | Dracula | man vampire | man vampire: dark skin tone | undead -๐Ÿง›โ€โ™€ vampire undead | woman vampire -๐Ÿง›๐Ÿปโ€โ™€๏ธ vampire: light skin tone -๐Ÿง›๐Ÿปโ€โ™€ vampire: light skin tone light skin tone | undead | woman vampire | woman vampire: light skin tone -๐Ÿง›๐Ÿผโ€โ™€๏ธ vampire: medium-light skin tone -๐Ÿง›๐Ÿผโ€โ™€ vampire: medium-light skin tone medium-light skin tone | undead | woman vampire | woman vampire: medium-light skin tone -๐Ÿง›๐Ÿฝโ€โ™€๏ธ vampire: medium skin tone -๐Ÿง›๐Ÿฝโ€โ™€ vampire: medium skin tone medium skin tone | undead | woman vampire | woman vampire: medium skin tone -๐Ÿง›๐Ÿพโ€โ™€๏ธ vampire: medium-dark skin tone -๐Ÿง›๐Ÿพโ€โ™€ vampire: medium-dark skin tone medium-dark skin tone | undead | woman vampire | woman vampire: medium-dark skin tone -๐Ÿง›๐Ÿฟโ€โ™€๏ธ vampire: dark skin tone -๐Ÿง›๐Ÿฟโ€โ™€ vampire: dark skin tone dark skin tone | undead | woman vampire | woman vampire: dark skin tone -๐Ÿงœ mermaid | merman | merperson | merwoman -๐Ÿงœ๐Ÿป light skin tone light skin tone | mermaid | merman | merperson | merperson: light skin tone | merwoman -๐Ÿงœ๐Ÿผ medium-light skin tone medium-light skin tone | mermaid | merman | merperson | merperson: medium-light skin tone | merwoman -๐Ÿงœ๐Ÿฝ medium skin tone medium skin tone | mermaid | merman | merperson | merperson: medium skin tone | merwoman -๐Ÿงœ๐Ÿพ medium-dark skin tone medium-dark skin tone | mermaid | merman | merperson | merperson: medium-dark skin tone | merwoman -๐Ÿงœ๐Ÿฟ dark skin tone dark skin tone | mermaid | merman | merperson | merperson: dark skin tone | merwoman -๐Ÿงœโ€โ™‚ merman | Triton -๐Ÿงœ๐Ÿปโ€โ™‚๏ธ light skin tone -๐Ÿงœ๐Ÿปโ€โ™‚ light skin tone light skin tone | merman | merman: light skin tone | Triton -๐Ÿงœ๐Ÿผโ€โ™‚๏ธ medium-light skin tone -๐Ÿงœ๐Ÿผโ€โ™‚ medium-light skin tone medium-light skin tone | merman | merman: medium-light skin tone | Triton -๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ medium skin tone -๐Ÿงœ๐Ÿฝโ€โ™‚ medium skin tone medium skin tone | merman | merman: medium skin tone | Triton -๐Ÿงœ๐Ÿพโ€โ™‚๏ธ medium-dark skin tone -๐Ÿงœ๐Ÿพโ€โ™‚ medium-dark skin tone medium-dark skin tone | merman | merman: medium-dark skin tone | Triton -๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ dark skin tone -๐Ÿงœ๐Ÿฟโ€โ™‚ dark skin tone dark skin tone | merman | merman: dark skin tone | Triton -๐Ÿงœโ€โ™€ mermaid | merwoman -๐Ÿงœ๐Ÿปโ€โ™€๏ธ light skin tone -๐Ÿงœ๐Ÿปโ€โ™€ light skin tone light skin tone | mermaid | mermaid: light skin tone | merwoman -๐Ÿงœ๐Ÿผโ€โ™€๏ธ medium-light skin tone -๐Ÿงœ๐Ÿผโ€โ™€ medium-light skin tone medium-light skin tone | mermaid | mermaid: medium-light skin tone | merwoman -๐Ÿงœ๐Ÿฝโ€โ™€๏ธ medium skin tone -๐Ÿงœ๐Ÿฝโ€โ™€ medium skin tone medium skin tone | mermaid | mermaid: medium skin tone | merwoman -๐Ÿงœ๐Ÿพโ€โ™€๏ธ medium-dark skin tone -๐Ÿงœ๐Ÿพโ€โ™€ medium-dark skin tone medium-dark skin tone | mermaid | mermaid: medium-dark skin tone | merwoman -๐Ÿงœ๐Ÿฟโ€โ™€๏ธ dark skin tone -๐Ÿงœ๐Ÿฟโ€โ™€ dark skin tone dark skin tone | mermaid | mermaid: dark skin tone | merwoman -๐Ÿง elf | magical -๐Ÿง๐Ÿป light skin tone elf | elf: light skin tone | light skin tone | magical -๐Ÿง๐Ÿผ medium-light skin tone elf | elf: medium-light skin tone | magical | medium-light skin tone -๐Ÿง๐Ÿฝ medium skin tone elf | elf: medium skin tone | magical | medium skin tone -๐Ÿง๐Ÿพ medium-dark skin tone elf | elf: medium-dark skin tone | magical | medium-dark skin tone -๐Ÿง๐Ÿฟ dark skin tone dark skin tone | elf | elf: dark skin tone | magical -๐Ÿงโ€โ™‚๏ธ elf -๐Ÿงโ€โ™‚ elf magical | man elf -๐Ÿง๐Ÿปโ€โ™‚๏ธ elf: light skin tone -๐Ÿง๐Ÿปโ€โ™‚ elf: light skin tone light skin tone | magical | man elf | man elf: light skin tone -๐Ÿง๐Ÿผโ€โ™‚๏ธ elf: medium-light skin tone -๐Ÿง๐Ÿผโ€โ™‚ elf: medium-light skin tone magical | man elf | man elf: medium-light skin tone | medium-light skin tone -๐Ÿง๐Ÿฝโ€โ™‚๏ธ elf: medium skin tone -๐Ÿง๐Ÿฝโ€โ™‚ elf: medium skin tone magical | man elf | man elf: medium skin tone | medium skin tone -๐Ÿง๐Ÿพโ€โ™‚๏ธ elf: medium-dark skin tone -๐Ÿง๐Ÿพโ€โ™‚ elf: medium-dark skin tone magical | man elf | man elf: medium-dark skin tone | medium-dark skin tone -๐Ÿง๐Ÿฟโ€โ™‚๏ธ elf: dark skin tone -๐Ÿง๐Ÿฟโ€โ™‚ elf: dark skin tone dark skin tone | magical | man elf | man elf: dark skin tone -๐Ÿงโ€โ™€ elf magical | woman elf -๐Ÿง๐Ÿปโ€โ™€๏ธ elf: light skin tone -๐Ÿง๐Ÿปโ€โ™€ elf: light skin tone light skin tone | magical | woman elf | woman elf: light skin tone -๐Ÿง๐Ÿผโ€โ™€๏ธ elf: medium-light skin tone -๐Ÿง๐Ÿผโ€โ™€ elf: medium-light skin tone magical | medium-light skin tone | woman elf | woman elf: medium-light skin tone -๐Ÿง๐Ÿฝโ€โ™€๏ธ elf: medium skin tone -๐Ÿง๐Ÿฝโ€โ™€ elf: medium skin tone magical | medium skin tone | woman elf | woman elf: medium skin tone -๐Ÿง๐Ÿพโ€โ™€๏ธ elf: medium-dark skin tone -๐Ÿง๐Ÿพโ€โ™€ elf: medium-dark skin tone magical | medium-dark skin tone | woman elf | woman elf: medium-dark skin tone -๐Ÿง๐Ÿฟโ€โ™€๏ธ elf: dark skin tone -๐Ÿง๐Ÿฟโ€โ™€ elf: dark skin tone dark skin tone | magical | woman elf | woman elf: dark skin tone -๐Ÿงž djinn | genie -๐Ÿงžโ€โ™‚๏ธ genie -๐Ÿงžโ€โ™‚ genie djinn | man genie -๐Ÿงžโ€โ™€๏ธ genie -๐Ÿงžโ€โ™€ genie djinn | woman genie -๐ŸงŸ undead | walking dead | zombie -๐ŸงŸโ€โ™‚๏ธ zombie -๐ŸงŸโ€โ™‚ zombie man zombie | undead | walking dead -๐ŸงŸโ€โ™€๏ธ zombie -๐ŸงŸโ€โ™€ zombie undead | walking dead | woman zombie -๐ŸงŒ fairy tale | fantasy | monster | troll -๐Ÿ’† getting massage face | massage | person getting massage | salon -๐Ÿ’†๐Ÿป getting massage: light skin tone face | light skin tone | massage | person getting massage | person getting massage: light skin tone | salon -๐Ÿ’†๐Ÿผ getting massage: medium-light skin tone face | massage | medium-light skin tone | person getting massage | person getting massage: medium-light skin tone | salon -๐Ÿ’†๐Ÿฝ getting massage: medium skin tone face | massage | medium skin tone | person getting massage | person getting massage: medium skin tone | salon -๐Ÿ’†๐Ÿพ getting massage: medium-dark skin tone face | massage | medium-dark skin tone | person getting massage | person getting massage: medium-dark skin tone | salon -๐Ÿ’†๐Ÿฟ getting massage: dark skin tone dark skin tone | face | massage | person getting massage | person getting massage: dark skin tone | salon -๐Ÿ’†โ€โ™‚๏ธ getting massage -๐Ÿ’†โ€โ™‚ getting massage face | man | man getting massage | massage -๐Ÿ’†๐Ÿปโ€โ™‚๏ธ getting massage: light skin tone -๐Ÿ’†๐Ÿปโ€โ™‚ getting massage: light skin tone face | light skin tone | man | man getting massage | man getting massage: light skin tone | massage -๐Ÿ’†๐Ÿผโ€โ™‚๏ธ getting massage: medium-light skin tone -๐Ÿ’†๐Ÿผโ€โ™‚ getting massage: medium-light skin tone face | man | man getting massage | man getting massage: medium-light skin tone | massage | medium-light skin tone -๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ getting massage: medium skin tone -๐Ÿ’†๐Ÿฝโ€โ™‚ getting massage: medium skin tone face | man | man getting massage | man getting massage: medium skin tone | massage | medium skin tone -๐Ÿ’†๐Ÿพโ€โ™‚๏ธ getting massage: medium-dark skin tone -๐Ÿ’†๐Ÿพโ€โ™‚ getting massage: medium-dark skin tone face | man | man getting massage | man getting massage: medium-dark skin tone | massage | medium-dark skin tone -๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ getting massage: dark skin tone -๐Ÿ’†๐Ÿฟโ€โ™‚ getting massage: dark skin tone dark skin tone | face | man | man getting massage | man getting massage: dark skin tone | massage -๐Ÿ’†โ€โ™€๏ธ getting massage -๐Ÿ’†โ€โ™€ getting massage face | massage | woman | woman getting massage -๐Ÿ’†๐Ÿปโ€โ™€๏ธ getting massage: light skin tone -๐Ÿ’†๐Ÿปโ€โ™€ getting massage: light skin tone face | light skin tone | massage | woman | woman getting massage | woman getting massage: light skin tone -๐Ÿ’†๐Ÿผโ€โ™€๏ธ getting massage: medium-light skin tone -๐Ÿ’†๐Ÿผโ€โ™€ getting massage: medium-light skin tone face | massage | medium-light skin tone | woman | woman getting massage | woman getting massage: medium-light skin tone -๐Ÿ’†๐Ÿฝโ€โ™€๏ธ getting massage: medium skin tone -๐Ÿ’†๐Ÿฝโ€โ™€ getting massage: medium skin tone face | massage | medium skin tone | woman | woman getting massage | woman getting massage: medium skin tone -๐Ÿ’†๐Ÿพโ€โ™€๏ธ getting massage: medium-dark skin tone -๐Ÿ’†๐Ÿพโ€โ™€ getting massage: medium-dark skin tone face | massage | medium-dark skin tone | woman | woman getting massage | woman getting massage: medium-dark skin tone -๐Ÿ’†๐Ÿฟโ€โ™€๏ธ getting massage: dark skin tone -๐Ÿ’†๐Ÿฟโ€โ™€ getting massage: dark skin tone dark skin tone | face | massage | woman | woman getting massage | woman getting massage: dark skin tone -๐Ÿ’‡ getting haircut barber | beauty | haircut | parlor | person getting haircut | parlour | salon -๐Ÿ’‡๐Ÿป getting haircut: light skin tone barber | beauty | haircut | light skin tone | parlor | person getting haircut | person getting haircut: light skin tone | parlour | salon -๐Ÿ’‡๐Ÿผ getting haircut: medium-light skin tone barber | beauty | haircut | medium-light skin tone | parlor | person getting haircut | person getting haircut: medium-light skin tone | parlour | salon -๐Ÿ’‡๐Ÿฝ getting haircut: medium skin tone barber | beauty | haircut | medium skin tone | parlor | person getting haircut | person getting haircut: medium skin tone | parlour | salon -๐Ÿ’‡๐Ÿพ getting haircut: medium-dark skin tone barber | beauty | haircut | medium-dark skin tone | parlor | person getting haircut | person getting haircut: medium-dark skin tone | parlour | salon -๐Ÿ’‡๐Ÿฟ getting haircut: dark skin tone barber | beauty | dark skin tone | haircut | parlor | person getting haircut | person getting haircut: dark skin tone | parlour | salon -๐Ÿ’‡โ€โ™‚๏ธ getting haircut -๐Ÿ’‡โ€โ™‚ getting haircut haircut | man | man getting haircut | hairdresser -๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ getting haircut: light skin tone -๐Ÿ’‡๐Ÿปโ€โ™‚ getting haircut: light skin tone haircut | light skin tone | man | man getting haircut | man getting haircut: light skin tone | hairdresser -๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ getting haircut: medium-light skin tone -๐Ÿ’‡๐Ÿผโ€โ™‚ getting haircut: medium-light skin tone haircut | man | man getting haircut | man getting haircut: medium-light skin tone | medium-light skin tone | hairdresser -๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ getting haircut: medium skin tone -๐Ÿ’‡๐Ÿฝโ€โ™‚ getting haircut: medium skin tone haircut | man | man getting haircut | man getting haircut: medium skin tone | medium skin tone | hairdresser -๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ getting haircut: medium-dark skin tone -๐Ÿ’‡๐Ÿพโ€โ™‚ getting haircut: medium-dark skin tone haircut | man | man getting haircut | man getting haircut: medium-dark skin tone | medium-dark skin tone | hairdresser -๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ getting haircut: dark skin tone -๐Ÿ’‡๐Ÿฟโ€โ™‚ getting haircut: dark skin tone dark skin tone | haircut | man | man getting haircut | man getting haircut: dark skin tone | hairdresser -๐Ÿ’‡โ€โ™€๏ธ getting haircut -๐Ÿ’‡โ€โ™€ getting haircut haircut | woman | woman getting haircut | hairdresser -๐Ÿ’‡๐Ÿปโ€โ™€๏ธ getting haircut: light skin tone -๐Ÿ’‡๐Ÿปโ€โ™€ getting haircut: light skin tone haircut | light skin tone | woman | woman getting haircut | woman getting haircut: light skin tone | hairdresser -๐Ÿ’‡๐Ÿผโ€โ™€๏ธ getting haircut: medium-light skin tone -๐Ÿ’‡๐Ÿผโ€โ™€ getting haircut: medium-light skin tone haircut | medium-light skin tone | woman | woman getting haircut | woman getting haircut: medium-light skin tone | hairdresser -๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ getting haircut: medium skin tone -๐Ÿ’‡๐Ÿฝโ€โ™€ getting haircut: medium skin tone haircut | medium skin tone | woman | woman getting haircut | woman getting haircut: medium skin tone | hairdresser -๐Ÿ’‡๐Ÿพโ€โ™€๏ธ getting haircut: medium-dark skin tone -๐Ÿ’‡๐Ÿพโ€โ™€ getting haircut: medium-dark skin tone haircut | medium-dark skin tone | woman | woman getting haircut | woman getting haircut: medium-dark skin tone | hairdresser -๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ getting haircut: dark skin tone -๐Ÿ’‡๐Ÿฟโ€โ™€ getting haircut: dark skin tone dark skin tone | haircut | woman | woman getting haircut | woman getting haircut: dark skin tone | hairdresser -๐Ÿšถ walking hike | person walking | walk | walking -๐Ÿšถ๐Ÿป walking: light skin tone hike | light skin tone | person walking | person walking: light skin tone | walk | walking -๐Ÿšถ๐Ÿผ walking: medium-light skin tone hike | medium-light skin tone | person walking | person walking: medium-light skin tone | walk | walking -๐Ÿšถ๐Ÿฝ walking: medium skin tone hike | medium skin tone | person walking | person walking: medium skin tone | walk | walking -๐Ÿšถ๐Ÿพ walking: medium-dark skin tone hike | medium-dark skin tone | person walking | person walking: medium-dark skin tone | walk | walking -๐Ÿšถ๐Ÿฟ walking: dark skin tone dark skin tone | hike | person walking | person walking: dark skin tone | walk | walking -๐Ÿšถโ€โ™‚๏ธ walking -๐Ÿšถโ€โ™‚ walking hike | man | man walking | walk -๐Ÿšถ๐Ÿปโ€โ™‚๏ธ walking: light skin tone -๐Ÿšถ๐Ÿปโ€โ™‚ walking: light skin tone hike | light skin tone | man | man walking | man walking: light skin tone | walk -๐Ÿšถ๐Ÿผโ€โ™‚๏ธ walking: medium-light skin tone -๐Ÿšถ๐Ÿผโ€โ™‚ walking: medium-light skin tone hike | man | man walking | man walking: medium-light skin tone | medium-light skin tone | walk -๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ walking: medium skin tone -๐Ÿšถ๐Ÿฝโ€โ™‚ walking: medium skin tone hike | man | man walking | man walking: medium skin tone | medium skin tone | walk -๐Ÿšถ๐Ÿพโ€โ™‚๏ธ walking: medium-dark skin tone -๐Ÿšถ๐Ÿพโ€โ™‚ walking: medium-dark skin tone hike | man | man walking | man walking: medium-dark skin tone | medium-dark skin tone | walk -๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ walking: dark skin tone -๐Ÿšถ๐Ÿฟโ€โ™‚ walking: dark skin tone dark skin tone | hike | man | man walking | man walking: dark skin tone | walk -๐Ÿšถโ€โ™€๏ธ walking -๐Ÿšถโ€โ™€ walking hike | walk | woman | woman walking -๐Ÿšถ๐Ÿปโ€โ™€๏ธ walking: light skin tone -๐Ÿšถ๐Ÿปโ€โ™€ walking: light skin tone hike | light skin tone | walk | woman | woman walking | woman walking: light skin tone -๐Ÿšถ๐Ÿผโ€โ™€๏ธ walking: medium-light skin tone -๐Ÿšถ๐Ÿผโ€โ™€ walking: medium-light skin tone hike | medium-light skin tone | walk | woman | woman walking | woman walking: medium-light skin tone -๐Ÿšถ๐Ÿฝโ€โ™€๏ธ walking: medium skin tone -๐Ÿšถ๐Ÿฝโ€โ™€ walking: medium skin tone hike | medium skin tone | walk | woman | woman walking | woman walking: medium skin tone -๐Ÿšถ๐Ÿพโ€โ™€๏ธ walking: medium-dark skin tone -๐Ÿšถ๐Ÿพโ€โ™€ walking: medium-dark skin tone hike | medium-dark skin tone | walk | woman | woman walking | woman walking: medium-dark skin tone -๐Ÿšถ๐Ÿฟโ€โ™€๏ธ walking: dark skin tone -๐Ÿšถ๐Ÿฟโ€โ™€ walking: dark skin tone dark skin tone | hike | walk | woman | woman walking | woman walking: dark skin tone -๐Ÿšถโ€โžก๏ธ walking facing right -๐Ÿšถโ€โžก walking facing right hike | person walking | person walking facing right | walk | walking -๐Ÿšถ๐Ÿปโ€โžก๏ธ walking facing right: light skin tone -๐Ÿšถ๐Ÿปโ€โžก walking facing right: light skin tone hike | person walking | person walking facing right | walk | walking -๐Ÿšถ๐Ÿผโ€โžก๏ธ walking facing right: medium-light skin tone -๐Ÿšถ๐Ÿผโ€โžก walking facing right: medium-light skin tone hike | person walking | person walking facing right | walk | walking -๐Ÿšถ๐Ÿฝโ€โžก๏ธ walking facing right: medium skin tone -๐Ÿšถ๐Ÿฝโ€โžก walking facing right: medium skin tone hike | person walking | person walking facing right | walk | walking -๐Ÿšถ๐Ÿพโ€โžก๏ธ walking facing right: medium-dark skin tone -๐Ÿšถ๐Ÿพโ€โžก walking facing right: medium-dark skin tone hike | person walking | person walking facing right | walk | walking -๐Ÿšถ๐Ÿฟโ€โžก๏ธ walking facing right: dark skin tone -๐Ÿšถ๐Ÿฟโ€โžก walking facing right: dark skin tone hike | person walking | person walking facing right | walk | walking -๐Ÿšถโ€โ™€๏ธโ€โžก๏ธ walking facing right -๐Ÿšถโ€โ™€โ€โžก walking facing right hike | walk | woman | woman walking | woman walking facing right -๐Ÿšถ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ walking facing right: light skin tone -๐Ÿšถ๐Ÿปโ€โ™€โ€โžก walking facing right: light skin tone hike | walk | woman | woman walking | woman walking facing right -๐Ÿšถ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ walking facing right: medium-light skin tone -๐Ÿšถ๐Ÿผโ€โ™€โ€โžก walking facing right: medium-light skin tone hike | walk | woman | woman walking | woman walking facing right -๐Ÿšถ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ walking facing right: medium skin tone -๐Ÿšถ๐Ÿฝโ€โ™€โ€โžก walking facing right: medium skin tone hike | walk | woman | woman walking | woman walking facing right -๐Ÿšถ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ walking facing right: medium-dark skin tone -๐Ÿšถ๐Ÿพโ€โ™€โ€โžก walking facing right: medium-dark skin tone hike | walk | woman | woman walking | woman walking facing right -๐Ÿšถ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ walking facing right: dark skin tone -๐Ÿšถ๐Ÿฟโ€โ™€โ€โžก walking facing right: dark skin tone hike | walk | woman | woman walking | woman walking facing right -๐Ÿšถโ€โ™‚๏ธโ€โžก๏ธ walking facing right -๐Ÿšถโ€โ™‚โ€โžก walking facing right hike | man | man walking | man walking facing right | walk -๐Ÿšถ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ walking facing right: light skin tone -๐Ÿšถ๐Ÿปโ€โ™‚โ€โžก walking facing right: light skin tone hike | man | man walking | man walking facing right | walk -๐Ÿšถ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ walking facing right: medium-light skin tone -๐Ÿšถ๐Ÿผโ€โ™‚โ€โžก walking facing right: medium-light skin tone hike | man | man walking | man walking facing right | walk -๐Ÿšถ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ walking facing right: medium skin tone -๐Ÿšถ๐Ÿฝโ€โ™‚โ€โžก walking facing right: medium skin tone hike | man | man walking | man walking facing right | walk -๐Ÿšถ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ walking facing right: medium-dark skin tone -๐Ÿšถ๐Ÿพโ€โ™‚โ€โžก walking facing right: medium-dark skin tone hike | man | man walking | man walking facing right | walk -๐Ÿšถ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ walking facing right: dark skin tone -๐Ÿšถ๐Ÿฟโ€โ™‚โ€โžก walking facing right: dark skin tone hike | man | man walking | man walking facing right | walk -๐Ÿง standing person standing | stand | standing -๐Ÿง๐Ÿป standing: light skin tone light skin tone | person standing | person standing: light skin tone | stand | standing -๐Ÿง๐Ÿผ standing: medium-light skin tone medium-light skin tone | person standing | person standing: medium-light skin tone | stand | standing -๐Ÿง๐Ÿฝ standing: medium skin tone medium skin tone | person standing | person standing: medium skin tone | stand | standing -๐Ÿง๐Ÿพ standing: medium-dark skin tone medium-dark skin tone | person standing | person standing: medium-dark skin tone | stand | standing -๐Ÿง๐Ÿฟ standing: dark skin tone dark skin tone | person standing | person standing: dark skin tone | stand | standing -๐Ÿงโ€โ™‚๏ธ standing -๐Ÿงโ€โ™‚ standing man | standing -๐Ÿง๐Ÿปโ€โ™‚๏ธ standing: light skin tone -๐Ÿง๐Ÿปโ€โ™‚ standing: light skin tone light skin tone | man | man standing: light skin tone | standing -๐Ÿง๐Ÿผโ€โ™‚๏ธ standing: medium-light skin tone -๐Ÿง๐Ÿผโ€โ™‚ standing: medium-light skin tone man | man standing: medium-light skin tone | medium-light skin tone | standing -๐Ÿง๐Ÿฝโ€โ™‚๏ธ standing: medium skin tone -๐Ÿง๐Ÿฝโ€โ™‚ standing: medium skin tone man | man standing: medium skin tone | medium skin tone | standing -๐Ÿง๐Ÿพโ€โ™‚๏ธ standing: medium-dark skin tone -๐Ÿง๐Ÿพโ€โ™‚ standing: medium-dark skin tone man | man standing: medium-dark skin tone | medium-dark skin tone | standing -๐Ÿง๐Ÿฟโ€โ™‚๏ธ standing: dark skin tone -๐Ÿง๐Ÿฟโ€โ™‚ standing: dark skin tone dark skin tone | man | man standing: dark skin tone | standing -๐Ÿงโ€โ™€๏ธ standing -๐Ÿงโ€โ™€ standing standing | woman -๐Ÿง๐Ÿปโ€โ™€๏ธ standing: light skin tone -๐Ÿง๐Ÿปโ€โ™€ standing: light skin tone light skin tone | standing | woman | woman standing: light skin tone -๐Ÿง๐Ÿผโ€โ™€๏ธ standing: medium-light skin tone -๐Ÿง๐Ÿผโ€โ™€ standing: medium-light skin tone medium-light skin tone | standing | woman | woman standing: medium-light skin tone -๐Ÿง๐Ÿฝโ€โ™€๏ธ standing: medium skin tone -๐Ÿง๐Ÿฝโ€โ™€ standing: medium skin tone medium skin tone | standing | woman | woman standing: medium skin tone -๐Ÿง๐Ÿพโ€โ™€๏ธ standing: medium-dark skin tone -๐Ÿง๐Ÿพโ€โ™€ standing: medium-dark skin tone medium-dark skin tone | standing | woman | woman standing: medium-dark skin tone -๐Ÿง๐Ÿฟโ€โ™€๏ธ standing: dark skin tone -๐Ÿง๐Ÿฟโ€โ™€ standing: dark skin tone dark skin tone | standing | woman | woman standing: dark skin tone -๐ŸงŽ kneeling kneel | kneeling | person kneeling -๐ŸงŽ๐Ÿป kneeling: light skin tone kneel | kneeling | light skin tone | person kneeling | person kneeling: light skin tone -๐ŸงŽ๐Ÿผ kneeling: medium-light skin tone kneel | kneeling | medium-light skin tone | person kneeling | person kneeling: medium-light skin tone -๐ŸงŽ๐Ÿฝ kneeling: medium skin tone kneel | kneeling | medium skin tone | person kneeling | person kneeling: medium skin tone -๐ŸงŽ๐Ÿพ kneeling: medium-dark skin tone kneel | kneeling | medium-dark skin tone | person kneeling | person kneeling: medium-dark skin tone -๐ŸงŽ๐Ÿฟ kneeling: dark skin tone dark skin tone | kneel | kneeling | person kneeling | person kneeling: dark skin tone -๐ŸงŽโ€โ™‚๏ธ kneeling -๐ŸงŽโ€โ™‚ kneeling kneeling | man -๐ŸงŽ๐Ÿปโ€โ™‚๏ธ kneeling: light skin tone -๐ŸงŽ๐Ÿปโ€โ™‚ kneeling: light skin tone kneeling | light skin tone | man | man kneeling: light skin tone -๐ŸงŽ๐Ÿผโ€โ™‚๏ธ kneeling: medium-light skin tone -๐ŸงŽ๐Ÿผโ€โ™‚ kneeling: medium-light skin tone kneeling | man | man kneeling: medium-light skin tone | medium-light skin tone -๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ kneeling: medium skin tone -๐ŸงŽ๐Ÿฝโ€โ™‚ kneeling: medium skin tone kneeling | man | man kneeling: medium skin tone | medium skin tone -๐ŸงŽ๐Ÿพโ€โ™‚๏ธ kneeling: medium-dark skin tone -๐ŸงŽ๐Ÿพโ€โ™‚ kneeling: medium-dark skin tone kneeling | man | man kneeling: medium-dark skin tone | medium-dark skin tone -๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ kneeling: dark skin tone -๐ŸงŽ๐Ÿฟโ€โ™‚ kneeling: dark skin tone dark skin tone | kneeling | man | man kneeling: dark skin tone -๐ŸงŽโ€โ™€๏ธ kneeling -๐ŸงŽโ€โ™€ kneeling kneeling | woman -๐ŸงŽ๐Ÿปโ€โ™€๏ธ kneeling: light skin tone -๐ŸงŽ๐Ÿปโ€โ™€ kneeling: light skin tone kneeling | light skin tone | woman | woman kneeling: light skin tone -๐ŸงŽ๐Ÿผโ€โ™€๏ธ kneeling: medium-light skin tone -๐ŸงŽ๐Ÿผโ€โ™€ kneeling: medium-light skin tone kneeling | medium-light skin tone | woman | woman kneeling: medium-light skin tone -๐ŸงŽ๐Ÿฝโ€โ™€๏ธ kneeling: medium skin tone -๐ŸงŽ๐Ÿฝโ€โ™€ kneeling: medium skin tone kneeling | medium skin tone | woman | woman kneeling: medium skin tone -๐ŸงŽ๐Ÿพโ€โ™€๏ธ kneeling: medium-dark skin tone -๐ŸงŽ๐Ÿพโ€โ™€ kneeling: medium-dark skin tone kneeling | medium-dark skin tone | woman | woman kneeling: medium-dark skin tone -๐ŸงŽ๐Ÿฟโ€โ™€๏ธ kneeling: dark skin tone -๐ŸงŽ๐Ÿฟโ€โ™€ kneeling: dark skin tone dark skin tone | kneeling | woman | woman kneeling: dark skin tone -๐ŸงŽโ€โžก๏ธ kneeling facing right -๐ŸงŽโ€โžก kneeling facing right kneel | kneeling | person kneeling | person kneeling facing right -๐ŸงŽ๐Ÿปโ€โžก๏ธ kneeling facing right: light skin tone -๐ŸงŽ๐Ÿปโ€โžก kneeling facing right: light skin tone kneel | kneeling | person kneeling | person kneeling facing right -๐ŸงŽ๐Ÿผโ€โžก๏ธ kneeling facing right: medium-light skin tone -๐ŸงŽ๐Ÿผโ€โžก kneeling facing right: medium-light skin tone kneel | kneeling | person kneeling | person kneeling facing right -๐ŸงŽ๐Ÿฝโ€โžก๏ธ kneeling facing right: medium skin tone -๐ŸงŽ๐Ÿฝโ€โžก kneeling facing right: medium skin tone kneel | kneeling | person kneeling | person kneeling facing right -๐ŸงŽ๐Ÿพโ€โžก๏ธ kneeling facing right: medium-dark skin tone -๐ŸงŽ๐Ÿพโ€โžก kneeling facing right: medium-dark skin tone kneel | kneeling | person kneeling | person kneeling facing right -๐ŸงŽ๐Ÿฟโ€โžก๏ธ kneeling facing right: dark skin tone -๐ŸงŽ๐Ÿฟโ€โžก kneeling facing right: dark skin tone kneel | kneeling | person kneeling | person kneeling facing right -๐ŸงŽโ€โ™€๏ธโ€โžก๏ธ kneeling facing right -๐ŸงŽโ€โ™€โ€โžก kneeling facing right kneeling | woman | woman kneeling facing right -๐ŸงŽ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ kneeling facing right: light skin tone -๐ŸงŽ๐Ÿปโ€โ™€โ€โžก kneeling facing right: light skin tone kneeling | woman | woman kneeling facing right -๐ŸงŽ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ kneeling facing right: medium-light skin tone -๐ŸงŽ๐Ÿผโ€โ™€โ€โžก kneeling facing right: medium-light skin tone kneeling | woman | woman kneeling facing right -๐ŸงŽ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ kneeling facing right: medium skin tone -๐ŸงŽ๐Ÿฝโ€โ™€โ€โžก kneeling facing right: medium skin tone kneeling | woman | woman kneeling facing right -๐ŸงŽ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ kneeling facing right: medium-dark skin tone -๐ŸงŽ๐Ÿพโ€โ™€โ€โžก kneeling facing right: medium-dark skin tone kneeling | woman | woman kneeling facing right -๐ŸงŽ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ kneeling facing right: dark skin tone -๐ŸงŽ๐Ÿฟโ€โ™€โ€โžก kneeling facing right: dark skin tone kneeling | woman | woman kneeling facing right -๐ŸงŽโ€โ™‚๏ธโ€โžก๏ธ kneeling facing right -๐ŸงŽโ€โ™‚โ€โžก kneeling facing right kneeling | man | man kneeling facing right -๐ŸงŽ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ kneeling facing right: light skin tone -๐ŸงŽ๐Ÿปโ€โ™‚โ€โžก kneeling facing right: light skin tone kneeling | man | man kneeling facing right -๐ŸงŽ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ kneeling facing right: medium-light skin tone -๐ŸงŽ๐Ÿผโ€โ™‚โ€โžก kneeling facing right: medium-light skin tone kneeling | man | man kneeling facing right -๐ŸงŽ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ kneeling facing right: medium skin tone -๐ŸงŽ๐Ÿฝโ€โ™‚โ€โžก kneeling facing right: medium skin tone kneeling | man | man kneeling facing right -๐ŸงŽ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ kneeling facing right: medium-dark skin tone -๐ŸงŽ๐Ÿพโ€โ™‚โ€โžก kneeling facing right: medium-dark skin tone kneeling | man | man kneeling facing right -๐ŸงŽ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ kneeling facing right: dark skin tone -๐ŸงŽ๐Ÿฟโ€โ™‚โ€โžก kneeling facing right: dark skin tone kneeling | man | man kneeling facing right -๐Ÿง‘โ€๐Ÿฆฏ with white cane accessibility | blind | person with white cane | person with guide cane | person with long mobility cane -๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ with white cane: light skin tone accessibility | blind | light skin tone | person with white cane | person with white cane: light skin tone | person with guide cane | person with guide cane: light skin tone | person with long mobility cane | person with long mobility cane: light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ with white cane: medium-light skin tone accessibility | blind | medium-light skin tone | person with white cane | person with white cane: medium-light skin tone | person with guide cane | person with guide cane: medium-light skin tone | person with long mobility cane | person with long mobility cane: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ with white cane: medium skin tone accessibility | blind | medium skin tone | person with white cane | person with white cane: medium skin tone | person with guide cane | person with guide cane: medium skin tone | person with long mobility cane | person with long mobility cane: medium skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ with white cane: medium-dark skin tone accessibility | blind | medium-dark skin tone | person with white cane | person with white cane: medium-dark skin tone | person with guide cane | person with guide cane: medium-dark skin tone | person with long mobility cane | person with long mobility cane: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ with white cane: dark skin tone accessibility | blind | dark skin tone | person with white cane | person with white cane: dark skin tone | person with guide cane | person with guide cane: dark skin tone | person with long mobility cane | person with long mobility cane: dark skin tone -๐Ÿง‘โ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right -๐Ÿง‘โ€๐Ÿฆฏโ€โžก with white cane facing right accessibility | blind | person with white cane | person with white cane facing right | person with guide cane | person with guide cane facing right | person with long mobility cane | person with long mobility cane facing right -๐Ÿง‘๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: light skin tone -๐Ÿง‘๐Ÿปโ€๐Ÿฆฏโ€โžก with white cane facing right: light skin tone accessibility | blind | person with white cane | person with white cane facing right | person with guide cane | person with guide cane facing right | person with long mobility cane | person with long mobility cane facing right -๐Ÿง‘๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium-light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿฆฏโ€โžก with white cane facing right: medium-light skin tone accessibility | blind | person with white cane | person with white cane facing right | person with guide cane | person with guide cane facing right | person with long mobility cane | person with long mobility cane facing right -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏโ€โžก with white cane facing right: medium skin tone accessibility | blind | person with white cane | person with white cane facing right | person with guide cane | person with guide cane facing right | person with long mobility cane | person with long mobility cane facing right -๐Ÿง‘๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium-dark skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿฆฏโ€โžก with white cane facing right: medium-dark skin tone accessibility | blind | person with white cane | person with white cane facing right | person with guide cane | person with guide cane facing right | person with long mobility cane | person with long mobility cane facing right -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏโ€โžก with white cane facing right: dark skin tone accessibility | blind | person with white cane | person with white cane facing right | person with guide cane | person with guide cane facing right | person with long mobility cane | person with long mobility cane facing right -๐Ÿ‘จโ€๐Ÿฆฏ with white cane accessibility | blind | man | man with white cane | man with guide cane -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ with white cane: light skin tone accessibility | blind | light skin tone | man | man with white cane | man with white cane: light skin tone | man with guide cane | man with guide cane: light skin tone -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ with white cane: medium-light skin tone accessibility | blind | man | man with white cane | man with white cane: medium-light skin tone | medium-light skin tone | man with guide cane | man with guide cane: medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ with white cane: medium skin tone accessibility | blind | man | man with white cane | man with white cane: medium skin tone | medium skin tone | man with guide cane | man with guide cane: medium skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ with white cane: medium-dark skin tone accessibility | blind | man | man with white cane | man with white cane: medium-dark skin tone | medium-dark skin tone | man with guide cane | man with guide cane: medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ with white cane: dark skin tone accessibility | blind | dark skin tone | man | man with white cane | man with white cane: dark skin tone | man with guide cane | man with guide cane: dark skin tone -๐Ÿ‘จโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right -๐Ÿ‘จโ€๐Ÿฆฏโ€โžก with white cane facing right accessibility | blind | man | man with white cane | man with white cane facing right | man with guide cane | man with guide cane facing right -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: light skin tone -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏโ€โžก with white cane facing right: light skin tone accessibility | blind | man | man with white cane | man with white cane facing right | man with guide cane | man with guide cane facing right -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏโ€โžก with white cane facing right: medium-light skin tone accessibility | blind | man | man with white cane | man with white cane facing right | man with guide cane | man with guide cane facing right -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏโ€โžก with white cane facing right: medium skin tone accessibility | blind | man | man with white cane | man with white cane facing right | man with guide cane | man with guide cane facing right -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏโ€โžก with white cane facing right: medium-dark skin tone accessibility | blind | man | man with white cane | man with white cane facing right | man with guide cane | man with guide cane facing right -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏโ€โžก with white cane facing right: dark skin tone accessibility | blind | man | man with white cane | man with white cane facing right | man with guide cane | man with guide cane facing right -๐Ÿ‘ฉโ€๐Ÿฆฏ with white cane accessibility | blind | woman | woman with white cane | woman with guide cane -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ with white cane: light skin tone accessibility | blind | light skin tone | woman | woman with white cane | woman with white cane: light skin tone | woman with guide cane | woman with guide cane: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ with white cane: medium-light skin tone accessibility | blind | medium-light skin tone | woman | woman with white cane | woman with white cane: medium-light skin tone | woman with guide cane | woman with guide cane: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ with white cane: medium skin tone accessibility | blind | medium skin tone | woman | woman with white cane | woman with white cane: medium skin tone | woman with guide cane | woman with guide cane: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ with white cane: medium-dark skin tone accessibility | blind | medium-dark skin tone | woman | woman with white cane | woman with white cane: medium-dark skin tone | woman with guide cane | woman with guide cane: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ with white cane: dark skin tone accessibility | blind | dark skin tone | woman | woman with white cane | woman with white cane: dark skin tone | woman with guide cane | woman with guide cane: dark skin tone -๐Ÿ‘ฉโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right -๐Ÿ‘ฉโ€๐Ÿฆฏโ€โžก with white cane facing right accessibility | blind | woman | woman with white cane | woman with white cane facing right | woman with guide cane | woman with guide cane facing right -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: light skin tone -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏโ€โžก with white cane facing right: light skin tone accessibility | blind | woman | woman with white cane | woman with white cane facing right | woman with guide cane | woman with guide cane facing right -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏโ€โžก with white cane facing right: medium-light skin tone accessibility | blind | woman | woman with white cane | woman with white cane facing right | woman with guide cane | woman with guide cane facing right -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏโ€โžก with white cane facing right: medium skin tone accessibility | blind | woman | woman with white cane | woman with white cane facing right | woman with guide cane | woman with guide cane facing right -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏโ€โžก with white cane facing right: medium-dark skin tone accessibility | blind | woman | woman with white cane | woman with white cane facing right | woman with guide cane | woman with guide cane facing right -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ with white cane facing right: dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏโ€โžก with white cane facing right: dark skin tone accessibility | blind | woman | woman with white cane | woman with white cane facing right | woman with guide cane | woman with guide cane facing right -๐Ÿง‘โ€๐Ÿฆผ in motorized wheelchair accessibility | person in motorized wheelchair | wheelchair | person in powered wheelchair | electric wheelchair | person in motorised wheelchair -๐Ÿง‘๐Ÿปโ€๐Ÿฆผ in motorized wheelchair: light skin tone accessibility | light skin tone | person in motorized wheelchair | person in motorized wheelchair: light skin tone | wheelchair | person in powered wheelchair | person in powered wheelchair: light skin tone | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair: light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿฆผ in motorized wheelchair: medium-light skin tone accessibility | medium-light skin tone | person in motorized wheelchair | person in motorized wheelchair: medium-light skin tone | wheelchair | person in powered wheelchair | person in powered wheelchair: medium-light skin tone | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair: medium-light skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ in motorized wheelchair: medium skin tone accessibility | medium skin tone | person in motorized wheelchair | person in motorized wheelchair: medium skin tone | wheelchair | person in powered wheelchair | person in powered wheelchair: medium skin tone | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair: medium skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿฆผ in motorized wheelchair: medium-dark skin tone accessibility | medium-dark skin tone | person in motorized wheelchair | person in motorized wheelchair: medium-dark skin tone | wheelchair | person in powered wheelchair | person in powered wheelchair: medium-dark skin tone | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair: medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ in motorized wheelchair: dark skin tone accessibility | dark skin tone | person in motorized wheelchair | person in motorized wheelchair: dark skin tone | wheelchair | person in powered wheelchair | person in powered wheelchair: dark skin tone | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair: dark skin tone -๐Ÿง‘โ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right -๐Ÿง‘โ€๐Ÿฆผโ€โžก in motorized wheelchair facing right accessibility | person in motorized wheelchair | person in motorized wheelchair facing right | wheelchair | person in powered wheelchair | person in powered wheelchair facing right | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair facing right -๐Ÿง‘๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: light skin tone -๐Ÿง‘๐Ÿปโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: light skin tone accessibility | person in motorized wheelchair | person in motorized wheelchair facing right | wheelchair | person in powered wheelchair | person in powered wheelchair facing right | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair facing right -๐Ÿง‘๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium-light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium-light skin tone accessibility | person in motorized wheelchair | person in motorized wheelchair facing right | wheelchair | person in powered wheelchair | person in powered wheelchair facing right | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair facing right -๐Ÿง‘๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium skin tone accessibility | person in motorized wheelchair | person in motorized wheelchair facing right | wheelchair | person in powered wheelchair | person in powered wheelchair facing right | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair facing right -๐Ÿง‘๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium-dark skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium-dark skin tone accessibility | person in motorized wheelchair | person in motorized wheelchair facing right | wheelchair | person in powered wheelchair | person in powered wheelchair facing right | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair facing right -๐Ÿง‘๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: dark skin tone accessibility | person in motorized wheelchair | person in motorized wheelchair facing right | wheelchair | person in powered wheelchair | person in powered wheelchair facing right | electric wheelchair | person in motorised wheelchair | person in motorised wheelchair facing right -๐Ÿ‘จโ€๐Ÿฆผ in motorized wheelchair accessibility | man | man in motorized wheelchair | wheelchair | man in powered wheelchair | electric wheelchair | man in motorised wheelchair -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ in motorized wheelchair: light skin tone accessibility | light skin tone | man | man in motorized wheelchair | man in motorized wheelchair: light skin tone | wheelchair | man in powered wheelchair | man in powered wheelchair: light skin tone | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair: light skin tone -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ in motorized wheelchair: medium-light skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair: medium-light skin tone | medium-light skin tone | wheelchair | man in powered wheelchair | man in powered wheelchair: medium-light skin tone | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair: medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ in motorized wheelchair: medium skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair: medium skin tone | medium skin tone | wheelchair | man in powered wheelchair | man in powered wheelchair: medium skin tone | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair: medium skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ in motorized wheelchair: medium-dark skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair: medium-dark skin tone | medium-dark skin tone | wheelchair | man in powered wheelchair | man in powered wheelchair: medium-dark skin tone | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair: medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ in motorized wheelchair: dark skin tone accessibility | dark skin tone | man | man in motorized wheelchair | man in motorized wheelchair: dark skin tone | wheelchair | man in powered wheelchair | man in powered wheelchair: dark skin tone | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair: dark skin tone -๐Ÿ‘จโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right -๐Ÿ‘จโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right accessibility | man | man in motorized wheelchair | man in motorized wheelchair facing right | wheelchair | man in powered wheelchair | man in powered wheelchair facing right | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair facing right -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: light skin tone -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: light skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair facing right | wheelchair | man in powered wheelchair | man in powered wheelchair facing right | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair facing right -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium-light skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair facing right | wheelchair | man in powered wheelchair | man in powered wheelchair facing right | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair facing right -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair facing right | wheelchair | man in powered wheelchair | man in powered wheelchair facing right | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair facing right -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium-dark skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair facing right | wheelchair | man in powered wheelchair | man in powered wheelchair facing right | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair facing right -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: dark skin tone accessibility | man | man in motorized wheelchair | man in motorized wheelchair facing right | wheelchair | man in powered wheelchair | man in powered wheelchair facing right | electric wheelchair | man in motorised wheelchair | man in motorised wheelchair facing right -๐Ÿ‘ฉโ€๐Ÿฆผ in motorized wheelchair accessibility | wheelchair | woman | woman in motorized wheelchair | woman in powered wheelchair | electric wheelchair | woman in motorised wheelchair -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ in motorized wheelchair: light skin tone accessibility | light skin tone | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair: light skin tone | woman in powered wheelchair | woman in powered wheelchair: light skin tone | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ in motorized wheelchair: medium-light skin tone accessibility | medium-light skin tone | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair: medium-light skin tone | woman in powered wheelchair | woman in powered wheelchair: medium-light skin tone | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ in motorized wheelchair: medium skin tone accessibility | medium skin tone | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair: medium skin tone | woman in powered wheelchair | woman in powered wheelchair: medium skin tone | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ in motorized wheelchair: medium-dark skin tone accessibility | medium-dark skin tone | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair: medium-dark skin tone | woman in powered wheelchair | woman in powered wheelchair: medium-dark skin tone | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ in motorized wheelchair: dark skin tone accessibility | dark skin tone | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair: dark skin tone | woman in powered wheelchair | woman in powered wheelchair: dark skin tone | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair: dark skin tone -๐Ÿ‘ฉโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right -๐Ÿ‘ฉโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right accessibility | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair facing right | woman in powered wheelchair | woman in powered wheelchair facing right | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair facing right -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: light skin tone -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: light skin tone accessibility | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair facing right | woman in powered wheelchair | woman in powered wheelchair facing right | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair facing right -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium-light skin tone accessibility | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair facing right | woman in powered wheelchair | woman in powered wheelchair facing right | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair facing right -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium skin tone accessibility | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair facing right | woman in powered wheelchair | woman in powered wheelchair facing right | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair facing right -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: medium-dark skin tone accessibility | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair facing right | woman in powered wheelchair | woman in powered wheelchair facing right | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair facing right -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ in motorized wheelchair facing right: dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผโ€โžก in motorized wheelchair facing right: dark skin tone accessibility | wheelchair | woman | woman in motorized wheelchair | woman in motorized wheelchair facing right | woman in powered wheelchair | woman in powered wheelchair facing right | electric wheelchair | woman in motorised wheelchair | woman in motorised wheelchair facing right -๐Ÿง‘โ€๐Ÿฆฝ in manual wheelchair accessibility | person in manual wheelchair | wheelchair -๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ in manual wheelchair: light skin tone accessibility | light skin tone | person in manual wheelchair | person in manual wheelchair: light skin tone | wheelchair -๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ in manual wheelchair: medium-light skin tone accessibility | medium-light skin tone | person in manual wheelchair | person in manual wheelchair: medium-light skin tone | wheelchair -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ in manual wheelchair: medium skin tone accessibility | medium skin tone | person in manual wheelchair | person in manual wheelchair: medium skin tone | wheelchair -๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ in manual wheelchair: medium-dark skin tone accessibility | medium-dark skin tone | person in manual wheelchair | person in manual wheelchair: medium-dark skin tone | wheelchair -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ in manual wheelchair: dark skin tone accessibility | dark skin tone | person in manual wheelchair | person in manual wheelchair: dark skin tone | wheelchair -๐Ÿง‘โ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right -๐Ÿง‘โ€๐Ÿฆฝโ€โžก in manual wheelchair facing right accessibility | person in manual wheelchair | person in manual wheelchair facing right | wheelchair -๐Ÿง‘๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: light skin tone -๐Ÿง‘๐Ÿปโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: light skin tone accessibility | person in manual wheelchair | person in manual wheelchair facing right | wheelchair -๐Ÿง‘๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium-light skin tone -๐Ÿง‘๐Ÿผโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium-light skin tone accessibility | person in manual wheelchair | person in manual wheelchair facing right | wheelchair -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium skin tone -๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium skin tone accessibility | person in manual wheelchair | person in manual wheelchair facing right | wheelchair -๐Ÿง‘๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium-dark skin tone -๐Ÿง‘๐Ÿพโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium-dark skin tone accessibility | person in manual wheelchair | person in manual wheelchair facing right | wheelchair -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: dark skin tone -๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: dark skin tone accessibility | person in manual wheelchair | person in manual wheelchair facing right | wheelchair -๐Ÿ‘จโ€๐Ÿฆฝ in manual wheelchair accessibility | man | man in manual wheelchair | wheelchair -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ in manual wheelchair: light skin tone accessibility | light skin tone | man | man in manual wheelchair | man in manual wheelchair: light skin tone | wheelchair -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ in manual wheelchair: medium-light skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair: medium-light skin tone | medium-light skin tone | wheelchair -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ in manual wheelchair: medium skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair: medium skin tone | medium skin tone | wheelchair -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ in manual wheelchair: medium-dark skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair: medium-dark skin tone | medium-dark skin tone | wheelchair -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ in manual wheelchair: dark skin tone accessibility | dark skin tone | man | man in manual wheelchair | man in manual wheelchair: dark skin tone | wheelchair -๐Ÿ‘จโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right -๐Ÿ‘จโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right accessibility | man | man in manual wheelchair | man in manual wheelchair facing right | wheelchair -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: light skin tone -๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: light skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair facing right | wheelchair -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium-light skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair facing right | wheelchair -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium skin tone -๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair facing right | wheelchair -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium-dark skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair facing right | wheelchair -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: dark skin tone -๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: dark skin tone accessibility | man | man in manual wheelchair | man in manual wheelchair facing right | wheelchair -๐Ÿ‘ฉโ€๐Ÿฆฝ in manual wheelchair accessibility | wheelchair | woman | woman in manual wheelchair -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ in manual wheelchair: light skin tone accessibility | light skin tone | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair: light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ in manual wheelchair: medium-light skin tone accessibility | medium-light skin tone | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair: medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ in manual wheelchair: medium skin tone accessibility | medium skin tone | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair: medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ in manual wheelchair: medium-dark skin tone accessibility | medium-dark skin tone | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ in manual wheelchair: dark skin tone accessibility | dark skin tone | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair: dark skin tone -๐Ÿ‘ฉโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right -๐Ÿ‘ฉโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right accessibility | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair facing right -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: light skin tone -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: light skin tone accessibility | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair facing right -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium-light skin tone accessibility | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair facing right -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium skin tone accessibility | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair facing right -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: medium-dark skin tone accessibility | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair facing right -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ in manual wheelchair facing right: dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝโ€โžก in manual wheelchair facing right: dark skin tone accessibility | wheelchair | woman | woman in manual wheelchair | woman in manual wheelchair facing right -๐Ÿƒ running marathon | person running | running -๐Ÿƒ๐Ÿป running: light skin tone light skin tone | marathon | person running | person running: light skin tone | running -๐Ÿƒ๐Ÿผ running: medium-light skin tone marathon | medium-light skin tone | person running | person running: medium-light skin tone | running -๐Ÿƒ๐Ÿฝ running: medium skin tone marathon | medium skin tone | person running | person running: medium skin tone | running -๐Ÿƒ๐Ÿพ running: medium-dark skin tone marathon | medium-dark skin tone | person running | person running: medium-dark skin tone | running -๐Ÿƒ๐Ÿฟ running: dark skin tone dark skin tone | marathon | person running | person running: dark skin tone | running -๐Ÿƒโ€โ™‚๏ธ running -๐Ÿƒโ€โ™‚ running man | marathon | racing | running -๐Ÿƒ๐Ÿปโ€โ™‚๏ธ running: light skin tone -๐Ÿƒ๐Ÿปโ€โ™‚ running: light skin tone light skin tone | man | man running: light skin tone | marathon | racing | running -๐Ÿƒ๐Ÿผโ€โ™‚๏ธ running: medium-light skin tone -๐Ÿƒ๐Ÿผโ€โ™‚ running: medium-light skin tone man | man running: medium-light skin tone | marathon | medium-light skin tone | racing | running -๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ running: medium skin tone -๐Ÿƒ๐Ÿฝโ€โ™‚ running: medium skin tone man | man running: medium skin tone | marathon | medium skin tone | racing | running -๐Ÿƒ๐Ÿพโ€โ™‚๏ธ running: medium-dark skin tone -๐Ÿƒ๐Ÿพโ€โ™‚ running: medium-dark skin tone man | man running: medium-dark skin tone | marathon | medium-dark skin tone | racing | running -๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ running: dark skin tone -๐Ÿƒ๐Ÿฟโ€โ™‚ running: dark skin tone dark skin tone | man | man running: dark skin tone | marathon | racing | running -๐Ÿƒโ€โ™€๏ธ running -๐Ÿƒโ€โ™€ running marathon | racing | running | woman -๐Ÿƒ๐Ÿปโ€โ™€๏ธ running: light skin tone -๐Ÿƒ๐Ÿปโ€โ™€ running: light skin tone light skin tone | marathon | racing | running | woman | woman running: light skin tone -๐Ÿƒ๐Ÿผโ€โ™€๏ธ running: medium-light skin tone -๐Ÿƒ๐Ÿผโ€โ™€ running: medium-light skin tone marathon | medium-light skin tone | racing | running | woman | woman running: medium-light skin tone -๐Ÿƒ๐Ÿฝโ€โ™€๏ธ running: medium skin tone -๐Ÿƒ๐Ÿฝโ€โ™€ running: medium skin tone marathon | medium skin tone | racing | running | woman | woman running: medium skin tone -๐Ÿƒ๐Ÿพโ€โ™€๏ธ running: medium-dark skin tone -๐Ÿƒ๐Ÿพโ€โ™€ running: medium-dark skin tone marathon | medium-dark skin tone | racing | running | woman | woman running: medium-dark skin tone -๐Ÿƒ๐Ÿฟโ€โ™€๏ธ running: dark skin tone -๐Ÿƒ๐Ÿฟโ€โ™€ running: dark skin tone dark skin tone | marathon | racing | running | woman | woman running: dark skin tone -๐Ÿƒโ€โžก๏ธ running facing right -๐Ÿƒโ€โžก running facing right marathon | person running | person running facing right | running -๐Ÿƒ๐Ÿปโ€โžก๏ธ running facing right: light skin tone -๐Ÿƒ๐Ÿปโ€โžก running facing right: light skin tone marathon | person running | person running facing right | running -๐Ÿƒ๐Ÿผโ€โžก๏ธ running facing right: medium-light skin tone -๐Ÿƒ๐Ÿผโ€โžก running facing right: medium-light skin tone marathon | person running | person running facing right | running -๐Ÿƒ๐Ÿฝโ€โžก๏ธ running facing right: medium skin tone -๐Ÿƒ๐Ÿฝโ€โžก running facing right: medium skin tone marathon | person running | person running facing right | running -๐Ÿƒ๐Ÿพโ€โžก๏ธ running facing right: medium-dark skin tone -๐Ÿƒ๐Ÿพโ€โžก running facing right: medium-dark skin tone marathon | person running | person running facing right | running -๐Ÿƒ๐Ÿฟโ€โžก๏ธ running facing right: dark skin tone -๐Ÿƒ๐Ÿฟโ€โžก running facing right: dark skin tone marathon | person running | person running facing right | running -๐Ÿƒโ€โ™€๏ธโ€โžก๏ธ running facing right -๐Ÿƒโ€โ™€โ€โžก running facing right marathon | racing | running | woman | woman running facing right -๐Ÿƒ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ running facing right: light skin tone -๐Ÿƒ๐Ÿปโ€โ™€โ€โžก running facing right: light skin tone marathon | racing | running | woman | woman running facing right -๐Ÿƒ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ running facing right: medium-light skin tone -๐Ÿƒ๐Ÿผโ€โ™€โ€โžก running facing right: medium-light skin tone marathon | racing | running | woman | woman running facing right -๐Ÿƒ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ running facing right: medium skin tone -๐Ÿƒ๐Ÿฝโ€โ™€โ€โžก running facing right: medium skin tone marathon | racing | running | woman | woman running facing right -๐Ÿƒ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ running facing right: medium-dark skin tone -๐Ÿƒ๐Ÿพโ€โ™€โ€โžก running facing right: medium-dark skin tone marathon | racing | running | woman | woman running facing right -๐Ÿƒ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ running facing right: dark skin tone -๐Ÿƒ๐Ÿฟโ€โ™€โ€โžก running facing right: dark skin tone marathon | racing | running | woman | woman running facing right -๐Ÿƒโ€โ™‚๏ธโ€โžก๏ธ running facing right -๐Ÿƒโ€โ™‚โ€โžก running facing right man | man running facing right | marathon | racing | running -๐Ÿƒ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ running facing right: light skin tone -๐Ÿƒ๐Ÿปโ€โ™‚โ€โžก running facing right: light skin tone man | man running facing right | marathon | racing | running -๐Ÿƒ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ running facing right: medium-light skin tone -๐Ÿƒ๐Ÿผโ€โ™‚โ€โžก running facing right: medium-light skin tone man | man running facing right | marathon | racing | running -๐Ÿƒ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ running facing right: medium skin tone -๐Ÿƒ๐Ÿฝโ€โ™‚โ€โžก running facing right: medium skin tone man | man running facing right | marathon | racing | running -๐Ÿƒ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ running facing right: medium-dark skin tone -๐Ÿƒ๐Ÿพโ€โ™‚โ€โžก running facing right: medium-dark skin tone man | man running facing right | marathon | racing | running -๐Ÿƒ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ running facing right: dark skin tone -๐Ÿƒ๐Ÿฟโ€โ™‚โ€โžก running facing right: dark skin tone man | man running facing right | marathon | racing | running -๐Ÿ’ƒ dancing dance | dancing | woman -๐Ÿ’ƒ๐Ÿป dancing: light skin tone dance | dancing | light skin tone | woman | woman dancing: light skin tone -๐Ÿ’ƒ๐Ÿผ dancing: medium-light skin tone dance | dancing | medium-light skin tone | woman | woman dancing: medium-light skin tone -๐Ÿ’ƒ๐Ÿฝ dancing: medium skin tone dance | dancing | medium skin tone | woman | woman dancing: medium skin tone -๐Ÿ’ƒ๐Ÿพ dancing: medium-dark skin tone dance | dancing | medium-dark skin tone | woman | woman dancing: medium-dark skin tone -๐Ÿ’ƒ๐Ÿฟ dancing: dark skin tone dance | dancing | dark skin tone | woman | woman dancing: dark skin tone -๐Ÿ•บ dancing dance | dancing | man -๐Ÿ•บ๐Ÿป dancing: light skin tone dance | dancing | light skin tone | man | man dancing: light skin tone -๐Ÿ•บ๐Ÿผ dancing: medium-light skin tone dance | dancing | man | man dancing: medium-light skin tone | medium-light skin tone -๐Ÿ•บ๐Ÿฝ dancing: medium skin tone dance | dancing | man | man dancing: medium skin tone | medium skin tone -๐Ÿ•บ๐Ÿพ dancing: medium-dark skin tone dance | dancing | man | man dancing: medium-dark skin tone | medium-dark skin tone -๐Ÿ•บ๐Ÿฟ dancing: dark skin tone dance | dancing | dark skin tone | man | man dancing: dark skin tone -๐Ÿ•ด๏ธ in suit levitating -๐Ÿ•ด in suit levitating business | person | person in suit levitating | suit -๐Ÿ•ด๐Ÿป in suit levitating: light skin tone business | light skin tone | person | person in suit levitating | person in suit levitating: light skin tone | suit -๐Ÿ•ด๐Ÿผ in suit levitating: medium-light skin tone business | medium-light skin tone | person | person in suit levitating | person in suit levitating: medium-light skin tone | suit -๐Ÿ•ด๐Ÿฝ in suit levitating: medium skin tone business | medium skin tone | person | person in suit levitating | person in suit levitating: medium skin tone | suit -๐Ÿ•ด๐Ÿพ in suit levitating: medium-dark skin tone business | medium-dark skin tone | person | person in suit levitating | person in suit levitating: medium-dark skin tone | suit -๐Ÿ•ด๐Ÿฟ in suit levitating: dark skin tone business | dark skin tone | person | person in suit levitating | person in suit levitating: dark skin tone | suit -๐Ÿ‘ฏ with bunny ears bunny ear | dancer | partying | people with bunny ears -๐Ÿ‘ฏโ€โ™‚๏ธ with bunny ears -๐Ÿ‘ฏโ€โ™‚ with bunny ears bunny ear | dancer | men | men with bunny ears | partying -๐Ÿ‘ฏโ€โ™€๏ธ with bunny ears -๐Ÿ‘ฏโ€โ™€ with bunny ears bunny ear | dancer | partying | women | women with bunny ears -๐Ÿง– in steamy room person in steamy room | sauna | steam room -๐Ÿง–๐Ÿป in steamy room: light skin tone light skin tone | person in steamy room | person in steamy room: light skin tone | sauna | steam room -๐Ÿง–๐Ÿผ in steamy room: medium-light skin tone medium-light skin tone | person in steamy room | person in steamy room: medium-light skin tone | sauna | steam room -๐Ÿง–๐Ÿฝ in steamy room: medium skin tone medium skin tone | person in steamy room | person in steamy room: medium skin tone | sauna | steam room -๐Ÿง–๐Ÿพ in steamy room: medium-dark skin tone medium-dark skin tone | person in steamy room | person in steamy room: medium-dark skin tone | sauna | steam room -๐Ÿง–๐Ÿฟ in steamy room: dark skin tone dark skin tone | person in steamy room | person in steamy room: dark skin tone | sauna | steam room -๐Ÿง–โ€โ™‚๏ธ in steamy room -๐Ÿง–โ€โ™‚ in steamy room man in steamy room | sauna | steam room | man in steam room -๐Ÿง–๐Ÿปโ€โ™‚๏ธ in steamy room: light skin tone -๐Ÿง–๐Ÿปโ€โ™‚ in steamy room: light skin tone light skin tone | man in steamy room | man in steamy room: light skin tone | sauna | steam room | man in steam room | man in steam room: light skin tone -๐Ÿง–๐Ÿผโ€โ™‚๏ธ in steamy room: medium-light skin tone -๐Ÿง–๐Ÿผโ€โ™‚ in steamy room: medium-light skin tone man in steamy room | man in steamy room: medium-light skin tone | medium-light skin tone | sauna | steam room | man in steam room | man in steam room: medium-light skin tone -๐Ÿง–๐Ÿฝโ€โ™‚๏ธ in steamy room: medium skin tone -๐Ÿง–๐Ÿฝโ€โ™‚ in steamy room: medium skin tone man in steamy room | man in steamy room: medium skin tone | medium skin tone | sauna | steam room | man in steam room | man in steam room: medium skin tone -๐Ÿง–๐Ÿพโ€โ™‚๏ธ in steamy room: medium-dark skin tone -๐Ÿง–๐Ÿพโ€โ™‚ in steamy room: medium-dark skin tone man in steamy room | man in steamy room: medium-dark skin tone | medium-dark skin tone | sauna | steam room | man in steam room | man in steam room: medium-dark skin tone -๐Ÿง–๐Ÿฟโ€โ™‚๏ธ in steamy room: dark skin tone -๐Ÿง–๐Ÿฟโ€โ™‚ in steamy room: dark skin tone dark skin tone | man in steamy room | man in steamy room: dark skin tone | sauna | steam room | man in steam room | man in steam room: dark skin tone -๐Ÿง–โ€โ™€๏ธ in steamy room -๐Ÿง–โ€โ™€ in steamy room sauna | steam room | woman in steamy room | woman in steam room -๐Ÿง–๐Ÿปโ€โ™€๏ธ in steamy room: light skin tone -๐Ÿง–๐Ÿปโ€โ™€ in steamy room: light skin tone light skin tone | sauna | steam room | woman in steamy room | woman in steamy room: light skin tone | woman in steam room | woman in steam room: light skin tone -๐Ÿง–๐Ÿผโ€โ™€๏ธ in steamy room: medium-light skin tone -๐Ÿง–๐Ÿผโ€โ™€ in steamy room: medium-light skin tone medium-light skin tone | sauna | steam room | woman in steamy room | woman in steamy room: medium-light skin tone | woman in steam room | woman in steam room: medium-light skin tone -๐Ÿง–๐Ÿฝโ€โ™€๏ธ in steamy room: medium skin tone -๐Ÿง–๐Ÿฝโ€โ™€ in steamy room: medium skin tone medium skin tone | sauna | steam room | woman in steamy room | woman in steamy room: medium skin tone | woman in steam room | woman in steam room: medium skin tone -๐Ÿง–๐Ÿพโ€โ™€๏ธ in steamy room: medium-dark skin tone -๐Ÿง–๐Ÿพโ€โ™€ in steamy room: medium-dark skin tone medium-dark skin tone | sauna | steam room | woman in steamy room | woman in steamy room: medium-dark skin tone | woman in steam room | woman in steam room: medium-dark skin tone -๐Ÿง–๐Ÿฟโ€โ™€๏ธ in steamy room: dark skin tone -๐Ÿง–๐Ÿฟโ€โ™€ in steamy room: dark skin tone dark skin tone | sauna | steam room | woman in steamy room | woman in steamy room: dark skin tone | woman in steam room | woman in steam room: dark skin tone -๐Ÿง— climbing climber | person climbing -๐Ÿง—๐Ÿป climbing: light skin tone climber | light skin tone | person climbing | person climbing: light skin tone -๐Ÿง—๐Ÿผ climbing: medium-light skin tone climber | medium-light skin tone | person climbing | person climbing: medium-light skin tone -๐Ÿง—๐Ÿฝ climbing: medium skin tone climber | medium skin tone | person climbing | person climbing: medium skin tone -๐Ÿง—๐Ÿพ climbing: medium-dark skin tone climber | medium-dark skin tone | person climbing | person climbing: medium-dark skin tone -๐Ÿง—๐Ÿฟ climbing: dark skin tone climber | dark skin tone | person climbing | person climbing: dark skin tone -๐Ÿง—โ€โ™‚๏ธ climbing -๐Ÿง—โ€โ™‚ climbing climber | man climbing -๐Ÿง—๐Ÿปโ€โ™‚๏ธ climbing: light skin tone -๐Ÿง—๐Ÿปโ€โ™‚ climbing: light skin tone climber | light skin tone | man climbing | man climbing: light skin tone -๐Ÿง—๐Ÿผโ€โ™‚๏ธ climbing: medium-light skin tone -๐Ÿง—๐Ÿผโ€โ™‚ climbing: medium-light skin tone climber | man climbing | man climbing: medium-light skin tone | medium-light skin tone -๐Ÿง—๐Ÿฝโ€โ™‚๏ธ climbing: medium skin tone -๐Ÿง—๐Ÿฝโ€โ™‚ climbing: medium skin tone climber | man climbing | man climbing: medium skin tone | medium skin tone -๐Ÿง—๐Ÿพโ€โ™‚๏ธ climbing: medium-dark skin tone -๐Ÿง—๐Ÿพโ€โ™‚ climbing: medium-dark skin tone climber | man climbing | man climbing: medium-dark skin tone | medium-dark skin tone -๐Ÿง—๐Ÿฟโ€โ™‚๏ธ climbing: dark skin tone -๐Ÿง—๐Ÿฟโ€โ™‚ climbing: dark skin tone climber | dark skin tone | man climbing | man climbing: dark skin tone -๐Ÿง—โ€โ™€๏ธ climbing -๐Ÿง—โ€โ™€ climbing climber | woman climbing -๐Ÿง—๐Ÿปโ€โ™€๏ธ climbing: light skin tone -๐Ÿง—๐Ÿปโ€โ™€ climbing: light skin tone climber | light skin tone | woman climbing | woman climbing: light skin tone -๐Ÿง—๐Ÿผโ€โ™€๏ธ climbing: medium-light skin tone -๐Ÿง—๐Ÿผโ€โ™€ climbing: medium-light skin tone climber | medium-light skin tone | woman climbing | woman climbing: medium-light skin tone -๐Ÿง—๐Ÿฝโ€โ™€๏ธ climbing: medium skin tone -๐Ÿง—๐Ÿฝโ€โ™€ climbing: medium skin tone climber | medium skin tone | woman climbing | woman climbing: medium skin tone -๐Ÿง—๐Ÿพโ€โ™€๏ธ climbing: medium-dark skin tone -๐Ÿง—๐Ÿพโ€โ™€ climbing: medium-dark skin tone climber | medium-dark skin tone | woman climbing | woman climbing: medium-dark skin tone -๐Ÿง—๐Ÿฟโ€โ™€๏ธ climbing: dark skin tone -๐Ÿง—๐Ÿฟโ€โ™€ climbing: dark skin tone climber | dark skin tone | woman climbing | woman climbing: dark skin tone -๐Ÿคบ fencing fencer | fencing | person fencing | sword -๐Ÿ‡ racing horse | jockey | racehorse | racing -๐Ÿ‡๐Ÿป racing: light skin tone horse | horse racing: light skin tone | jockey | light skin tone | racehorse | racing -๐Ÿ‡๐Ÿผ racing: medium-light skin tone horse | horse racing: medium-light skin tone | jockey | medium-light skin tone | racehorse | racing -๐Ÿ‡๐Ÿฝ racing: medium skin tone horse | horse racing: medium skin tone | jockey | medium skin tone | racehorse | racing -๐Ÿ‡๐Ÿพ racing: medium-dark skin tone horse | horse racing: medium-dark skin tone | jockey | medium-dark skin tone | racehorse | racing -๐Ÿ‡๐Ÿฟ racing: dark skin tone dark skin tone | horse | horse racing: dark skin tone | jockey | racehorse | racing -โ›ท ski | skier | snow -๐Ÿ‚ ki | snow | snowboard | snowboarder -๐Ÿ‚๐Ÿป light skin tone light skin tone | ski | snow | snowboard | snowboarder | snowboarder: light skin tone -๐Ÿ‚๐Ÿผ medium-light skin tone medium-light skin tone | ski | snow | snowboard | snowboarder | snowboarder: medium-light skin tone -๐Ÿ‚๐Ÿฝ medium skin tone medium skin tone | ski | snow | snowboard | snowboarder | snowboarder: medium skin tone -๐Ÿ‚๐Ÿพ medium-dark skin tone medium-dark skin tone | ski | snow | snowboard | snowboarder | snowboarder: medium-dark skin tone -๐Ÿ‚๐Ÿฟ dark skin tone dark skin tone | ski | snow | snowboard | snowboarder | snowboarder: dark skin tone -๐ŸŒ๏ธ golfing -๐ŸŒ golfing ball | golf | person golfing | golfer -๐ŸŒ๐Ÿป golfing: light skin tone ball | golf | light skin tone | person golfing | person golfing: light skin tone | golfer -๐ŸŒ๐Ÿผ golfing: medium-light skin tone ball | golf | medium-light skin tone | person golfing | person golfing: medium-light skin tone | golfer -๐ŸŒ๐Ÿฝ golfing: medium skin tone ball | golf | medium skin tone | person golfing | person golfing: medium skin tone | golfer -๐ŸŒ๐Ÿพ golfing: medium-dark skin tone ball | golf | medium-dark skin tone | person golfing | person golfing: medium-dark skin tone | golfer -๐ŸŒ๐Ÿฟ golfing: dark skin tone ball | dark skin tone | golf | person golfing | person golfing: dark skin tone | golfer -๐ŸŒ๏ธโ€โ™‚๏ธ golfing -๐ŸŒ๏ธโ€โ™‚ golfing -๐ŸŒโ€โ™‚ golfing golf | man | man golfing | golfer -๐ŸŒ๐Ÿปโ€โ™‚๏ธ golfing: light skin tone -๐ŸŒ๐Ÿปโ€โ™‚ golfing: light skin tone golf | light skin tone | man | man golfing | man golfing: light skin tone | golfer -๐ŸŒ๐Ÿผโ€โ™‚๏ธ golfing: medium-light skin tone -๐ŸŒ๐Ÿผโ€โ™‚ golfing: medium-light skin tone golf | man | man golfing | man golfing: medium-light skin tone | medium-light skin tone | golfer -๐ŸŒ๐Ÿฝโ€โ™‚๏ธ golfing: medium skin tone -๐ŸŒ๐Ÿฝโ€โ™‚ golfing: medium skin tone golf | man | man golfing | man golfing: medium skin tone | medium skin tone | golfer -๐ŸŒ๐Ÿพโ€โ™‚๏ธ golfing: medium-dark skin tone -๐ŸŒ๐Ÿพโ€โ™‚ golfing: medium-dark skin tone golf | man | man golfing | man golfing: medium-dark skin tone | medium-dark skin tone | golfer -๐ŸŒ๐Ÿฟโ€โ™‚๏ธ golfing: dark skin tone -๐ŸŒ๐Ÿฟโ€โ™‚ golfing: dark skin tone dark skin tone | golf | man | man golfing | man golfing: dark skin tone | golfer -๐ŸŒ๏ธโ€โ™€๏ธ golfing -๐ŸŒ๏ธโ€โ™€ golfing -๐ŸŒโ€โ™€ golfing golf | woman | woman golfing | golfer -๐ŸŒ๐Ÿปโ€โ™€๏ธ golfing: light skin tone -๐ŸŒ๐Ÿปโ€โ™€ golfing: light skin tone golf | light skin tone | woman | woman golfing | woman golfing: light skin tone | golfer -๐ŸŒ๐Ÿผโ€โ™€๏ธ golfing: medium-light skin tone -๐ŸŒ๐Ÿผโ€โ™€ golfing: medium-light skin tone golf | medium-light skin tone | woman | woman golfing | woman golfing: medium-light skin tone | golfer -๐ŸŒ๐Ÿฝโ€โ™€๏ธ golfing: medium skin tone -๐ŸŒ๐Ÿฝโ€โ™€ golfing: medium skin tone golf | medium skin tone | woman | woman golfing | woman golfing: medium skin tone | golfer -๐ŸŒ๐Ÿพโ€โ™€๏ธ golfing: medium-dark skin tone -๐ŸŒ๐Ÿพโ€โ™€ golfing: medium-dark skin tone golf | medium-dark skin tone | woman | woman golfing | woman golfing: medium-dark skin tone | golfer -๐ŸŒ๐Ÿฟโ€โ™€๏ธ golfing: dark skin tone -๐ŸŒ๐Ÿฟโ€โ™€ golfing: dark skin tone dark skin tone | golf | woman | woman golfing | woman golfing: dark skin tone | golfer -๐Ÿ„ surfing person surfing | surfing | surfer -๐Ÿ„๐Ÿป surfing: light skin tone light skin tone | person surfing | person surfing: light skin tone | surfing | surfer -๐Ÿ„๐Ÿผ surfing: medium-light skin tone medium-light skin tone | person surfing | person surfing: medium-light skin tone | surfing | surfer -๐Ÿ„๐Ÿฝ surfing: medium skin tone medium skin tone | person surfing | person surfing: medium skin tone | surfing | surfer -๐Ÿ„๐Ÿพ surfing: medium-dark skin tone medium-dark skin tone | person surfing | person surfing: medium-dark skin tone | surfing | surfer -๐Ÿ„๐Ÿฟ surfing: dark skin tone dark skin tone | person surfing | person surfing: dark skin tone | surfing | surfer -๐Ÿ„โ€โ™‚๏ธ surfing -๐Ÿ„โ€โ™‚ surfing man | surfing | surfer -๐Ÿ„๐Ÿปโ€โ™‚๏ธ surfing: light skin tone -๐Ÿ„๐Ÿปโ€โ™‚ surfing: light skin tone light skin tone | man | man surfing: light skin tone | surfing | surfer -๐Ÿ„๐Ÿผโ€โ™‚๏ธ surfing: medium-light skin tone -๐Ÿ„๐Ÿผโ€โ™‚ surfing: medium-light skin tone man | man surfing: medium-light skin tone | medium-light skin tone | surfing | surfer -๐Ÿ„๐Ÿฝโ€โ™‚๏ธ surfing: medium skin tone -๐Ÿ„๐Ÿฝโ€โ™‚ surfing: medium skin tone man | man surfing: medium skin tone | medium skin tone | surfing | surfer -๐Ÿ„๐Ÿพโ€โ™‚๏ธ surfing: medium-dark skin tone -๐Ÿ„๐Ÿพโ€โ™‚ surfing: medium-dark skin tone man | man surfing: medium-dark skin tone | medium-dark skin tone | surfing | surfer -๐Ÿ„๐Ÿฟโ€โ™‚๏ธ surfing: dark skin tone -๐Ÿ„๐Ÿฟโ€โ™‚ surfing: dark skin tone dark skin tone | man | man surfing: dark skin tone | surfing | surfer -๐Ÿ„โ€โ™€๏ธ surfing -๐Ÿ„โ€โ™€ surfing surfing | woman | surfer -๐Ÿ„๐Ÿปโ€โ™€๏ธ surfing: light skin tone -๐Ÿ„๐Ÿปโ€โ™€ surfing: light skin tone light skin tone | surfing | woman | woman surfing: light skin tone | surfer -๐Ÿ„๐Ÿผโ€โ™€๏ธ surfing: medium-light skin tone -๐Ÿ„๐Ÿผโ€โ™€ surfing: medium-light skin tone medium-light skin tone | surfing | woman | woman surfing: medium-light skin tone | surfer -๐Ÿ„๐Ÿฝโ€โ™€๏ธ surfing: medium skin tone -๐Ÿ„๐Ÿฝโ€โ™€ surfing: medium skin tone medium skin tone | surfing | woman | woman surfing: medium skin tone | surfer -๐Ÿ„๐Ÿพโ€โ™€๏ธ surfing: medium-dark skin tone -๐Ÿ„๐Ÿพโ€โ™€ surfing: medium-dark skin tone medium-dark skin tone | surfing | woman | woman surfing: medium-dark skin tone | surfer -๐Ÿ„๐Ÿฟโ€โ™€๏ธ surfing: dark skin tone -๐Ÿ„๐Ÿฟโ€โ™€ surfing: dark skin tone dark skin tone | surfing | woman | woman surfing: dark skin tone | surfer -๐Ÿšฃ rowing boat boat | person rowing boat | rowboat | person -๐Ÿšฃ๐Ÿป rowing boat: light skin tone boat | light skin tone | person rowing boat | person rowing boat: light skin tone | rowboat | person -๐Ÿšฃ๐Ÿผ rowing boat: medium-light skin tone boat | medium-light skin tone | person rowing boat | person rowing boat: medium-light skin tone | rowboat | person -๐Ÿšฃ๐Ÿฝ rowing boat: medium skin tone boat | medium skin tone | person rowing boat | person rowing boat: medium skin tone | rowboat | person -๐Ÿšฃ๐Ÿพ rowing boat: medium-dark skin tone boat | medium-dark skin tone | person rowing boat | person rowing boat: medium-dark skin tone | rowboat | person -๐Ÿšฃ๐Ÿฟ rowing boat: dark skin tone boat | dark skin tone | person rowing boat | person rowing boat: dark skin tone | rowboat | person -๐Ÿšฃโ€โ™‚๏ธ rowing boat -๐Ÿšฃโ€โ™‚ rowing boat boat | man | man rowing boat | rowboat -๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ rowing boat: light skin tone -๐Ÿšฃ๐Ÿปโ€โ™‚ rowing boat: light skin tone boat | light skin tone | man | man rowing boat | man rowing boat: light skin tone | rowboat -๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ rowing boat: medium-light skin tone -๐Ÿšฃ๐Ÿผโ€โ™‚ rowing boat: medium-light skin tone boat | man | man rowing boat | man rowing boat: medium-light skin tone | medium-light skin tone | rowboat -๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ rowing boat: medium skin tone -๐Ÿšฃ๐Ÿฝโ€โ™‚ rowing boat: medium skin tone boat | man | man rowing boat | man rowing boat: medium skin tone | medium skin tone | rowboat -๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ rowing boat: medium-dark skin tone -๐Ÿšฃ๐Ÿพโ€โ™‚ rowing boat: medium-dark skin tone boat | man | man rowing boat | man rowing boat: medium-dark skin tone | medium-dark skin tone | rowboat -๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ rowing boat: dark skin tone -๐Ÿšฃ๐Ÿฟโ€โ™‚ rowing boat: dark skin tone boat | dark skin tone | man | man rowing boat | man rowing boat: dark skin tone | rowboat -๐Ÿšฃโ€โ™€๏ธ rowing boat -๐Ÿšฃโ€โ™€ rowing boat boat | rowboat | woman | woman rowing boat -๐Ÿšฃ๐Ÿปโ€โ™€๏ธ rowing boat: light skin tone -๐Ÿšฃ๐Ÿปโ€โ™€ rowing boat: light skin tone boat | light skin tone | rowboat | woman | woman rowing boat | woman rowing boat: light skin tone -๐Ÿšฃ๐Ÿผโ€โ™€๏ธ rowing boat: medium-light skin tone -๐Ÿšฃ๐Ÿผโ€โ™€ rowing boat: medium-light skin tone boat | medium-light skin tone | rowboat | woman | woman rowing boat | woman rowing boat: medium-light skin tone -๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ rowing boat: medium skin tone -๐Ÿšฃ๐Ÿฝโ€โ™€ rowing boat: medium skin tone boat | medium skin tone | rowboat | woman | woman rowing boat | woman rowing boat: medium skin tone -๐Ÿšฃ๐Ÿพโ€โ™€๏ธ rowing boat: medium-dark skin tone -๐Ÿšฃ๐Ÿพโ€โ™€ rowing boat: medium-dark skin tone boat | medium-dark skin tone | rowboat | woman | woman rowing boat | woman rowing boat: medium-dark skin tone -๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ rowing boat: dark skin tone -๐Ÿšฃ๐Ÿฟโ€โ™€ rowing boat: dark skin tone boat | dark skin tone | rowboat | woman | woman rowing boat | woman rowing boat: dark skin tone -๐ŸŠ swimming person swimming | swim | swimmer -๐ŸŠ๐Ÿป swimming: light skin tone light skin tone | person swimming | person swimming: light skin tone | swim | swimmer -๐ŸŠ๐Ÿผ swimming: medium-light skin tone medium-light skin tone | person swimming | person swimming: medium-light skin tone | swim | swimmer -๐ŸŠ๐Ÿฝ swimming: medium skin tone medium skin tone | person swimming | person swimming: medium skin tone | swim | swimmer -๐ŸŠ๐Ÿพ swimming: medium-dark skin tone medium-dark skin tone | person swimming | person swimming: medium-dark skin tone | swim | swimmer -๐ŸŠ๐Ÿฟ swimming: dark skin tone dark skin tone | person swimming | person swimming: dark skin tone | swim | swimmer -๐ŸŠโ€โ™‚๏ธ swimming -๐ŸŠโ€โ™‚ swimming man | man swimming | swim | swimmer -๐ŸŠ๐Ÿปโ€โ™‚๏ธ swimming: light skin tone -๐ŸŠ๐Ÿปโ€โ™‚ swimming: light skin tone light skin tone | man | man swimming | man swimming: light skin tone | swim | swimmer -๐ŸŠ๐Ÿผโ€โ™‚๏ธ swimming: medium-light skin tone -๐ŸŠ๐Ÿผโ€โ™‚ swimming: medium-light skin tone man | man swimming | man swimming: medium-light skin tone | medium-light skin tone | swim | swimmer -๐ŸŠ๐Ÿฝโ€โ™‚๏ธ swimming: medium skin tone -๐ŸŠ๐Ÿฝโ€โ™‚ swimming: medium skin tone man | man swimming | man swimming: medium skin tone | medium skin tone | swim | swimmer -๐ŸŠ๐Ÿพโ€โ™‚๏ธ swimming: medium-dark skin tone -๐ŸŠ๐Ÿพโ€โ™‚ swimming: medium-dark skin tone man | man swimming | man swimming: medium-dark skin tone | medium-dark skin tone | swim | swimmer -๐ŸŠ๐Ÿฟโ€โ™‚๏ธ swimming: dark skin tone -๐ŸŠ๐Ÿฟโ€โ™‚ swimming: dark skin tone dark skin tone | man | man swimming | man swimming: dark skin tone | swim | swimmer -๐ŸŠโ€โ™€๏ธ swimming -๐ŸŠโ€โ™€ swimming swim | woman | woman swimming | swimmer -๐ŸŠ๐Ÿปโ€โ™€๏ธ swimming: light skin tone -๐ŸŠ๐Ÿปโ€โ™€ swimming: light skin tone light skin tone | swim | woman | woman swimming | woman swimming: light skin tone | swimmer -๐ŸŠ๐Ÿผโ€โ™€๏ธ swimming: medium-light skin tone -๐ŸŠ๐Ÿผโ€โ™€ swimming: medium-light skin tone medium-light skin tone | swim | woman | woman swimming | woman swimming: medium-light skin tone | swimmer -๐ŸŠ๐Ÿฝโ€โ™€๏ธ swimming: medium skin tone -๐ŸŠ๐Ÿฝโ€โ™€ swimming: medium skin tone medium skin tone | swim | woman | woman swimming | woman swimming: medium skin tone | swimmer -๐ŸŠ๐Ÿพโ€โ™€๏ธ swimming: medium-dark skin tone -๐ŸŠ๐Ÿพโ€โ™€ swimming: medium-dark skin tone medium-dark skin tone | swim | woman | woman swimming | woman swimming: medium-dark skin tone | swimmer -๐ŸŠ๐Ÿฟโ€โ™€๏ธ swimming: dark skin tone -๐ŸŠ๐Ÿฟโ€โ™€ swimming: dark skin tone dark skin tone | swim | woman | woman swimming | woman swimming: dark skin tone | swimmer -โ›น๏ธ bouncing ball -โ›น bouncing ball ball | person bouncing ball -โ›น๐Ÿป bouncing ball: light skin tone ball | light skin tone | person bouncing ball | person bouncing ball: light skin tone -โ›น๐Ÿผ bouncing ball: medium-light skin tone ball | medium-light skin tone | person bouncing ball | person bouncing ball: medium-light skin tone -โ›น๐Ÿฝ bouncing ball: medium skin tone ball | medium skin tone | person bouncing ball | person bouncing ball: medium skin tone -โ›น๐Ÿพ bouncing ball: medium-dark skin tone ball | medium-dark skin tone | person bouncing ball | person bouncing ball: medium-dark skin tone -โ›น๐Ÿฟ bouncing ball: dark skin tone ball | dark skin tone | person bouncing ball | person bouncing ball: dark skin tone -โ›น๏ธโ€โ™‚๏ธ bouncing ball -โ›น๏ธโ€โ™‚ bouncing ball -โ›นโ€โ™‚ bouncing ball ball | man | man bouncing ball -โ›น๐Ÿปโ€โ™‚๏ธ bouncing ball: light skin tone -โ›น๐Ÿปโ€โ™‚ bouncing ball: light skin tone ball | light skin tone | man | man bouncing ball | man bouncing ball: light skin tone -โ›น๐Ÿผโ€โ™‚๏ธ bouncing ball: medium-light skin tone -โ›น๐Ÿผโ€โ™‚ bouncing ball: medium-light skin tone ball | man | man bouncing ball | man bouncing ball: medium-light skin tone | medium-light skin tone -โ›น๐Ÿฝโ€โ™‚๏ธ bouncing ball: medium skin tone -โ›น๐Ÿฝโ€โ™‚ bouncing ball: medium skin tone ball | man | man bouncing ball | man bouncing ball: medium skin tone | medium skin tone -โ›น๐Ÿพโ€โ™‚๏ธ bouncing ball: medium-dark skin tone -โ›น๐Ÿพโ€โ™‚ bouncing ball: medium-dark skin tone ball | man | man bouncing ball | man bouncing ball: medium-dark skin tone | medium-dark skin tone -โ›น๐Ÿฟโ€โ™‚๏ธ bouncing ball: dark skin tone -โ›น๐Ÿฟโ€โ™‚ bouncing ball: dark skin tone ball | dark skin tone | man | man bouncing ball | man bouncing ball: dark skin tone -โ›น๏ธโ€โ™€๏ธ bouncing ball -โ›น๏ธโ€โ™€ bouncing ball -โ›นโ€โ™€ bouncing ball ball | woman | woman bouncing ball -โ›น๐Ÿปโ€โ™€๏ธ bouncing ball: light skin tone -โ›น๐Ÿปโ€โ™€ bouncing ball: light skin tone ball | light skin tone | woman | woman bouncing ball | woman bouncing ball: light skin tone -โ›น๐Ÿผโ€โ™€๏ธ bouncing ball: medium-light skin tone -โ›น๐Ÿผโ€โ™€ bouncing ball: medium-light skin tone ball | medium-light skin tone | woman | woman bouncing ball | woman bouncing ball: medium-light skin tone -โ›น๐Ÿฝโ€โ™€๏ธ bouncing ball: medium skin tone -โ›น๐Ÿฝโ€โ™€ bouncing ball: medium skin tone ball | medium skin tone | woman | woman bouncing ball | woman bouncing ball: medium skin tone -โ›น๐Ÿพโ€โ™€๏ธ bouncing ball: medium-dark skin tone -โ›น๐Ÿพโ€โ™€ bouncing ball: medium-dark skin tone ball | medium-dark skin tone | woman | woman bouncing ball | woman bouncing ball: medium-dark skin tone -โ›น๐Ÿฟโ€โ™€๏ธ bouncing ball: dark skin tone -โ›น๐Ÿฟโ€โ™€ bouncing ball: dark skin tone ball | dark skin tone | woman | woman bouncing ball | woman bouncing ball: dark skin tone -๐Ÿ‹๏ธ lifting weights -๐Ÿ‹ lifting weights lifter | person lifting weights | weight | weightlifter -๐Ÿ‹๐Ÿป lifting weights: light skin tone lifter | light skin tone | person lifting weights | person lifting weights: light skin tone | weight | weightlifter -๐Ÿ‹๐Ÿผ lifting weights: medium-light skin tone lifter | medium-light skin tone | person lifting weights | person lifting weights: medium-light skin tone | weight | weightlifter -๐Ÿ‹๐Ÿฝ lifting weights: medium skin tone lifter | medium skin tone | person lifting weights | person lifting weights: medium skin tone | weight | weightlifter -๐Ÿ‹๐Ÿพ lifting weights: medium-dark skin tone lifter | medium-dark skin tone | person lifting weights | person lifting weights: medium-dark skin tone | weight | weightlifter -๐Ÿ‹๐Ÿฟ lifting weights: dark skin tone dark skin tone | lifter | person lifting weights | person lifting weights: dark skin tone | weight | weightlifter -๐Ÿ‹๏ธโ€โ™‚๏ธ lifting weights -๐Ÿ‹๏ธโ€โ™‚ lifting weights -๐Ÿ‹โ€โ™‚ lifting weights man | man lifting weights | weight lifter -๐Ÿ‹๐Ÿปโ€โ™‚๏ธ lifting weights: light skin tone -๐Ÿ‹๐Ÿปโ€โ™‚ lifting weights: light skin tone light skin tone | man | man lifting weights | man lifting weights: light skin tone | weight lifter -๐Ÿ‹๐Ÿผโ€โ™‚๏ธ lifting weights: medium-light skin tone -๐Ÿ‹๐Ÿผโ€โ™‚ lifting weights: medium-light skin tone man | man lifting weights | man lifting weights: medium-light skin tone | medium-light skin tone | weight lifter -๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ lifting weights: medium skin tone -๐Ÿ‹๐Ÿฝโ€โ™‚ lifting weights: medium skin tone man | man lifting weights | man lifting weights: medium skin tone | medium skin tone | weight lifter -๐Ÿ‹๐Ÿพโ€โ™‚๏ธ lifting weights: medium-dark skin tone -๐Ÿ‹๐Ÿพโ€โ™‚ lifting weights: medium-dark skin tone man | man lifting weights | man lifting weights: medium-dark skin tone | medium-dark skin tone | weight lifter -๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ lifting weights: dark skin tone -๐Ÿ‹๐Ÿฟโ€โ™‚ lifting weights: dark skin tone dark skin tone | man | man lifting weights | man lifting weights: dark skin tone | weight lifter -๐Ÿ‹๏ธโ€โ™€๏ธ lifting weights -๐Ÿ‹๏ธโ€โ™€ lifting weights -๐Ÿ‹โ€โ™€ lifting weights weight lifter | woman | woman lifting weights -๐Ÿ‹๐Ÿปโ€โ™€๏ธ lifting weights: light skin tone -๐Ÿ‹๐Ÿปโ€โ™€ lifting weights: light skin tone light skin tone | weight lifter | woman | woman lifting weights | woman lifting weights: light skin tone -๐Ÿ‹๐Ÿผโ€โ™€๏ธ lifting weights: medium-light skin tone -๐Ÿ‹๐Ÿผโ€โ™€ lifting weights: medium-light skin tone medium-light skin tone | weight lifter | woman | woman lifting weights | woman lifting weights: medium-light skin tone -๐Ÿ‹๐Ÿฝโ€โ™€๏ธ lifting weights: medium skin tone -๐Ÿ‹๐Ÿฝโ€โ™€ lifting weights: medium skin tone medium skin tone | weight lifter | woman | woman lifting weights | woman lifting weights: medium skin tone -๐Ÿ‹๐Ÿพโ€โ™€๏ธ lifting weights: medium-dark skin tone -๐Ÿ‹๐Ÿพโ€โ™€ lifting weights: medium-dark skin tone medium-dark skin tone | weight lifter | woman | woman lifting weights | woman lifting weights: medium-dark skin tone -๐Ÿ‹๐Ÿฟโ€โ™€๏ธ lifting weights: dark skin tone -๐Ÿ‹๐Ÿฟโ€โ™€ lifting weights: dark skin tone dark skin tone | weight lifter | woman | woman lifting weights | woman lifting weights: dark skin tone -๐Ÿšด biking bicycle | biking | cyclist | person biking | person riding a bike -๐Ÿšด๐Ÿป biking: light skin tone bicycle | biking | cyclist | light skin tone | person biking | person biking: light skin tone | person riding a bike | person riding a bike: light skin tone -๐Ÿšด๐Ÿผ biking: medium-light skin tone bicycle | biking | cyclist | medium-light skin tone | person biking | person biking: medium-light skin tone | person riding a bike | person riding a bike: medium-light skin tone -๐Ÿšด๐Ÿฝ biking: medium skin tone bicycle | biking | cyclist | medium skin tone | person biking | person biking: medium skin tone | person riding a bike | person riding a bike: medium skin tone -๐Ÿšด๐Ÿพ biking: medium-dark skin tone bicycle | biking | cyclist | medium-dark skin tone | person biking | person biking: medium-dark skin tone | person riding a bike | person riding a bike: medium-dark skin tone -๐Ÿšด๐Ÿฟ biking: dark skin tone bicycle | biking | cyclist | dark skin tone | person biking | person biking: dark skin tone | person riding a bike | person riding a bike: dark skin tone -๐Ÿšดโ€โ™‚๏ธ biking -๐Ÿšดโ€โ™‚ biking bicycle | biking | cyclist | man | cycling | man riding a bike -๐Ÿšด๐Ÿปโ€โ™‚๏ธ biking: light skin tone -๐Ÿšด๐Ÿปโ€โ™‚ biking: light skin tone bicycle | biking | cyclist | light skin tone | man | man biking: light skin tone | cycling | man riding a bike | man riding a bike: light skin tone -๐Ÿšด๐Ÿผโ€โ™‚๏ธ biking: medium-light skin tone -๐Ÿšด๐Ÿผโ€โ™‚ biking: medium-light skin tone bicycle | biking | cyclist | man | man biking: medium-light skin tone | medium-light skin tone | cycling | man riding a bike | man riding a bike: medium-light skin tone -๐Ÿšด๐Ÿฝโ€โ™‚๏ธ biking: medium skin tone -๐Ÿšด๐Ÿฝโ€โ™‚ biking: medium skin tone bicycle | biking | cyclist | man | man biking: medium skin tone | medium skin tone | cycling | man riding a bike | man riding a bike: medium skin tone -๐Ÿšด๐Ÿพโ€โ™‚๏ธ biking: medium-dark skin tone -๐Ÿšด๐Ÿพโ€โ™‚ biking: medium-dark skin tone bicycle | biking | cyclist | man | man biking: medium-dark skin tone | medium-dark skin tone | cycling | man riding a bike | man riding a bike: medium-dark skin tone -๐Ÿšด๐Ÿฟโ€โ™‚๏ธ biking: dark skin tone -๐Ÿšด๐Ÿฟโ€โ™‚ biking: dark skin tone bicycle | biking | cyclist | dark skin tone | man | man biking: dark skin tone | cycling | man riding a bike | man riding a bike: dark skin tone -๐Ÿšดโ€โ™€๏ธ biking -๐Ÿšดโ€โ™€ biking bicycle | biking | cyclist | woman | cycling | woman riding a bike -๐Ÿšด๐Ÿปโ€โ™€๏ธ biking: light skin tone -๐Ÿšด๐Ÿปโ€โ™€ biking: light skin tone bicycle | biking | cyclist | light skin tone | woman | woman biking: light skin tone | cycling | woman riding a bike | woman riding a bike: light skin tone -๐Ÿšด๐Ÿผโ€โ™€๏ธ biking: medium-light skin tone -๐Ÿšด๐Ÿผโ€โ™€ biking: medium-light skin tone bicycle | biking | cyclist | medium-light skin tone | woman | woman biking: medium-light skin tone | cycling | woman riding a bike | woman riding a bike: medium-light skin tone -๐Ÿšด๐Ÿฝโ€โ™€๏ธ biking: medium skin tone -๐Ÿšด๐Ÿฝโ€โ™€ biking: medium skin tone bicycle | biking | cyclist | medium skin tone | woman | woman biking: medium skin tone | cycling | woman riding a bike | woman riding a bike: medium skin tone -๐Ÿšด๐Ÿพโ€โ™€๏ธ biking: medium-dark skin tone -๐Ÿšด๐Ÿพโ€โ™€ biking: medium-dark skin tone bicycle | biking | cyclist | medium-dark skin tone | woman | woman biking: medium-dark skin tone | cycling | woman riding a bike | woman riding a bike: medium-dark skin tone -๐Ÿšด๐Ÿฟโ€โ™€๏ธ biking: dark skin tone -๐Ÿšด๐Ÿฟโ€โ™€ biking: dark skin tone bicycle | biking | cyclist | dark skin tone | woman | woman biking: dark skin tone | cycling | woman riding a bike | woman riding a bike: dark skin tone -๐Ÿšต mountain biking bicycle | bicyclist | bike | cyclist | mountain | person mountain biking -๐Ÿšต๐Ÿป mountain biking: light skin tone bicycle | bicyclist | bike | cyclist | light skin tone | mountain | person mountain biking | person mountain biking: light skin tone -๐Ÿšต๐Ÿผ mountain biking: medium-light skin tone bicycle | bicyclist | bike | cyclist | medium-light skin tone | mountain | person mountain biking | person mountain biking: medium-light skin tone -๐Ÿšต๐Ÿฝ mountain biking: medium skin tone bicycle | bicyclist | bike | cyclist | medium skin tone | mountain | person mountain biking | person mountain biking: medium skin tone -๐Ÿšต๐Ÿพ mountain biking: medium-dark skin tone bicycle | bicyclist | bike | cyclist | medium-dark skin tone | mountain | person mountain biking | person mountain biking: medium-dark skin tone -๐Ÿšต๐Ÿฟ mountain biking: dark skin tone bicycle | bicyclist | bike | cyclist | dark skin tone | mountain | person mountain biking | person mountain biking: dark skin tone -๐Ÿšตโ€โ™‚๏ธ mountain biking -๐Ÿšตโ€โ™‚ mountain biking bicycle | bike | cyclist | man | man mountain biking | mountain -๐Ÿšต๐Ÿปโ€โ™‚๏ธ mountain biking: light skin tone -๐Ÿšต๐Ÿปโ€โ™‚ mountain biking: light skin tone bicycle | bike | cyclist | light skin tone | man | man mountain biking | man mountain biking: light skin tone | mountain -๐Ÿšต๐Ÿผโ€โ™‚๏ธ mountain biking: medium-light skin tone -๐Ÿšต๐Ÿผโ€โ™‚ mountain biking: medium-light skin tone bicycle | bike | cyclist | man | man mountain biking | man mountain biking: medium-light skin tone | medium-light skin tone | mountain -๐Ÿšต๐Ÿฝโ€โ™‚๏ธ mountain biking: medium skin tone -๐Ÿšต๐Ÿฝโ€โ™‚ mountain biking: medium skin tone bicycle | bike | cyclist | man | man mountain biking | man mountain biking: medium skin tone | medium skin tone | mountain -๐Ÿšต๐Ÿพโ€โ™‚๏ธ mountain biking: medium-dark skin tone -๐Ÿšต๐Ÿพโ€โ™‚ mountain biking: medium-dark skin tone bicycle | bike | cyclist | man | man mountain biking | man mountain biking: medium-dark skin tone | medium-dark skin tone | mountain -๐Ÿšต๐Ÿฟโ€โ™‚๏ธ mountain biking: dark skin tone -๐Ÿšต๐Ÿฟโ€โ™‚ mountain biking: dark skin tone bicycle | bike | cyclist | dark skin tone | man | man mountain biking | man mountain biking: dark skin tone | mountain -๐Ÿšตโ€โ™€๏ธ mountain biking -๐Ÿšตโ€โ™€ mountain biking bicycle | bike | biking | cyclist | mountain | woman -๐Ÿšต๐Ÿปโ€โ™€๏ธ mountain biking: light skin tone -๐Ÿšต๐Ÿปโ€โ™€ mountain biking: light skin tone bicycle | bike | biking | cyclist | light skin tone | mountain | woman | woman mountain biking: light skin tone -๐Ÿšต๐Ÿผโ€โ™€๏ธ mountain biking: medium-light skin tone -๐Ÿšต๐Ÿผโ€โ™€ mountain biking: medium-light skin tone bicycle | bike | biking | cyclist | medium-light skin tone | mountain | woman | woman mountain biking: medium-light skin tone -๐Ÿšต๐Ÿฝโ€โ™€๏ธ mountain biking: medium skin tone -๐Ÿšต๐Ÿฝโ€โ™€ mountain biking: medium skin tone bicycle | bike | biking | cyclist | medium skin tone | mountain | woman | woman mountain biking: medium skin tone -๐Ÿšต๐Ÿพโ€โ™€๏ธ mountain biking: medium-dark skin tone -๐Ÿšต๐Ÿพโ€โ™€ mountain biking: medium-dark skin tone bicycle | bike | biking | cyclist | medium-dark skin tone | mountain | woman | woman mountain biking: medium-dark skin tone -๐Ÿšต๐Ÿฟโ€โ™€๏ธ mountain biking: dark skin tone -๐Ÿšต๐Ÿฟโ€โ™€ mountain biking: dark skin tone bicycle | bike | biking | cyclist | dark skin tone | mountain | woman | woman mountain biking: dark skin tone -๐Ÿคธ cartwheeling cartwheel | gymnastics | person cartwheeling -๐Ÿคธ๐Ÿป cartwheeling: light skin tone cartwheel | gymnastics | light skin tone | person cartwheeling | person cartwheeling: light skin tone -๐Ÿคธ๐Ÿผ cartwheeling: medium-light skin tone cartwheel | gymnastics | medium-light skin tone | person cartwheeling | person cartwheeling: medium-light skin tone -๐Ÿคธ๐Ÿฝ cartwheeling: medium skin tone cartwheel | gymnastics | medium skin tone | person cartwheeling | person cartwheeling: medium skin tone -๐Ÿคธ๐Ÿพ cartwheeling: medium-dark skin tone cartwheel | gymnastics | medium-dark skin tone | person cartwheeling | person cartwheeling: medium-dark skin tone -๐Ÿคธ๐Ÿฟ cartwheeling: dark skin tone cartwheel | dark skin tone | gymnastics | person cartwheeling | person cartwheeling: dark skin tone -๐Ÿคธโ€โ™‚๏ธ cartwheeling -๐Ÿคธโ€โ™‚ cartwheeling cartwheel | gymnastics | man | man cartwheeling -๐Ÿคธ๐Ÿปโ€โ™‚๏ธ cartwheeling: light skin tone -๐Ÿคธ๐Ÿปโ€โ™‚ cartwheeling: light skin tone cartwheel | gymnastics | light skin tone | man | man cartwheeling | man cartwheeling: light skin tone -๐Ÿคธ๐Ÿผโ€โ™‚๏ธ cartwheeling: medium-light skin tone -๐Ÿคธ๐Ÿผโ€โ™‚ cartwheeling: medium-light skin tone cartwheel | gymnastics | man | man cartwheeling | man cartwheeling: medium-light skin tone | medium-light skin tone -๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ cartwheeling: medium skin tone -๐Ÿคธ๐Ÿฝโ€โ™‚ cartwheeling: medium skin tone cartwheel | gymnastics | man | man cartwheeling | man cartwheeling: medium skin tone | medium skin tone -๐Ÿคธ๐Ÿพโ€โ™‚๏ธ cartwheeling: medium-dark skin tone -๐Ÿคธ๐Ÿพโ€โ™‚ cartwheeling: medium-dark skin tone cartwheel | gymnastics | man | man cartwheeling | man cartwheeling: medium-dark skin tone | medium-dark skin tone -๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ cartwheeling: dark skin tone -๐Ÿคธ๐Ÿฟโ€โ™‚ cartwheeling: dark skin tone cartwheel | dark skin tone | gymnastics | man | man cartwheeling | man cartwheeling: dark skin tone -๐Ÿคธโ€โ™€๏ธ cartwheeling -๐Ÿคธโ€โ™€ cartwheeling cartwheel | gymnastics | woman | woman cartwheeling -๐Ÿคธ๐Ÿปโ€โ™€๏ธ cartwheeling: light skin tone -๐Ÿคธ๐Ÿปโ€โ™€ cartwheeling: light skin tone cartwheel | gymnastics | light skin tone | woman | woman cartwheeling | woman cartwheeling: light skin tone -๐Ÿคธ๐Ÿผโ€โ™€๏ธ cartwheeling: medium-light skin tone -๐Ÿคธ๐Ÿผโ€โ™€ cartwheeling: medium-light skin tone cartwheel | gymnastics | medium-light skin tone | woman | woman cartwheeling | woman cartwheeling: medium-light skin tone -๐Ÿคธ๐Ÿฝโ€โ™€๏ธ cartwheeling: medium skin tone -๐Ÿคธ๐Ÿฝโ€โ™€ cartwheeling: medium skin tone cartwheel | gymnastics | medium skin tone | woman | woman cartwheeling | woman cartwheeling: medium skin tone -๐Ÿคธ๐Ÿพโ€โ™€๏ธ cartwheeling: medium-dark skin tone -๐Ÿคธ๐Ÿพโ€โ™€ cartwheeling: medium-dark skin tone cartwheel | gymnastics | medium-dark skin tone | woman | woman cartwheeling | woman cartwheeling: medium-dark skin tone -๐Ÿคธ๐Ÿฟโ€โ™€๏ธ cartwheeling: dark skin tone -๐Ÿคธ๐Ÿฟโ€โ™€ cartwheeling: dark skin tone cartwheel | dark skin tone | gymnastics | woman | woman cartwheeling | woman cartwheeling: dark skin tone -๐Ÿคผ wrestling people wrestling | wrestle | wrestler -๐Ÿคผโ€โ™‚๏ธ wrestling -๐Ÿคผโ€โ™‚ wrestling men | men wrestling | wrestle -๐Ÿคผโ€โ™€๏ธ wrestling -๐Ÿคผโ€โ™€ wrestling women | women wrestling | wrestle -๐Ÿคฝ playing water polo person playing water polo | polo | water -๐Ÿคฝ๐Ÿป playing water polo: light skin tone light skin tone | person playing water polo | person playing water polo: light skin tone | polo | water -๐Ÿคฝ๐Ÿผ playing water polo: medium-light skin tone medium-light skin tone | person playing water polo | person playing water polo: medium-light skin tone | polo | water -๐Ÿคฝ๐Ÿฝ playing water polo: medium skin tone medium skin tone | person playing water polo | person playing water polo: medium skin tone | polo | water -๐Ÿคฝ๐Ÿพ playing water polo: medium-dark skin tone medium-dark skin tone | person playing water polo | person playing water polo: medium-dark skin tone | polo | water -๐Ÿคฝ๐Ÿฟ playing water polo: dark skin tone dark skin tone | person playing water polo | person playing water polo: dark skin tone | polo | water -๐Ÿคฝโ€โ™‚๏ธ playing water polo -๐Ÿคฝโ€โ™‚ playing water polo man | man playing water polo | water polo -๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ playing water polo: light skin tone -๐Ÿคฝ๐Ÿปโ€โ™‚ playing water polo: light skin tone light skin tone | man | man playing water polo | man playing water polo: light skin tone | water polo -๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ playing water polo: medium-light skin tone -๐Ÿคฝ๐Ÿผโ€โ™‚ playing water polo: medium-light skin tone man | man playing water polo | man playing water polo: medium-light skin tone | medium-light skin tone | water polo -๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ playing water polo: medium skin tone -๐Ÿคฝ๐Ÿฝโ€โ™‚ playing water polo: medium skin tone man | man playing water polo | man playing water polo: medium skin tone | medium skin tone | water polo -๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ playing water polo: medium-dark skin tone -๐Ÿคฝ๐Ÿพโ€โ™‚ playing water polo: medium-dark skin tone man | man playing water polo | man playing water polo: medium-dark skin tone | medium-dark skin tone | water polo -๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ playing water polo: dark skin tone -๐Ÿคฝ๐Ÿฟโ€โ™‚ playing water polo: dark skin tone dark skin tone | man | man playing water polo | man playing water polo: dark skin tone | water polo -๐Ÿคฝโ€โ™€๏ธ playing water polo -๐Ÿคฝโ€โ™€ playing water polo water polo | woman | woman playing water polo -๐Ÿคฝ๐Ÿปโ€โ™€๏ธ playing water polo: light skin tone -๐Ÿคฝ๐Ÿปโ€โ™€ playing water polo: light skin tone light skin tone | water polo | woman | woman playing water polo | woman playing water polo: light skin tone -๐Ÿคฝ๐Ÿผโ€โ™€๏ธ playing water polo: medium-light skin tone -๐Ÿคฝ๐Ÿผโ€โ™€ playing water polo: medium-light skin tone medium-light skin tone | water polo | woman | woman playing water polo | woman playing water polo: medium-light skin tone -๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ playing water polo: medium skin tone -๐Ÿคฝ๐Ÿฝโ€โ™€ playing water polo: medium skin tone medium skin tone | water polo | woman | woman playing water polo | woman playing water polo: medium skin tone -๐Ÿคฝ๐Ÿพโ€โ™€๏ธ playing water polo: medium-dark skin tone -๐Ÿคฝ๐Ÿพโ€โ™€ playing water polo: medium-dark skin tone medium-dark skin tone | water polo | woman | woman playing water polo | woman playing water polo: medium-dark skin tone -๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ playing water polo: dark skin tone -๐Ÿคฝ๐Ÿฟโ€โ™€ playing water polo: dark skin tone dark skin tone | water polo | woman | woman playing water polo | woman playing water polo: dark skin tone -๐Ÿคพ playing handball ball | handball | person playing handball -๐Ÿคพ๐Ÿป playing handball: light skin tone ball | handball | light skin tone | person playing handball | person playing handball: light skin tone -๐Ÿคพ๐Ÿผ playing handball: medium-light skin tone ball | handball | medium-light skin tone | person playing handball | person playing handball: medium-light skin tone -๐Ÿคพ๐Ÿฝ playing handball: medium skin tone ball | handball | medium skin tone | person playing handball | person playing handball: medium skin tone -๐Ÿคพ๐Ÿพ playing handball: medium-dark skin tone ball | handball | medium-dark skin tone | person playing handball | person playing handball: medium-dark skin tone -๐Ÿคพ๐Ÿฟ playing handball: dark skin tone ball | dark skin tone | handball | person playing handball | person playing handball: dark skin tone -๐Ÿคพโ€โ™‚๏ธ playing handball -๐Ÿคพโ€โ™‚ playing handball handball | man | man playing handball -๐Ÿคพ๐Ÿปโ€โ™‚๏ธ playing handball: light skin tone -๐Ÿคพ๐Ÿปโ€โ™‚ playing handball: light skin tone handball | light skin tone | man | man playing handball | man playing handball: light skin tone -๐Ÿคพ๐Ÿผโ€โ™‚๏ธ playing handball: medium-light skin tone -๐Ÿคพ๐Ÿผโ€โ™‚ playing handball: medium-light skin tone handball | man | man playing handball | man playing handball: medium-light skin tone | medium-light skin tone -๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ playing handball: medium skin tone -๐Ÿคพ๐Ÿฝโ€โ™‚ playing handball: medium skin tone handball | man | man playing handball | man playing handball: medium skin tone | medium skin tone -๐Ÿคพ๐Ÿพโ€โ™‚๏ธ playing handball: medium-dark skin tone -๐Ÿคพ๐Ÿพโ€โ™‚ playing handball: medium-dark skin tone handball | man | man playing handball | man playing handball: medium-dark skin tone | medium-dark skin tone -๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ playing handball: dark skin tone -๐Ÿคพ๐Ÿฟโ€โ™‚ playing handball: dark skin tone dark skin tone | handball | man | man playing handball | man playing handball: dark skin tone -๐Ÿคพโ€โ™€๏ธ playing handball -๐Ÿคพโ€โ™€ playing handball handball | woman | woman playing handball -๐Ÿคพ๐Ÿปโ€โ™€๏ธ playing handball: light skin tone -๐Ÿคพ๐Ÿปโ€โ™€ playing handball: light skin tone handball | light skin tone | woman | woman playing handball | woman playing handball: light skin tone -๐Ÿคพ๐Ÿผโ€โ™€๏ธ playing handball: medium-light skin tone -๐Ÿคพ๐Ÿผโ€โ™€ playing handball: medium-light skin tone handball | medium-light skin tone | woman | woman playing handball | woman playing handball: medium-light skin tone -๐Ÿคพ๐Ÿฝโ€โ™€๏ธ playing handball: medium skin tone -๐Ÿคพ๐Ÿฝโ€โ™€ playing handball: medium skin tone handball | medium skin tone | woman | woman playing handball | woman playing handball: medium skin tone -๐Ÿคพ๐Ÿพโ€โ™€๏ธ playing handball: medium-dark skin tone -๐Ÿคพ๐Ÿพโ€โ™€ playing handball: medium-dark skin tone handball | medium-dark skin tone | woman | woman playing handball | woman playing handball: medium-dark skin tone -๐Ÿคพ๐Ÿฟโ€โ™€๏ธ playing handball: dark skin tone -๐Ÿคพ๐Ÿฟโ€โ™€ playing handball: dark skin tone dark skin tone | handball | woman | woman playing handball | woman playing handball: dark skin tone -๐Ÿคน juggling balance | juggle | multitask | person juggling | skill | multi-task -๐Ÿคน๐Ÿป juggling: light skin tone balance | juggle | light skin tone | multitask | person juggling | person juggling: light skin tone | skill | multi-task -๐Ÿคน๐Ÿผ juggling: medium-light skin tone balance | juggle | medium-light skin tone | multitask | person juggling | person juggling: medium-light skin tone | skill | multi-task -๐Ÿคน๐Ÿฝ juggling: medium skin tone balance | juggle | medium skin tone | multitask | person juggling | person juggling: medium skin tone | skill | multi-task -๐Ÿคน๐Ÿพ juggling: medium-dark skin tone balance | juggle | medium-dark skin tone | multitask | person juggling | person juggling: medium-dark skin tone | skill | multi-task -๐Ÿคน๐Ÿฟ juggling: dark skin tone balance | dark skin tone | juggle | multitask | person juggling | person juggling: dark skin tone | skill | multi-task -๐Ÿคนโ€โ™‚๏ธ juggling -๐Ÿคนโ€โ™‚ juggling juggling | man | multitask | multi-task -๐Ÿคน๐Ÿปโ€โ™‚๏ธ juggling: light skin tone -๐Ÿคน๐Ÿปโ€โ™‚ juggling: light skin tone juggling | light skin tone | man | man juggling: light skin tone | multitask | multi-task -๐Ÿคน๐Ÿผโ€โ™‚๏ธ juggling: medium-light skin tone -๐Ÿคน๐Ÿผโ€โ™‚ juggling: medium-light skin tone juggling | man | man juggling: medium-light skin tone | medium-light skin tone | multitask | multi-task -๐Ÿคน๐Ÿฝโ€โ™‚๏ธ juggling: medium skin tone -๐Ÿคน๐Ÿฝโ€โ™‚ juggling: medium skin tone juggling | man | man juggling: medium skin tone | medium skin tone | multitask | multi-task -๐Ÿคน๐Ÿพโ€โ™‚๏ธ juggling: medium-dark skin tone -๐Ÿคน๐Ÿพโ€โ™‚ juggling: medium-dark skin tone juggling | man | man juggling: medium-dark skin tone | medium-dark skin tone | multitask | multi-task -๐Ÿคน๐Ÿฟโ€โ™‚๏ธ juggling: dark skin tone -๐Ÿคน๐Ÿฟโ€โ™‚ juggling: dark skin tone dark skin tone | juggling | man | man juggling: dark skin tone | multitask | multi-task -๐Ÿคนโ€โ™€๏ธ juggling -๐Ÿคนโ€โ™€ juggling juggling | multitask | woman | multi-task -๐Ÿคน๐Ÿปโ€โ™€๏ธ juggling: light skin tone -๐Ÿคน๐Ÿปโ€โ™€ juggling: light skin tone juggling | light skin tone | multitask | woman | woman juggling: light skin tone | multi-task -๐Ÿคน๐Ÿผโ€โ™€๏ธ juggling: medium-light skin tone -๐Ÿคน๐Ÿผโ€โ™€ juggling: medium-light skin tone juggling | medium-light skin tone | multitask | woman | woman juggling: medium-light skin tone | multi-task -๐Ÿคน๐Ÿฝโ€โ™€๏ธ juggling: medium skin tone -๐Ÿคน๐Ÿฝโ€โ™€ juggling: medium skin tone juggling | medium skin tone | multitask | woman | woman juggling: medium skin tone | multi-task -๐Ÿคน๐Ÿพโ€โ™€๏ธ juggling: medium-dark skin tone -๐Ÿคน๐Ÿพโ€โ™€ juggling: medium-dark skin tone juggling | medium-dark skin tone | multitask | woman | woman juggling: medium-dark skin tone | multi-task -๐Ÿคน๐Ÿฟโ€โ™€๏ธ juggling: dark skin tone -๐Ÿคน๐Ÿฟโ€โ™€ juggling: dark skin tone dark skin tone | juggling | multitask | woman | woman juggling: dark skin tone | multi-task -๐Ÿง˜ meditation | person in lotus position | yoga -๐Ÿง˜๐Ÿป light skin tone light skin tone | meditation | person in lotus position | person in lotus position: light skin tone | yoga -๐Ÿง˜๐Ÿผ medium-light skin tone meditation | medium-light skin tone | person in lotus position | person in lotus position: medium-light skin tone | yoga -๐Ÿง˜๐Ÿฝ medium skin tone meditation | medium skin tone | person in lotus position | person in lotus position: medium skin tone | yoga -๐Ÿง˜๐Ÿพ medium-dark skin tone meditation | medium-dark skin tone | person in lotus position | person in lotus position: medium-dark skin tone | yoga -๐Ÿง˜๐Ÿฟ dark skin tone dark skin tone | meditation | person in lotus position | person in lotus position: dark skin tone | yoga -๐Ÿง˜โ€โ™‚ in lotus position man in lotus position | meditation | yoga -๐Ÿง˜๐Ÿปโ€โ™‚๏ธ light skin tone -๐Ÿง˜๐Ÿปโ€โ™‚ light skin tone light skin tone | man in lotus position | man in lotus position: light skin tone | meditation | yoga -๐Ÿง˜๐Ÿผโ€โ™‚๏ธ medium-light skin tone -๐Ÿง˜๐Ÿผโ€โ™‚ medium-light skin tone man in lotus position | man in lotus position: medium-light skin tone | meditation | medium-light skin tone | yoga -๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ medium skin tone -๐Ÿง˜๐Ÿฝโ€โ™‚ medium skin tone man in lotus position | man in lotus position: medium skin tone | meditation | medium skin tone | yoga -๐Ÿง˜๐Ÿพโ€โ™‚๏ธ medium-dark skin tone -๐Ÿง˜๐Ÿพโ€โ™‚ medium-dark skin tone man in lotus position | man in lotus position: medium-dark skin tone | meditation | medium-dark skin tone | yoga -๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ dark skin tone -๐Ÿง˜๐Ÿฟโ€โ™‚ dark skin tone dark skin tone | man in lotus position | man in lotus position: dark skin tone | meditation | yoga -๐Ÿง˜โ€โ™€๏ธ in lotus position -๐Ÿง˜โ€โ™€ in lotus position meditation | woman in lotus position | yoga -๐Ÿง˜๐Ÿปโ€โ™€๏ธ light skin tone -๐Ÿง˜๐Ÿปโ€โ™€ light skin tone light skin tone | meditation | woman in lotus position | woman in lotus position: light skin tone | yoga -๐Ÿง˜๐Ÿผโ€โ™€๏ธ medium-light skin tone -๐Ÿง˜๐Ÿผโ€โ™€ medium-light skin tone meditation | medium-light skin tone | woman in lotus position | woman in lotus position: medium-light skin tone | yoga -๐Ÿง˜๐Ÿฝโ€โ™€๏ธ medium skin tone -๐Ÿง˜๐Ÿฝโ€โ™€ medium skin tone meditation | medium skin tone | woman in lotus position | woman in lotus position: medium skin tone | yoga -๐Ÿง˜๐Ÿพโ€โ™€๏ธ medium-dark skin tone -๐Ÿง˜๐Ÿพโ€โ™€ medium-dark skin tone meditation | medium-dark skin tone | woman in lotus position | woman in lotus position: medium-dark skin tone | yoga -๐Ÿง˜๐Ÿฟโ€โ™€๏ธ dark skin tone -๐Ÿง˜๐Ÿฟโ€โ™€ dark skin tone dark skin tone | meditation | woman in lotus position | woman in lotus position: dark skin tone | yoga -๐Ÿ›€ taking bath bath | bathtub | person taking bath | tub -๐Ÿ›€๐Ÿป taking bath: light skin tone bath | bathtub | light skin tone | person taking bath | person taking bath: light skin tone | tub -๐Ÿ›€๐Ÿผ taking bath: medium-light skin tone bath | bathtub | medium-light skin tone | person taking bath | person taking bath: medium-light skin tone | tub -๐Ÿ›€๐Ÿฝ taking bath: medium skin tone bath | bathtub | medium skin tone | person taking bath | person taking bath: medium skin tone | tub -๐Ÿ›€๐Ÿพ taking bath: medium-dark skin tone bath | bathtub | medium-dark skin tone | person taking bath | person taking bath: medium-dark skin tone | tub -๐Ÿ›€๐Ÿฟ taking bath: dark skin tone bath | bathtub | dark skin tone | person taking bath | person taking bath: dark skin tone | tub -๐Ÿ›Œ in bed good night | hotel | person in bed | sleep | sleeping -๐Ÿ›Œ๐Ÿป in bed: light skin tone good night | hotel | light skin tone | person in bed | person in bed: light skin tone | sleep | sleeping -๐Ÿ›Œ๐Ÿผ in bed: medium-light skin tone good night | hotel | medium-light skin tone | person in bed | person in bed: medium-light skin tone | sleep | sleeping -๐Ÿ›Œ๐Ÿฝ in bed: medium skin tone good night | hotel | medium skin tone | person in bed | person in bed: medium skin tone | sleep | sleeping -๐Ÿ›Œ๐Ÿพ in bed: medium-dark skin tone good night | hotel | medium-dark skin tone | person in bed | person in bed: medium-dark skin tone | sleep | sleeping -๐Ÿ›Œ๐Ÿฟ in bed: dark skin tone dark skin tone | good night | hotel | person in bed | person in bed: dark skin tone | sleep | sleeping -๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘ couple | hand | hold | holding hands | people holding hands | person -๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป light skin tone couple | hand | hold | holding hands | light skin tone | people holding hands | people holding hands: light skin tone | person -๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ light skin tone, medium-light skin tone couple | hand | hold | holding hands | light skin tone | medium-light skin tone | people holding hands | people holding hands: light skin tone, medium-light skin tone | person -๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ light skin tone, medium skin tone couple | hand | hold | holding hands | light skin tone | medium skin tone | people holding hands | people holding hands: light skin tone, medium skin tone | person -๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ light skin tone, medium-dark skin tone couple | hand | hold | holding hands | light skin tone | medium-dark skin tone | people holding hands | people holding hands: light skin tone, medium-dark skin tone | person -๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ light skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | light skin tone | people holding hands | people holding hands: light skin tone, dark skin tone | person -๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป medium-light skin tone, light skin tone couple | hand | hold | holding hands | light skin tone | medium-light skin tone | people holding hands | people holding hands: medium-light skin tone, light skin tone | person -๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ medium-light skin tone couple | hand | hold | holding hands | medium-light skin tone | people holding hands | people holding hands: medium-light skin tone | person -๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ medium-light skin tone, medium skin tone couple | hand | hold | holding hands | medium skin tone | medium-light skin tone | people holding hands | people holding hands: medium-light skin tone, medium skin tone | person -๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ medium-light skin tone, medium-dark skin tone couple | hand | hold | holding hands | medium-dark skin tone | medium-light skin tone | people holding hands | people holding hands: medium-light skin tone, medium-dark skin tone | person -๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ medium-light skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | medium-light skin tone | people holding hands | people holding hands: medium-light skin tone, dark skin tone | person -๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป medium skin tone, light skin tone couple | hand | hold | holding hands | light skin tone | medium skin tone | people holding hands | people holding hands: medium skin tone, light skin tone | person -๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ medium skin tone, medium-light skin tone couple | hand | hold | holding hands | medium skin tone | medium-light skin tone | people holding hands | people holding hands: medium skin tone, medium-light skin tone | person -๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ medium skin tone couple | hand | hold | holding hands | medium skin tone | people holding hands | people holding hands: medium skin tone | person -๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ medium skin tone, medium-dark skin tone couple | hand | hold | holding hands | medium skin tone | medium-dark skin tone | people holding hands | people holding hands: medium skin tone, medium-dark skin tone | person -๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ medium skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | medium skin tone | people holding hands | people holding hands: medium skin tone, dark skin tone | person -๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป medium-dark skin tone, light skin tone couple | hand | hold | holding hands | light skin tone | medium-dark skin tone | people holding hands | people holding hands: medium-dark skin tone, light skin tone | person -๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ medium-dark skin tone, medium-light skin tone couple | hand | hold | holding hands | medium-dark skin tone | medium-light skin tone | people holding hands | people holding hands: medium-dark skin tone, medium-light skin tone | person -๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ medium-dark skin tone, medium skin tone couple | hand | hold | holding hands | medium skin tone | medium-dark skin tone | people holding hands | people holding hands: medium-dark skin tone, medium skin tone | person -๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ medium-dark skin tone couple | hand | hold | holding hands | medium-dark skin tone | people holding hands | people holding hands: medium-dark skin tone | person -๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ medium-dark skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | medium-dark skin tone | people holding hands | people holding hands: medium-dark skin tone, dark skin tone | person -๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป dark skin tone, light skin tone couple | dark skin tone | hand | hold | holding hands | light skin tone | people holding hands | people holding hands: dark skin tone, light skin tone | person -๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ dark skin tone, medium-light skin tone couple | dark skin tone | hand | hold | holding hands | medium-light skin tone | people holding hands | people holding hands: dark skin tone, medium-light skin tone | person -๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ dark skin tone, medium skin tone couple | dark skin tone | hand | hold | holding hands | medium skin tone | people holding hands | people holding hands: dark skin tone, medium skin tone | person -๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ dark skin tone, medium-dark skin tone couple | dark skin tone | hand | hold | holding hands | medium-dark skin tone | people holding hands | people holding hands: dark skin tone, medium-dark skin tone | person -๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ dark skin tone couple | dark skin tone | hand | hold | holding hands | people holding hands | people holding hands: dark skin tone | person -๐Ÿ‘ญ holding hands couple | hand | holding hands | women | women holding hands | two women holding hands -๐Ÿ‘ญ๐Ÿป light skin tone couple | hand | holding hands | light skin tone | women | women holding hands | women holding hands: light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ light skin tone, medium-light skin tone couple | hand | holding hands | light skin tone | medium-light skin tone | women | women holding hands | women holding hands: light skin tone, medium-light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ light skin tone, medium skin tone couple | hand | holding hands | light skin tone | medium skin tone | women | women holding hands | women holding hands: light skin tone, medium skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ light skin tone, medium-dark skin tone couple | hand | holding hands | light skin tone | medium-dark skin tone | women | women holding hands | women holding hands: light skin tone, medium-dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ light skin tone, dark skin tone couple | dark skin tone | hand | holding hands | light skin tone | women | women holding hands | women holding hands: light skin tone, dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป medium-light skin tone, light skin tone couple | hand | holding hands | light skin tone | medium-light skin tone | women | women holding hands | women holding hands: medium-light skin tone, light skin tone | two women holding hands -๐Ÿ‘ญ๐Ÿผ medium-light skin tone couple | hand | holding hands | medium-light skin tone | women | women holding hands | women holding hands: medium-light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ medium-light skin tone, medium skin tone couple | hand | holding hands | medium skin tone | medium-light skin tone | women | women holding hands | women holding hands: medium-light skin tone, medium skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ medium-light skin tone, medium-dark skin tone couple | hand | holding hands | medium-dark skin tone | medium-light skin tone | women | women holding hands | women holding hands: medium-light skin tone, medium-dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ medium-light skin tone, dark skin tone couple | dark skin tone | hand | holding hands | medium-light skin tone | women | women holding hands | women holding hands: medium-light skin tone, dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป medium skin tone, light skin tone couple | hand | holding hands | light skin tone | medium skin tone | women | women holding hands | women holding hands: medium skin tone, light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ medium skin tone, medium-light skin tone couple | hand | holding hands | medium skin tone | medium-light skin tone | women | women holding hands | women holding hands: medium skin tone, medium-light skin tone | two women holding hands -๐Ÿ‘ญ๐Ÿฝ medium skin tone couple | hand | holding hands | medium skin tone | women | women holding hands | women holding hands: medium skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ medium skin tone, medium-dark skin tone couple | hand | holding hands | medium skin tone | medium-dark skin tone | women | women holding hands | women holding hands: medium skin tone, medium-dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ medium skin tone, dark skin tone couple | dark skin tone | hand | holding hands | medium skin tone | women | women holding hands | women holding hands: medium skin tone, dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป medium-dark skin tone, light skin tone couple | hand | holding hands | light skin tone | medium-dark skin tone | women | women holding hands | women holding hands: medium-dark skin tone, light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ medium-dark skin tone, medium-light skin tone couple | hand | holding hands | medium-dark skin tone | medium-light skin tone | women | women holding hands | women holding hands: medium-dark skin tone, medium-light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ medium-dark skin tone, medium skin tone couple | hand | holding hands | medium skin tone | medium-dark skin tone | women | women holding hands | women holding hands: medium-dark skin tone, medium skin tone | two women holding hands -๐Ÿ‘ญ๐Ÿพ medium-dark skin tone couple | hand | holding hands | medium-dark skin tone | women | women holding hands | women holding hands: medium-dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ medium-dark skin tone, dark skin tone couple | dark skin tone | hand | holding hands | medium-dark skin tone | women | women holding hands | women holding hands: medium-dark skin tone, dark skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป dark skin tone, light skin tone couple | dark skin tone | hand | holding hands | light skin tone | women | women holding hands | women holding hands: dark skin tone, light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ dark skin tone, medium-light skin tone couple | dark skin tone | hand | holding hands | medium-light skin tone | women | women holding hands | women holding hands: dark skin tone, medium-light skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ dark skin tone, medium skin tone couple | dark skin tone | hand | holding hands | medium skin tone | women | women holding hands | women holding hands: dark skin tone, medium skin tone | two women holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ dark skin tone, medium-dark skin tone couple | dark skin tone | hand | holding hands | medium-dark skin tone | women | women holding hands | women holding hands: dark skin tone, medium-dark skin tone | two women holding hands -๐Ÿ‘ญ๐Ÿฟ dark skin tone couple | dark skin tone | hand | holding hands | women | women holding hands | women holding hands: dark skin tone | two women holding hands -๐Ÿ‘ซ couple | hand | hold | holding hands | man | woman | woman and man holding hands | man and woman holding hands -๐Ÿ‘ซ๐Ÿป light skin tone couple | hand | hold | holding hands | light skin tone | man | woman | woman and man holding hands | woman and man holding hands: light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ light skin tone, medium-light skin tone couple | hand | hold | holding hands | light skin tone | man | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: light skin tone, medium-light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ light skin tone, medium skin tone couple | hand | hold | holding hands | light skin tone | man | medium skin tone | woman | woman and man holding hands | woman and man holding hands: light skin tone, medium skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ light skin tone, medium-dark skin tone couple | hand | hold | holding hands | light skin tone | man | medium-dark skin tone | woman | woman and man holding hands | woman and man holding hands: light skin tone, medium-dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ light skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | light skin tone | man | woman | woman and man holding hands | woman and man holding hands: light skin tone, dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป medium-light skin tone, light skin tone couple | hand | hold | holding hands | light skin tone | man | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: medium-light skin tone, light skin tone | man and woman holding hands -๐Ÿ‘ซ๐Ÿผ medium-light skin tone couple | hand | hold | holding hands | man | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: medium-light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ medium-light skin tone, medium skin tone couple | hand | hold | holding hands | man | medium skin tone | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: medium-light skin tone, medium skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ medium-light skin tone, medium-dark skin tone couple | hand | hold | holding hands | man | medium-dark skin tone | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: medium-light skin tone, medium-dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ medium-light skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | man | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: medium-light skin tone, dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป medium skin tone, light skin tone couple | hand | hold | holding hands | light skin tone | man | medium skin tone | woman | woman and man holding hands | woman and man holding hands: medium skin tone, light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ medium skin tone, medium-light skin tone couple | hand | hold | holding hands | man | medium skin tone | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: medium skin tone, medium-light skin tone | man and woman holding hands -๐Ÿ‘ซ๐Ÿฝ medium skin tone couple | hand | hold | holding hands | man | medium skin tone | woman | woman and man holding hands | woman and man holding hands: medium skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ medium skin tone, medium-dark skin tone couple | hand | hold | holding hands | man | medium skin tone | medium-dark skin tone | woman | woman and man holding hands | woman and man holding hands: medium skin tone, medium-dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ medium skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | man | medium skin tone | woman | woman and man holding hands | woman and man holding hands: medium skin tone, dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป medium-dark skin tone, light skin tone couple | hand | hold | holding hands | light skin tone | man | medium-dark skin tone | woman | woman and man holding hands | woman and man holding hands: medium-dark skin tone, light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ medium-dark skin tone, medium-light skin tone couple | hand | hold | holding hands | man | medium-dark skin tone | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: medium-dark skin tone, medium-light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ medium-dark skin tone, medium skin tone couple | hand | hold | holding hands | man | medium skin tone | medium-dark skin tone | woman | woman and man holding hands | woman and man holding hands: medium-dark skin tone, medium skin tone | man and woman holding hands -๐Ÿ‘ซ๐Ÿพ medium-dark skin tone couple | hand | hold | holding hands | man | medium-dark skin tone | woman | woman and man holding hands | woman and man holding hands: medium-dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ medium-dark skin tone, dark skin tone couple | dark skin tone | hand | hold | holding hands | man | medium-dark skin tone | woman | woman and man holding hands | woman and man holding hands: medium-dark skin tone, dark skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป dark skin tone, light skin tone couple | dark skin tone | hand | hold | holding hands | light skin tone | man | woman | woman and man holding hands | woman and man holding hands: dark skin tone, light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ dark skin tone, medium-light skin tone couple | dark skin tone | hand | hold | holding hands | man | medium-light skin tone | woman | woman and man holding hands | woman and man holding hands: dark skin tone, medium-light skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ dark skin tone, medium skin tone couple | dark skin tone | hand | hold | holding hands | man | medium skin tone | woman | woman and man holding hands | woman and man holding hands: dark skin tone, medium skin tone | man and woman holding hands -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ dark skin tone, medium-dark skin tone couple | dark skin tone | hand | hold | holding hands | man | medium-dark skin tone | woman | woman and man holding hands | woman and man holding hands: dark skin tone, medium-dark skin tone | man and woman holding hands -๐Ÿ‘ซ๐Ÿฟ dark skin tone couple | dark skin tone | hand | hold | holding hands | man | woman | woman and man holding hands | woman and man holding hands: dark skin tone | man and woman holding hands -๐Ÿ‘ฌ couple | Gemini | holding hands | man | men | men holding hands | twins | zodiac -๐Ÿ‘ฌ๐Ÿป light skin tone couple | Gemini | holding hands | light skin tone | man | men | men holding hands | men holding hands: light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ light skin tone, medium-light skin tone couple | Gemini | holding hands | light skin tone | man | medium-light skin tone | men | men holding hands | men holding hands: light skin tone, medium-light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ light skin tone, medium skin tone couple | Gemini | holding hands | light skin tone | man | medium skin tone | men | men holding hands | men holding hands: light skin tone, medium skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ light skin tone, medium-dark skin tone couple | Gemini | holding hands | light skin tone | man | medium-dark skin tone | men | men holding hands | men holding hands: light skin tone, medium-dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ light skin tone, dark skin tone couple | dark skin tone | Gemini | holding hands | light skin tone | man | men | men holding hands | men holding hands: light skin tone, dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป medium-light skin tone, light skin tone couple | Gemini | holding hands | light skin tone | man | medium-light skin tone | men | men holding hands | men holding hands: medium-light skin tone, light skin tone | twins | zodiac -๐Ÿ‘ฌ๐Ÿผ medium-light skin tone couple | Gemini | holding hands | man | medium-light skin tone | men | men holding hands | men holding hands: medium-light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ medium-light skin tone, medium skin tone couple | Gemini | holding hands | man | medium skin tone | medium-light skin tone | men | men holding hands | men holding hands: medium-light skin tone, medium skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ medium-light skin tone, medium-dark skin tone couple | Gemini | holding hands | man | medium-dark skin tone | medium-light skin tone | men | men holding hands | men holding hands: medium-light skin tone, medium-dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ medium-light skin tone, dark skin tone couple | dark skin tone | Gemini | holding hands | man | medium-light skin tone | men | men holding hands | men holding hands: medium-light skin tone, dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป medium skin tone, light skin tone couple | Gemini | holding hands | light skin tone | man | medium skin tone | men | men holding hands | men holding hands: medium skin tone, light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ medium skin tone, medium-light skin tone couple | Gemini | holding hands | man | medium skin tone | medium-light skin tone | men | men holding hands | men holding hands: medium skin tone, medium-light skin tone | twins | zodiac -๐Ÿ‘ฌ๐Ÿฝ medium skin tone couple | Gemini | holding hands | man | medium skin tone | men | men holding hands | men holding hands: medium skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ medium skin tone, medium-dark skin tone couple | Gemini | holding hands | man | medium skin tone | medium-dark skin tone | men | men holding hands | men holding hands: medium skin tone, medium-dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ medium skin tone, dark skin tone couple | dark skin tone | Gemini | holding hands | man | medium skin tone | men | men holding hands | men holding hands: medium skin tone, dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป medium-dark skin tone, light skin tone couple | Gemini | holding hands | light skin tone | man | medium-dark skin tone | men | men holding hands | men holding hands: medium-dark skin tone, light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ medium-dark skin tone, medium-light skin tone couple | Gemini | holding hands | man | medium-dark skin tone | medium-light skin tone | men | men holding hands | men holding hands: medium-dark skin tone, medium-light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ medium-dark skin tone, medium skin tone couple | Gemini | holding hands | man | medium skin tone | medium-dark skin tone | men | men holding hands | men holding hands: medium-dark skin tone, medium skin tone | twins | zodiac -๐Ÿ‘ฌ๐Ÿพ medium-dark skin tone couple | Gemini | holding hands | man | medium-dark skin tone | men | men holding hands | men holding hands: medium-dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ medium-dark skin tone, dark skin tone couple | dark skin tone | Gemini | holding hands | man | medium-dark skin tone | men | men holding hands | men holding hands: medium-dark skin tone, dark skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป dark skin tone, light skin tone couple | dark skin tone | Gemini | holding hands | light skin tone | man | men | men holding hands | men holding hands: dark skin tone, light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ dark skin tone, medium-light skin tone couple | dark skin tone | Gemini | holding hands | man | medium-light skin tone | men | men holding hands | men holding hands: dark skin tone, medium-light skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ dark skin tone, medium skin tone couple | dark skin tone | Gemini | holding hands | man | medium skin tone | men | men holding hands | men holding hands: dark skin tone, medium skin tone | twins | zodiac -๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ dark skin tone, medium-dark skin tone couple | dark skin tone | Gemini | holding hands | man | medium-dark skin tone | men | men holding hands | men holding hands: dark skin tone, medium-dark skin tone | twins | zodiac -๐Ÿ‘ฌ๐Ÿฟ dark skin tone couple | dark skin tone | Gemini | holding hands | man | men | men holding hands | men holding hands: dark skin tone | twins | zodiac -๐Ÿ’ couple | kiss -๐Ÿ’๐Ÿป light skin tone couple | kiss | kiss: light skin tone | light skin tone -๐Ÿ’๐Ÿผ medium-light skin tone couple | kiss | kiss: medium-light skin tone | medium-light skin tone -๐Ÿ’๐Ÿฝ medium skin tone couple | kiss | kiss: medium skin tone | medium skin tone -๐Ÿ’๐Ÿพ medium-dark skin tone couple | kiss | kiss: medium-dark skin tone | medium-dark skin tone -๐Ÿ’๐Ÿฟ dark skin tone couple | dark skin tone | kiss | kiss: dark skin tone -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, light skin tone, medium-light skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, light skin tone, medium-light skin tone couple | kiss | kiss: person, person, light skin tone, medium-light skin tone | light skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, light skin tone, medium skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, light skin tone, medium skin tone couple | kiss | kiss: person, person, light skin tone, medium skin tone | light skin tone | medium skin tone | person -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, light skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, light skin tone, medium-dark skin tone couple | kiss | kiss: person, person, light skin tone, medium-dark skin tone | light skin tone | medium-dark skin tone | person -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, light skin tone, dark skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: person, person, light skin tone, dark skin tone | light skin tone | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, medium-light skin tone, light skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, medium-light skin tone, light skin tone couple | kiss | kiss: person, person, medium-light skin tone, light skin tone | light skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, medium-light skin tone, medium skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, medium-light skin tone, medium skin tone couple | kiss | kiss: person, person, medium-light skin tone, medium skin tone | medium skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, medium-light skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, medium-light skin tone, medium-dark skin tone couple | kiss | kiss: person, person, medium-light skin tone, medium-dark skin tone | medium-dark skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, medium-light skin tone, dark skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, medium-light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: person, person, medium-light skin tone, dark skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, medium skin tone, light skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, medium skin tone, light skin tone couple | kiss | kiss: person, person, medium skin tone, light skin tone | light skin tone | medium skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, medium skin tone, medium-light skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, medium skin tone, medium-light skin tone couple | kiss | kiss: person, person, medium skin tone, medium-light skin tone | medium skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, medium skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, medium skin tone, medium-dark skin tone couple | kiss | kiss: person, person, medium skin tone, medium-dark skin tone | medium skin tone | medium-dark skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, medium skin tone, dark skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, medium skin tone, dark skin tone couple | dark skin tone | kiss | kiss: person, person, medium skin tone, dark skin tone | medium skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, medium-dark skin tone, light skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, medium-dark skin tone, light skin tone couple | kiss | kiss: person, person, medium-dark skin tone, light skin tone | light skin tone | medium-dark skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, medium-dark skin tone, medium-light skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, medium-dark skin tone, medium-light skin tone couple | kiss | kiss: person, person, medium-dark skin tone, medium-light skin tone | medium-dark skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, medium-dark skin tone, medium skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, medium-dark skin tone, medium skin tone couple | kiss | kiss: person, person, medium-dark skin tone, medium skin tone | medium skin tone | medium-dark skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, medium-dark skin tone, dark skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ person, person, medium-dark skin tone, dark skin tone couple | dark skin tone | kiss | kiss: person, person, medium-dark skin tone, dark skin tone | medium-dark skin tone | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, dark skin tone, light skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป person, person, dark skin tone, light skin tone couple | dark skin tone | kiss | kiss: person, person, dark skin tone, light skin tone | light skin tone | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, dark skin tone, medium-light skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ person, person, dark skin tone, medium-light skin tone couple | dark skin tone | kiss | kiss: person, person, dark skin tone, medium-light skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, dark skin tone, medium skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ person, person, dark skin tone, medium skin tone couple | dark skin tone | kiss | kiss: person, person, dark skin tone, medium skin tone | medium skin tone | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, dark skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ person, person, dark skin tone, medium-dark skin tone couple | dark skin tone | kiss | kiss: person, person, dark skin tone, medium-dark skin tone | medium-dark skin tone | person -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ woman, man -๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ woman, man couple | kiss | kiss: woman, man | man | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, light skin tone couple | kiss | kiss: woman, man, light skin tone | light skin tone | man | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, light skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, light skin tone, medium-light skin tone couple | kiss | kiss: woman, man, light skin tone, medium-light skin tone | light skin tone | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, light skin tone, medium skin tone couple | kiss | kiss: woman, man, light skin tone, medium skin tone | light skin tone | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, light skin tone, medium-dark skin tone couple | kiss | kiss: woman, man, light skin tone, medium-dark skin tone | light skin tone | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, man, light skin tone, dark skin tone | light skin tone | man | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, medium-light skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, medium-light skin tone, light skin tone couple | kiss | kiss: woman, man, medium-light skin tone, light skin tone | light skin tone | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, medium-light skin tone couple | kiss | kiss: woman, man, medium-light skin tone | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, medium-light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, medium-light skin tone, medium skin tone couple | kiss | kiss: woman, man, medium-light skin tone, medium skin tone | man | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, medium-light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, medium-light skin tone, medium-dark skin tone couple | kiss | kiss: woman, man, medium-light skin tone, medium-dark skin tone | man | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, medium-light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, medium-light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, man, medium-light skin tone, dark skin tone | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, medium skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, medium skin tone, light skin tone couple | kiss | kiss: woman, man, medium skin tone, light skin tone | light skin tone | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, medium skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, medium skin tone, medium-light skin tone couple | kiss | kiss: woman, man, medium skin tone, medium-light skin tone | man | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, medium skin tone couple | kiss | kiss: woman, man, medium skin tone | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, medium skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, medium skin tone, medium-dark skin tone couple | kiss | kiss: woman, man, medium skin tone, medium-dark skin tone | man | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, medium skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, medium skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, man, medium skin tone, dark skin tone | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, medium-dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, medium-dark skin tone, light skin tone couple | kiss | kiss: woman, man, medium-dark skin tone, light skin tone | light skin tone | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, medium-dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, medium-dark skin tone, medium-light skin tone couple | kiss | kiss: woman, man, medium-dark skin tone, medium-light skin tone | man | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, medium-dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, medium-dark skin tone, medium skin tone couple | kiss | kiss: woman, man, medium-dark skin tone, medium skin tone | man | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, medium-dark skin tone couple | kiss | kiss: woman, man, medium-dark skin tone | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, medium-dark skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, medium-dark skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, man, medium-dark skin tone, dark skin tone | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป woman, man, dark skin tone, light skin tone couple | dark skin tone | kiss | kiss: woman, man, dark skin tone, light skin tone | light skin tone | man | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ woman, man, dark skin tone, medium-light skin tone couple | dark skin tone | kiss | kiss: woman, man, dark skin tone, medium-light skin tone | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ woman, man, dark skin tone, medium skin tone couple | dark skin tone | kiss | kiss: woman, man, dark skin tone, medium skin tone | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, dark skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ woman, man, dark skin tone, medium-dark skin tone couple | dark skin tone | kiss | kiss: woman, man, dark skin tone, medium-dark skin tone | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ woman, man, dark skin tone couple | dark skin tone | kiss | kiss: woman, man, dark skin tone | man | woman -๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ man, man -๐Ÿ‘จโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ man, man couple | kiss | kiss: man, man | man -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, light skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, light skin tone couple | kiss | kiss: man, man, light skin tone | light skin tone | man -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, light skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, light skin tone, medium-light skin tone couple | kiss | kiss: man, man, light skin tone, medium-light skin tone | light skin tone | man | medium-light skin tone -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, light skin tone, medium skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, light skin tone, medium skin tone couple | kiss | kiss: man, man, light skin tone, medium skin tone | light skin tone | man | medium skin tone -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, light skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, light skin tone, medium-dark skin tone couple | kiss | kiss: man, man, light skin tone, medium-dark skin tone | light skin tone | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, light skin tone, dark skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: man, man, light skin tone, dark skin tone | light skin tone | man -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, medium-light skin tone, light skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, medium-light skin tone, light skin tone couple | kiss | kiss: man, man, medium-light skin tone, light skin tone | light skin tone | man | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, medium-light skin tone couple | kiss | kiss: man, man, medium-light skin tone | man | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, medium-light skin tone, medium skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, medium-light skin tone, medium skin tone couple | kiss | kiss: man, man, medium-light skin tone, medium skin tone | man | medium skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, medium-light skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, medium-light skin tone, medium-dark skin tone couple | kiss | kiss: man, man, medium-light skin tone, medium-dark skin tone | man | medium-dark skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, medium-light skin tone, dark skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, medium-light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: man, man, medium-light skin tone, dark skin tone | man | medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, medium skin tone, light skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, medium skin tone, light skin tone couple | kiss | kiss: man, man, medium skin tone, light skin tone | light skin tone | man | medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, medium skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, medium skin tone, medium-light skin tone couple | kiss | kiss: man, man, medium skin tone, medium-light skin tone | man | medium skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, medium skin tone couple | kiss | kiss: man, man, medium skin tone | man | medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, medium skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, medium skin tone, medium-dark skin tone couple | kiss | kiss: man, man, medium skin tone, medium-dark skin tone | man | medium skin tone | medium-dark skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, medium skin tone, dark skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, medium skin tone, dark skin tone couple | dark skin tone | kiss | kiss: man, man, medium skin tone, dark skin tone | man | medium skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, medium-dark skin tone, light skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, medium-dark skin tone, light skin tone couple | kiss | kiss: man, man, medium-dark skin tone, light skin tone | light skin tone | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, medium-dark skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, medium-dark skin tone, medium-light skin tone couple | kiss | kiss: man, man, medium-dark skin tone, medium-light skin tone | man | medium-dark skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, medium-dark skin tone, medium skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, medium-dark skin tone, medium skin tone couple | kiss | kiss: man, man, medium-dark skin tone, medium skin tone | man | medium skin tone | medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, medium-dark skin tone couple | kiss | kiss: man, man, medium-dark skin tone | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, medium-dark skin tone, dark skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, medium-dark skin tone, dark skin tone couple | dark skin tone | kiss | kiss: man, man, medium-dark skin tone, dark skin tone | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, dark skin tone, light skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป man, man, dark skin tone, light skin tone couple | dark skin tone | kiss | kiss: man, man, dark skin tone, light skin tone | light skin tone | man -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, dark skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ man, man, dark skin tone, medium-light skin tone couple | dark skin tone | kiss | kiss: man, man, dark skin tone, medium-light skin tone | man | medium-light skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, dark skin tone, medium skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ man, man, dark skin tone, medium skin tone couple | dark skin tone | kiss | kiss: man, man, dark skin tone, medium skin tone | man | medium skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, dark skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ man, man, dark skin tone, medium-dark skin tone couple | dark skin tone | kiss | kiss: man, man, dark skin tone, medium-dark skin tone | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ man, man, dark skin tone couple | dark skin tone | kiss | kiss: man, man, dark skin tone | man -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ woman, woman -๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ woman, woman couple | kiss | kiss: woman, woman | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, light skin tone couple | kiss | kiss: woman, woman, light skin tone | light skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, light skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, light skin tone, medium-light skin tone couple | kiss | kiss: woman, woman, light skin tone, medium-light skin tone | light skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, light skin tone, medium skin tone couple | kiss | kiss: woman, woman, light skin tone, medium skin tone | light skin tone | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, light skin tone, medium-dark skin tone couple | kiss | kiss: woman, woman, light skin tone, medium-dark skin tone | light skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, woman, light skin tone, dark skin tone | light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, medium-light skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, medium-light skin tone, light skin tone couple | kiss | kiss: woman, woman, medium-light skin tone, light skin tone | light skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, medium-light skin tone couple | kiss | kiss: woman, woman, medium-light skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, medium-light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, medium-light skin tone, medium skin tone couple | kiss | kiss: woman, woman, medium-light skin tone, medium skin tone | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, medium-light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, medium-light skin tone, medium-dark skin tone couple | kiss | kiss: woman, woman, medium-light skin tone, medium-dark skin tone | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, medium-light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, medium-light skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, woman, medium-light skin tone, dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, medium skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, medium skin tone, light skin tone couple | kiss | kiss: woman, woman, medium skin tone, light skin tone | light skin tone | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, medium skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, medium skin tone, medium-light skin tone couple | kiss | kiss: woman, woman, medium skin tone, medium-light skin tone | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, medium skin tone couple | kiss | kiss: woman, woman, medium skin tone | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, medium skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, medium skin tone, medium-dark skin tone couple | kiss | kiss: woman, woman, medium skin tone, medium-dark skin tone | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, medium skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, medium skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, woman, medium skin tone, dark skin tone | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, medium-dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, medium-dark skin tone, light skin tone couple | kiss | kiss: woman, woman, medium-dark skin tone, light skin tone | light skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, medium-dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, medium-dark skin tone, medium-light skin tone couple | kiss | kiss: woman, woman, medium-dark skin tone, medium-light skin tone | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, medium-dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, medium-dark skin tone, medium skin tone couple | kiss | kiss: woman, woman, medium-dark skin tone, medium skin tone | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, medium-dark skin tone couple | kiss | kiss: woman, woman, medium-dark skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, medium-dark skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, medium-dark skin tone, dark skin tone couple | dark skin tone | kiss | kiss: woman, woman, medium-dark skin tone, dark skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป woman, woman, dark skin tone, light skin tone couple | dark skin tone | kiss | kiss: woman, woman, dark skin tone, light skin tone | light skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ woman, woman, dark skin tone, medium-light skin tone couple | dark skin tone | kiss | kiss: woman, woman, dark skin tone, medium-light skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ woman, woman, dark skin tone, medium skin tone couple | dark skin tone | kiss | kiss: woman, woman, dark skin tone, medium skin tone | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, dark skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ woman, woman, dark skin tone, medium-dark skin tone couple | dark skin tone | kiss | kiss: woman, woman, dark skin tone, medium-dark skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ woman, woman, dark skin tone couple | dark skin tone | kiss | kiss: woman, woman, dark skin tone | woman -๐Ÿ’‘ with heart couple | couple with heart | love -๐Ÿ’‘๐Ÿป with heart: light skin tone couple | couple with heart | couple with heart: light skin tone | light skin tone | love -๐Ÿ’‘๐Ÿผ with heart: medium-light skin tone couple | couple with heart | couple with heart: medium-light skin tone | love | medium-light skin tone -๐Ÿ’‘๐Ÿฝ with heart: medium skin tone couple | couple with heart | couple with heart: medium skin tone | love | medium skin tone -๐Ÿ’‘๐Ÿพ with heart: medium-dark skin tone couple | couple with heart | couple with heart: medium-dark skin tone | love | medium-dark skin tone -๐Ÿ’‘๐Ÿฟ with heart: dark skin tone couple | couple with heart | couple with heart: dark skin tone | dark skin tone | love -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿผ with heart: person, person, light skin tone, medium-light skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿผ with heart: person, person, light skin tone, medium-light skin tone couple | couple with heart | couple with heart: person, person, light skin tone, medium-light skin tone | light skin tone | love | medium-light skin tone | person -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ with heart: person, person, light skin tone, medium skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿฝ with heart: person, person, light skin tone, medium skin tone couple | couple with heart | couple with heart: person, person, light skin tone, medium skin tone | light skin tone | love | medium skin tone | person -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿพ with heart: person, person, light skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿพ with heart: person, person, light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: person, person, light skin tone, medium-dark skin tone | light skin tone | love | medium-dark skin tone | person -๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ with heart: person, person, light skin tone, dark skin tone -๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿฟ with heart: person, person, light skin tone, dark skin tone couple | couple with heart | couple with heart: person, person, light skin tone, dark skin tone | dark skin tone | light skin tone | love | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿป with heart: person, person, medium-light skin tone, light skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿป with heart: person, person, medium-light skin tone, light skin tone couple | couple with heart | couple with heart: person, person, medium-light skin tone, light skin tone | light skin tone | love | medium-light skin tone | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ with heart: person, person, medium-light skin tone, medium skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿฝ with heart: person, person, medium-light skin tone, medium skin tone couple | couple with heart | couple with heart: person, person, medium-light skin tone, medium skin tone | love | medium skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿพ with heart: person, person, medium-light skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿพ with heart: person, person, medium-light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: person, person, medium-light skin tone, medium-dark skin tone | love | medium-dark skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ with heart: person, person, medium-light skin tone, dark skin tone -๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿฟ with heart: person, person, medium-light skin tone, dark skin tone couple | couple with heart | couple with heart: person, person, medium-light skin tone, dark skin tone | dark skin tone | love | medium-light skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿป with heart: person, person, medium skin tone, light skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿป with heart: person, person, medium skin tone, light skin tone couple | couple with heart | couple with heart: person, person, medium skin tone, light skin tone | light skin tone | love | medium skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿผ with heart: person, person, medium skin tone, medium-light skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿผ with heart: person, person, medium skin tone, medium-light skin tone couple | couple with heart | couple with heart: person, person, medium skin tone, medium-light skin tone | love | medium skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿพ with heart: person, person, medium skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿพ with heart: person, person, medium skin tone, medium-dark skin tone couple | couple with heart | couple with heart: person, person, medium skin tone, medium-dark skin tone | love | medium skin tone | medium-dark skin tone | person -๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ with heart: person, person, medium skin tone, dark skin tone -๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿฟ with heart: person, person, medium skin tone, dark skin tone couple | couple with heart | couple with heart: person, person, medium skin tone, dark skin tone | dark skin tone | love | medium skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿป with heart: person, person, medium-dark skin tone, light skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿป with heart: person, person, medium-dark skin tone, light skin tone couple | couple with heart | couple with heart: person, person, medium-dark skin tone, light skin tone | light skin tone | love | medium-dark skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿผ with heart: person, person, medium-dark skin tone, medium-light skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿผ with heart: person, person, medium-dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: person, person, medium-dark skin tone, medium-light skin tone | love | medium-dark skin tone | medium-light skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ with heart: person, person, medium-dark skin tone, medium skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿฝ with heart: person, person, medium-dark skin tone, medium skin tone couple | couple with heart | couple with heart: person, person, medium-dark skin tone, medium skin tone | love | medium skin tone | medium-dark skin tone | person -๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ with heart: person, person, medium-dark skin tone, dark skin tone -๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿฟ with heart: person, person, medium-dark skin tone, dark skin tone couple | couple with heart | couple with heart: person, person, medium-dark skin tone, dark skin tone | dark skin tone | love | medium-dark skin tone | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿป with heart: person, person, dark skin tone, light skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿป with heart: person, person, dark skin tone, light skin tone couple | couple with heart | couple with heart: person, person, dark skin tone, light skin tone | dark skin tone | light skin tone | love | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿผ with heart: person, person, dark skin tone, medium-light skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿผ with heart: person, person, dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: person, person, dark skin tone, medium-light skin tone | dark skin tone | love | medium-light skin tone | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ with heart: person, person, dark skin tone, medium skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿฝ with heart: person, person, dark skin tone, medium skin tone couple | couple with heart | couple with heart: person, person, dark skin tone, medium skin tone | dark skin tone | love | medium skin tone | person -๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿพ with heart: person, person, dark skin tone, medium-dark skin tone -๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿพ with heart: person, person, dark skin tone, medium-dark skin tone couple | couple with heart | couple with heart: person, person, dark skin tone, medium-dark skin tone | dark skin tone | love | medium-dark skin tone | person -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ with heart: woman, man -๐Ÿ‘ฉโ€โคโ€๐Ÿ‘จ with heart: woman, man couple | couple with heart | couple with heart: woman, man | love | man | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, light skin tone couple | couple with heart | couple with heart: woman, man, light skin tone | light skin tone | love | man | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, light skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, light skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, man, light skin tone, medium-light skin tone | light skin tone | love | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, light skin tone, medium skin tone couple | couple with heart | couple with heart: woman, man, light skin tone, medium skin tone | light skin tone | love | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, man, light skin tone, medium-dark skin tone | light skin tone | love | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, light skin tone, dark skin tone couple | couple with heart | couple with heart: woman, man, light skin tone, dark skin tone | dark skin tone | light skin tone | love | man | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, medium-light skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, medium-light skin tone, light skin tone couple | couple with heart | couple with heart: woman, man, medium-light skin tone, light skin tone | light skin tone | love | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, medium-light skin tone couple | couple with heart | couple with heart: woman, man, medium-light skin tone | love | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, medium-light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, medium-light skin tone, medium skin tone couple | couple with heart | couple with heart: woman, man, medium-light skin tone, medium skin tone | love | man | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, medium-light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, medium-light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, man, medium-light skin tone, medium-dark skin tone | love | man | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, medium-light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, medium-light skin tone, dark skin tone couple | couple with heart | couple with heart: woman, man, medium-light skin tone, dark skin tone | dark skin tone | love | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, medium skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, medium skin tone, light skin tone couple | couple with heart | couple with heart: woman, man, medium skin tone, light skin tone | light skin tone | love | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, medium skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, medium skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, man, medium skin tone, medium-light skin tone | love | man | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, medium skin tone couple | couple with heart | couple with heart: woman, man, medium skin tone | love | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, medium skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, medium skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, man, medium skin tone, medium-dark skin tone | love | man | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, medium skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, medium skin tone, dark skin tone couple | couple with heart | couple with heart: woman, man, medium skin tone, dark skin tone | dark skin tone | love | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, medium-dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, medium-dark skin tone, light skin tone couple | couple with heart | couple with heart: woman, man, medium-dark skin tone, light skin tone | light skin tone | love | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, medium-dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, medium-dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, man, medium-dark skin tone, medium-light skin tone | love | man | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, medium-dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, medium-dark skin tone, medium skin tone couple | couple with heart | couple with heart: woman, man, medium-dark skin tone, medium skin tone | love | man | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, medium-dark skin tone couple | couple with heart | couple with heart: woman, man, medium-dark skin tone | love | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, medium-dark skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, medium-dark skin tone, dark skin tone couple | couple with heart | couple with heart: woman, man, medium-dark skin tone, dark skin tone | dark skin tone | love | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: woman, man, dark skin tone, light skin tone couple | couple with heart | couple with heart: woman, man, dark skin tone, light skin tone | dark skin tone | light skin tone | love | man | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: woman, man, dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, man, dark skin tone, medium-light skin tone | dark skin tone | love | man | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: woman, man, dark skin tone, medium skin tone couple | couple with heart | couple with heart: woman, man, dark skin tone, medium skin tone | dark skin tone | love | man | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, dark skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: woman, man, dark skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, man, dark skin tone, medium-dark skin tone | dark skin tone | love | man | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: woman, man, dark skin tone couple | couple with heart | couple with heart: woman, man, dark skin tone | dark skin tone | love | man | woman -๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ with heart: man, man -๐Ÿ‘จโ€โคโ€๐Ÿ‘จ with heart: man, man couple | couple with heart | couple with heart: man, man | love | man -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: man, man, light skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: man, man, light skin tone couple | couple with heart | couple with heart: man, man, light skin tone | light skin tone | love | man -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, light skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, light skin tone, medium-light skin tone couple | couple with heart | couple with heart: man, man, light skin tone, medium-light skin tone | light skin tone | love | man | medium-light skin tone -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, light skin tone, medium skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, light skin tone, medium skin tone couple | couple with heart | couple with heart: man, man, light skin tone, medium skin tone | light skin tone | love | man | medium skin tone -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ ith heart: man, man, light skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: man, man, light skin tone, medium-dark skin tone | light skin tone | love | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, light skin tone, dark skin tone -๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, light skin tone, dark skin tone couple | couple with heart | couple with heart: man, man, light skin tone, dark skin tone | dark skin tone | light skin tone | love | man -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: man, man, medium-light skin tone, light skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: man, man, medium-light skin tone, light skin tone couple | couple with heart | couple with heart: man, man, medium-light skin tone, light skin tone | light skin tone | love | man | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, medium-light skin tone couple | couple with heart | couple with heart: man, man, medium-light skin tone | love | man | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, medium-light skin tone, medium skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, medium-light skin tone, medium skin tone couple | couple with heart | couple with heart: man, man, medium-light skin tone, medium skin tone | love | man | medium skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, medium-light skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, medium-light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: man, man, medium-light skin tone, medium-dark skin tone | love | man | medium-dark skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, medium-light skin tone, dark skin tone -๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, medium-light skin tone, dark skin tone couple | couple with heart | couple with heart: man, man, medium-light skin tone, dark skin tone | dark skin tone | love | man | medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: man, man, medium skin tone, light skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: man, man, medium skin tone, light skin tone couple | couple with heart | couple with heart: man, man, medium skin tone, light skin tone | light skin tone | love | man | medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, medium skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, medium skin tone, medium-light skin tone couple | couple with heart | couple with heart: man, man, medium skin tone, medium-light skin tone | love | man | medium skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, medium skin tone couple | couple with heart | couple with heart: man, man, medium skin tone | love | man | medium skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, medium skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, medium skin tone, medium-dark skin tone couple | couple with heart | couple with heart: man, man, medium skin tone, medium-dark skin tone | love | man | medium skin tone | medium-dark skin tone -๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, medium skin tone, dark skin tone -๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, medium skin tone, dark skin tone couple | couple with heart | couple with heart: man, man, medium skin tone, dark skin tone | dark skin tone | love | man | medium skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: man, man, medium-dark skin tone, light skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: man, man, medium-dark skin tone, light skin tone couple | couple with heart | couple with heart: man, man, medium-dark skin tone, light skin tone | light skin tone | love | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, medium-dark skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, medium-dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: man, man, medium-dark skin tone, medium-light skin tone | love | man | medium-dark skin tone | medium-light skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, medium-dark skin tone, medium skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, medium-dark skin tone, medium skin tone couple | couple with heart | couple with heart: man, man, medium-dark skin tone, medium skin tone | love | man | medium skin tone | medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, medium-dark skin tone couple | couple with heart | couple with heart: man, man, medium-dark skin tone | love | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, medium-dark skin tone, dark skin tone -๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, medium-dark skin tone, dark skin tone couple | couple with heart | couple with heart: man, man, medium-dark skin tone, dark skin tone | dark skin tone | love | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป with heart: man, man, dark skin tone, light skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿป with heart: man, man, dark skin tone, light skin tone couple | couple with heart | couple with heart: man, man, dark skin tone, light skin tone | dark skin tone | light skin tone | love | man -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, dark skin tone, medium-light skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿผ with heart: man, man, dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: man, man, dark skin tone, medium-light skin tone | dark skin tone | love | man | medium-light skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, dark skin tone, medium skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฝ with heart: man, man, dark skin tone, medium skin tone couple | couple with heart | couple with heart: man, man, dark skin tone, medium skin tone | dark skin tone | love | man | medium skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, dark skin tone, medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿพ with heart: man, man, dark skin tone, medium-dark skin tone couple | couple with heart | couple with heart: man, man, dark skin tone, medium-dark skin tone | dark skin tone | love | man | medium-dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, dark skin tone -๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฟ with heart: man, man, dark skin tone couple | couple with heart | couple with heart: man, man, dark skin tone | dark skin tone | love | man -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ with heart: woman, woman -๐Ÿ‘ฉโ€โคโ€๐Ÿ‘ฉ with heart: woman, woman couple | couple with heart | couple with heart: woman, woman | love | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, light skin tone couple | couple with heart | couple with heart: woman, woman, light skin tone | light skin tone | love | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, light skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, light skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, woman, light skin tone, medium-light skin tone | light skin tone | love | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, light skin tone, medium skin tone couple | couple with heart | couple with heart: woman, woman, light skin tone, medium skin tone | light skin tone | love | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, woman, light skin tone, medium-dark skin tone | light skin tone | love | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, light skin tone, dark skin tone couple | couple with heart | couple with heart: woman, woman, light skin tone, dark skin tone | dark skin tone | light skin tone | love | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, medium-light skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, medium-light skin tone, light skin tone couple | couple with heart | couple with heart: woman, woman, medium-light skin tone, light skin tone | light skin tone | love | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, medium-light skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, medium-light skin tone couple | couple with heart | couple with heart: woman, woman, medium-light skin tone | love | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, medium-light skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, medium-light skin tone, medium skin tone couple | couple with heart | couple with heart: woman, woman, medium-light skin tone, medium skin tone | love | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, medium-light skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, medium-light skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone | love | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, medium-light skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, medium-light skin tone, dark skin tone couple | couple with heart | couple with heart: woman, woman, medium-light skin tone, dark skin tone | dark skin tone | love | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, medium skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, medium skin tone, light skin tone couple | couple with heart | couple with heart: woman, woman, medium skin tone, light skin tone | light skin tone | love | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, medium skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, medium skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, woman, medium skin tone, medium-light skin tone | love | medium skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, medium skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, medium skin tone couple | couple with heart | couple with heart: woman, woman, medium skin tone | love | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, medium skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, medium skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, woman, medium skin tone, medium-dark skin tone | love | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, medium skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, medium skin tone, dark skin tone couple | couple with heart | couple with heart: woman, woman, medium skin tone, dark skin tone | dark skin tone | love | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, medium-dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, medium-dark skin tone, light skin tone couple | couple with heart | couple with heart: woman, woman, medium-dark skin tone, light skin tone | light skin tone | love | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, medium-dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, medium-dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone | love | medium-dark skin tone | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, medium-dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, medium-dark skin tone, medium skin tone couple | couple with heart | couple with heart: woman, woman, medium-dark skin tone, medium skin tone | love | medium skin tone | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, medium-dark skin tone couple | couple with heart | couple with heart: woman, woman, medium-dark skin tone | love | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, medium-dark skin tone, dark skin tone -๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, medium-dark skin tone, dark skin tone couple | couple with heart | couple with heart: woman, woman, medium-dark skin tone, dark skin tone | dark skin tone | love | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, dark skin tone, light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿป with heart: woman, woman, dark skin tone, light skin tone couple | couple with heart | couple with heart: woman, woman, dark skin tone, light skin tone | dark skin tone | light skin tone | love | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, dark skin tone, medium-light skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿผ with heart: woman, woman, dark skin tone, medium-light skin tone couple | couple with heart | couple with heart: woman, woman, dark skin tone, medium-light skin tone | dark skin tone | love | medium-light skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, dark skin tone, medium skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ with heart: woman, woman, dark skin tone, medium skin tone couple | couple with heart | couple with heart: woman, woman, dark skin tone, medium skin tone | dark skin tone | love | medium skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, dark skin tone, medium-dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿพ with heart: woman, woman, dark skin tone, medium-dark skin tone couple | couple with heart | couple with heart: woman, woman, dark skin tone, medium-dark skin tone | dark skin tone | love | medium-dark skin tone | woman -๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, dark skin tone -๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ with heart: woman, woman, dark skin tone couple | couple with heart | couple with heart: woman, woman, dark skin tone | dark skin tone | love | woman -๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ man, woman, boy boy | family | family: man, woman, boy | man | woman -๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง man, woman, girl family | family: man, woman, girl | girl | man | woman -๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ man, woman, girl, boy boy | family | family: man, woman, girl, boy | girl | man | woman -๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ man, woman, boy, boy boy | family | family: man, woman, boy, boy | man | woman -๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง man, woman, girl, girl family | family: man, woman, girl, girl | girl | man | woman -๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ man, man, boy boy | family | family: man, man, boy | man -๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง man, man, girl family | family: man, man, girl | girl | man -๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ man, man, girl, boy boy | family | family: man, man, girl, boy | girl | man -๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ man, man, boy, boy boy | family | family: man, man, boy, boy | man -๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง man, man, girl, girl family | family: man, man, girl, girl | girl | man -๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ woman, woman, boy boy | family | family: woman, woman, boy | woman -๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง woman, woman, girl family | family: woman, woman, girl | girl | woman -๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ woman, woman, girl, boy boy | family | family: woman, woman, girl, boy | girl | woman -๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ woman, woman, boy, boy boy | family | family: woman, woman, boy, boy | woman -๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง woman, woman, girl, girl family | family: woman, woman, girl, girl | girl | woman -๐Ÿ‘จโ€๐Ÿ‘ฆ man, boy boy | family | family: man, boy | man -๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ man, boy, boy boy | family | family: man, boy, boy | man -๐Ÿ‘จโ€๐Ÿ‘ง man, girl family | family: man, girl | girl | man -๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ man, girl, boy boy | family | family: man, girl, boy | girl | man -๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง man, girl, girl family | family: man, girl, girl | girl | man -๐Ÿ‘ฉโ€๐Ÿ‘ฆ woman, boy boy | family | family: woman, boy | woman -๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ woman, boy, boy boy | family | family: woman, boy, boy | woman -๐Ÿ‘ฉโ€๐Ÿ‘ง woman, girl family | family: woman, girl | girl | woman -๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ woman, girl, boy boy | family | family: woman, girl, boy | girl | woman -๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง woman, girl, girl family | family: woman, girl, girl | girl | woman -๐Ÿ—ฃ๏ธ head -๐Ÿ—ฃ head face | head | silhouette | speak | speaking -๐Ÿ‘ค in silhouette bust | bust in silhouette | silhouette -๐Ÿ‘ฅ in silhouette bust | busts in silhouette | silhouette -๐Ÿซ‚ hugging goodbye | hello | hug | people hugging | thanks -๐Ÿ‘ช family -๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’ adult, adult, child family: adult, adult, child -๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ adult, adult, child, child family: adult, adult, child, child -๐Ÿง‘โ€๐Ÿง’ adult, child family: adult, child -๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ adult, child, child family: adult, child, child -๐Ÿ‘ฃ clothing | footprint | footprints | print -๐Ÿป Component skin-tone skin tone light skin tone | skin tone | type 1โ€“2 -๐Ÿผ Component skin-tone skin tone medium-light skin tone | skin tone | type 3 -๐Ÿฝ Component skin-tone skin tone medium skin tone | skin tone | type 4 -๐Ÿพ Component skin-tone skin tone medium-dark skin tone | skin tone | type 5 -๐Ÿฟ Component skin-tone skin tone dark skin tone | skin tone | type 6 -๐Ÿฆฐ Component hair-style hair ginger | red hair | redhead -๐Ÿฆฑ Component hair-style hair afro | curly | curly hair | ringlets -๐Ÿฆณ Component hair-style hair gray | hair | old | white | grey -๐Ÿฆฒ Component hair-style bald | chemotherapy | hairless | no hair | shaven -๐Ÿต face face | monkey -๐Ÿ’ monkey -๐Ÿฆ gorilla -๐Ÿฆง ape | orangutan -๐Ÿถ face dog | face | pet -๐Ÿ• dog | pet -๐Ÿฆฎ dog accessibility | blind | guide | guide dog -๐Ÿ•โ€๐Ÿฆบ dog accessibility | assistance | dog | service -๐Ÿฉ dog | poodle -๐Ÿบ face | wolf -๐ŸฆŠ face | fox -๐Ÿฆ curious | raccoon | sly -๐Ÿฑ face cat | face | pet -๐Ÿˆ cat | pet -๐Ÿˆโ€โฌ› cat black | cat | unlucky -๐Ÿฆ face | Leo | lion | zodiac -๐Ÿฏ face face | tiger -๐Ÿ… tiger -๐Ÿ† leopard -๐Ÿด face face | horse -๐ŸซŽ animal | antlers | elk | mammal | moose -๐Ÿซ animal | ass | burro | donkey | mammal | mule | stubborn -๐ŸŽ equestrian | horse | racehorse | racing -๐Ÿฆ„ face | unicorn -๐Ÿฆ“ stripe | zebra -๐ŸฆŒ deer | stag -๐Ÿฆฌ bison | buffalo | herd | wisent -๐Ÿฎ face cow | face -๐Ÿ‚ bull | ox | Taurus | zodiac -๐Ÿƒ buffalo buffalo | water -๐Ÿ„ cow -๐Ÿท face face | pig -๐Ÿ– pig | sow -๐Ÿ— boar | pig -๐Ÿฝ nose face | nose | pig -๐Ÿ Aries | male | ram | sheep | zodiac -๐Ÿ‘ ewe | female | sheep -๐Ÿ Capricorn | goat | zodiac -๐Ÿช camel | dromedary | hump -๐Ÿซ camel bactrian | camel | hump | two-hump camel | Bactrian -๐Ÿฆ™ alpaca | guanaco | llama | vicuรฑa | wool -๐Ÿฆ’ giraffe | spots -๐Ÿ˜ elephant -๐Ÿฆฃ extinction | large | mammoth | tusk | woolly | extinct -๐Ÿฆ rhinoceros | rhino -๐Ÿฆ› hippo | hippopotamus -๐Ÿญ face face | mouse | pet -๐Ÿ mouse | pet | rodent -๐Ÿ€ rat | pet | rodent -๐Ÿน face | hamster | pet -๐Ÿฐ face bunny | face | pet | rabbit -๐Ÿ‡ bunny | pet | rabbit -๐Ÿฟ chipmunk | squirrel -๐Ÿฆซ beaver | dam -๐Ÿฆ” hedgehog | spiny -๐Ÿฆ‡ bat | vampire -๐Ÿป bear | face -๐Ÿปโ€โ„๏ธ bear -๐Ÿปโ€โ„ bear arctic | bear | polar bear | white -๐Ÿจ face | koala | marsupial -๐Ÿผ face | panda -๐Ÿฆฅ lazy | sloth | slow -๐Ÿฆฆ fishing | otter | playful -๐Ÿฆจ skunk | stink -๐Ÿฆ˜ joey | jump | kangaroo | marsupial -๐Ÿฆก badger | honey badger | pester -๐Ÿพ prints feet | paw | paw prints | print -๐Ÿฆƒ bird | turkey | poultry -๐Ÿ” bird | chicken | poultry -๐Ÿ“ bird | rooster -๐Ÿฃ chick baby | bird | chick | hatching -๐Ÿค chick baby | bird | chick -๐Ÿฅ baby chick baby | bird | chick | front-facing baby chick -๐Ÿฆ bird -๐Ÿง bird | penguin -๐Ÿ•Š bird | dove | fly | peace -๐Ÿฆ… bird | eagle | bird of prey -๐Ÿฆ† bird | duck -๐Ÿฆข bird | cygnet | swan | ugly duckling -๐Ÿฆ‰ bird | owl | wise | bird of prey -๐Ÿฆค dodo | extinction | large | Mauritius -๐Ÿชถ bird | feather | flight | light | plumage -๐Ÿฆฉ flamboyant | flamingo | tropical -๐Ÿฆš bird | ostentatious | peacock | peahen | proud -๐Ÿฆœ bird | parrot | pirate | talk -๐Ÿชฝ angelic | aviation | bird | flying | mythology | wing -๐Ÿฆโ€โฌ› bird bird | black | crow | raven | rook -๐Ÿชฟ bird | fowl | goose | honk | silly -๐Ÿฆโ€๐Ÿ”ฅ fantasy | firebird | phoenix | rebirth | reincarnation -๐Ÿธ animal-amphibian face | frog -๐ŸŠ animal-reptile crocodile -๐Ÿข animal-reptile terrapin | tortoise | turtle -๐ŸฆŽ animal-reptile lizard | reptile -๐Ÿ animal-reptile bearer | Ophiuchus | serpent | snake | zodiac -๐Ÿฒ animal-reptile face dragon | face | fairy tale -๐Ÿ‰ animal-reptile dragon | fairy tale -๐Ÿฆ• animal-reptile brachiosaurus | brontosaurus | diplodocus | sauropod -๐Ÿฆ– animal-reptile T-Rex | Tyrannosaurus Rex -๐Ÿณ animal-marine whale face | spouting | whale -๐Ÿ‹ animal-marine whale -๐Ÿฌ animal-marine dolphin | flipper | porpoise -๐Ÿฆญ animal-marine sea lion | seal -๐ŸŸ animal-marine fish | Pisces | zodiac -๐Ÿ  animal-marine fish fish | tropical | reef fish -๐Ÿก animal-marine blowfish | fish -๐Ÿฆˆ animal-marine fish | shark -๐Ÿ™ animal-marine octopus -๐Ÿš animal-marine shell shell | spiral -๐Ÿชธ animal-marine coral | ocean | reef -๐Ÿชผ animal-marine burn | invertebrate | jelly | jellyfish | marine | ouch | stinger -๐ŸŒ animal-bug snail | mollusc -๐Ÿฆ‹ animal-bug butterfly | insect | pretty | moth -๐Ÿ› animal-bug bug | insect | caterpillar | worm -๐Ÿœ animal-bug ant | insect -๐Ÿ animal-bug bee | honeybee | insect -๐Ÿชฒ animal-bug beetle | bug | insect -๐Ÿž animal-bug beetle beetle | insect | lady beetle | ladybird | ladybug -๐Ÿฆ— animal-bug cricket | grasshopper -๐Ÿชณ animal-bug cockroach | insect | pest | roach -๐Ÿ•ท๏ธ animal-bug -๐Ÿ•ท animal-bug insect | spider | arachnid -๐Ÿ•ธ๏ธ animal-bug web -๐Ÿ•ธ animal-bug web spider | web -๐Ÿฆ‚ animal-bug Scorpio | scorpion | zodiac -๐ŸฆŸ animal-bug disease | fever | malaria | mosquito | pest | virus | dengue | insect | mozzie -๐Ÿชฐ animal-bug disease | fly | maggot | pest | rotting -๐Ÿชฑ animal-bug annelid | earthworm | parasite | worm -๐Ÿฆ  animal-bug amoeba | bacteria | microbe | virus -๐Ÿ’ plant-flower bouquet | flower -๐ŸŒธ plant-flower blossom blossom | cherry | flower -๐Ÿ’ฎ plant-flower flower flower | white flower -๐Ÿชท plant-flower Buddhism | flower | Hinduism | lotus | purity -๐Ÿต๏ธ plant-flower -๐Ÿต plant-flower plant | rosette -๐ŸŒน plant-flower flower | rose -๐Ÿฅ€ plant-flower flower flower | wilted -๐ŸŒบ plant-flower flower | hibiscus -๐ŸŒป plant-flower flower | sun | sunflower -๐ŸŒผ plant-flower blossom | flower -๐ŸŒท plant-flower flower | tulip -๐Ÿชป plant-flower bluebonnet | flower | hyacinth | lavender | lupine | snapdragon -๐ŸŒฑ plant-other seedling | young -๐Ÿชด plant-other plant boring | grow | house | nurturing | plant | potted plant | useless | pot plant -๐ŸŒฒ plant-other tree evergreen tree | tree -๐ŸŒณ plant-other tree deciduous | shedding | tree -๐ŸŒด plant-other tree palm | tree -๐ŸŒต plant-other cactus | plant -๐ŸŒพ plant-other of rice ear | grain | rice | sheaf of rice | sheaf -๐ŸŒฟ plant-other herb | leaf -โ˜˜๏ธ plant-other -โ˜˜ plant-other plant | shamrock -๐Ÿ€ plant-other leaf clover 4 | clover | four | four-leaf clover | leaf -๐Ÿ plant-other leaf falling | leaf | maple -๐Ÿ‚ plant-other leaf fallen leaf | falling | leaf -๐Ÿƒ plant-other fluttering in wind blow | flutter | leaf | leaf fluttering in wind | wind -๐Ÿชน plant-other nest empty nest | nesting -๐Ÿชบ plant-other with eggs nest with eggs | nesting -๐Ÿ„ plant-other mushroom | toadstool -๐Ÿ‡ food-fruit fruit | grape | grapes -๐Ÿˆ food-fruit fruit | melon -๐Ÿ‰ food-fruit fruit | watermelon -๐ŸŠ food-fruit fruit | orange | tangerine | mandarin -๐Ÿ‹ food-fruit citrus | fruit | lemon -๐Ÿ‹โ€๐ŸŸฉ food-fruit citrus | fruit | lime | tropical -๐ŸŒ food-fruit banana | fruit -๐Ÿ food-fruit fruit | pineapple -๐Ÿฅญ food-fruit fruit | mango | tropical -๐ŸŽ food-fruit apple apple | fruit | red -๐Ÿ food-fruit apple apple | fruit | green -๐Ÿ food-fruit fruit | pear -๐Ÿ‘ food-fruit fruit | peach -๐Ÿ’ food-fruit berries | cherries | cherry | fruit | red -๐Ÿ“ food-fruit berry | fruit | strawberry -๐Ÿซ food-fruit berry | bilberry | blue | blueberries | blueberry -๐Ÿฅ food-fruit fruit food | fruit | kiwi | kiwi fruit -๐Ÿ… food-fruit fruit | tomato | vegetable -๐Ÿซ’ food-fruit food | olive -๐Ÿฅฅ food-fruit coconut | palm | piรฑa colada -๐Ÿฅ‘ food-vegetable avocado | food | fruit -๐Ÿ† food-vegetable aubergine | eggplant | vegetable -๐Ÿฅ” food-vegetable food | potato | vegetable -๐Ÿฅ• food-vegetable carrot | food | vegetable -๐ŸŒฝ food-vegetable of corn corn | ear | ear of corn | maize | maze | corn on the cob | sweetcorn -๐ŸŒถ๏ธ food-vegetable pepper -๐ŸŒถ food-vegetable pepper hot | pepper | chilli | hot pepper -๐Ÿซ‘ food-vegetable pepper bell pepper | capsicum | pepper | vegetable | sweet pepper -๐Ÿฅ’ food-vegetable cucumber | food | pickle | vegetable -๐Ÿฅฌ food-vegetable green bok choy | cabbage | kale | leafy green | lettuce | pak choi -๐Ÿฅฆ food-vegetable broccoli | wild cabbage -๐Ÿง„ food-vegetable flavoring | garlic | flavouring -๐Ÿง… food-vegetable flavoring | onion | flavouring -๐Ÿฅœ food-vegetable food | nut | peanut | peanuts | vegetable | nuts -๐Ÿซ˜ food-vegetable beans | food | kidney | legume | kidney bean | kidney beans -๐ŸŒฐ food-vegetable chestnut | plant | nut -๐Ÿซš food-vegetable root beer | ginger root | root | spice | ginger | root ginger -๐Ÿซ› food-vegetable pod beans | edamame | legume | pea | pod | vegetable -๐Ÿ„โ€๐ŸŸซ food-vegetable mushroom brown mushroom | food | fungus | nature | vegetable -๐Ÿž food-prepared bread | loaf -๐Ÿฅ food-prepared bread | breakfast | croissant | food | french | roll | crescent | French -๐Ÿฅ– food-prepared bread baguette | bread | food | french | French stick | French -๐Ÿซ“ food-prepared arepa | flatbread | lavash | naan | pita -๐Ÿฅจ food-prepared pretzel | twisted -๐Ÿฅฏ food-prepared bagel | bakery | breakfast | schmear -๐Ÿฅž food-prepared breakfast | crรชpe | food | hotcake | pancake | pancakes | crepe -๐Ÿง‡ food-prepared breakfast | indecisive | iron | waffle | unclear | vague | waffle with butter -๐Ÿง€ food-prepared wedge cheese | cheese wedge -๐Ÿ– food-prepared on bone bone | meat | meat on bone -๐Ÿ— food-prepared leg bone | chicken | drumstick | leg | poultry -๐Ÿฅฉ food-prepared of meat chop | cut of meat | lambchop | porkchop | steak | lamb chop | pork chop -๐Ÿฅ“ food-prepared bacon | breakfast | food | meat -๐Ÿ” food-prepared burger | hamburger | beefburger -๐ŸŸ food-prepared fries french | fries | chips | french fries | French -๐Ÿ• food-prepared cheese | pizza | slice -๐ŸŒญ food-prepared dog frankfurter | hot dog | hotdog | sausage | frank -๐Ÿฅช food-prepared bread | sandwich -๐ŸŒฎ food-prepared mexican | taco | Mexican -๐ŸŒฏ food-prepared burrito | mexican | wrap | Mexican -๐Ÿซ” food-prepared mexican | tamale | wrapped | Mexican -๐Ÿฅ™ food-prepared flatbread falafel | flatbread | food | gyro | kebab | stuffed | pita roll -๐Ÿง† food-prepared chickpea | falafel | meatball | chick pea -๐Ÿฅš food-prepared breakfast | egg | food -๐Ÿณ food-prepared breakfast | cooking | egg | frying | pan -๐Ÿฅ˜ food-prepared pan of food casserole | food | paella | pan | shallow | shallow pan of food -๐Ÿฒ food-prepared of food pot | pot of food | stew -๐Ÿซ• food-prepared cheese | chocolate | fondue | melted | pot | Swiss -๐Ÿฅฃ food-prepared with spoon bowl with spoon | breakfast | cereal | congee -๐Ÿฅ— food-prepared salad food | green | salad | garden -๐Ÿฟ food-prepared popcorn -๐Ÿงˆ food-prepared butter | dairy -๐Ÿง‚ food-prepared condiment | salt | shaker -๐Ÿฅซ food-prepared food can | canned food -๐Ÿฑ food-asian box bento | box -๐Ÿ˜ food-asian cracker cracker | rice -๐Ÿ™ food-asian ball ball | Japanese | rice -๐Ÿš food-asian rice cooked | rice -๐Ÿ› food-asian rice curry | rice -๐Ÿœ food-asian bowl bowl | noodle | ramen | steaming -๐Ÿ food-asian pasta | spaghetti -๐Ÿ  food-asian sweet potato potato | roasted | sweet -๐Ÿข food-asian kebab | oden | seafood | skewer | stick -๐Ÿฃ food-asian sushi -๐Ÿค food-asian shrimp fried | prawn | shrimp | tempura | battered -๐Ÿฅ food-asian cake with swirl cake | fish | fish cake with swirl | pastry | swirl | narutomaki -๐Ÿฅฎ food-asian cake autumn | festival | moon cake | yuรจbวng -๐Ÿก food-asian dango | dessert | Japanese | skewer | stick | sweet -๐ŸฅŸ food-asian dumpling | empanada | gyลza | jiaozi | pierogi | potsticker | pastie | samosa -๐Ÿฅ  food-asian cookie fortune cookie | prophecy -๐Ÿฅก food-asian box oyster pail | takeout box | takeaway box | takeaway container | takeout -๐Ÿฆ€ food-marine Cancer | crab | zodiac | crustacean | seafood | shellfish -๐Ÿฆž food-marine bisque | claws | lobster | seafood | shellfish -๐Ÿฆ food-marine food | shellfish | shrimp | small | prawn | seafood -๐Ÿฆ‘ food-marine food | molusc | squid | decapod | seafood -๐Ÿฆช food-marine diving | oyster | pearl -๐Ÿฆ food-sweet ice cream cream | dessert | ice | icecream | soft | sweet | ice cream | soft serve | soft-serve ice cream -๐Ÿง food-sweet ice dessert | ice | shaved | sweet | granita -๐Ÿจ food-sweet cream cream | dessert | ice | sweet | ice cream -๐Ÿฉ food-sweet breakfast | dessert | donut | doughnut | sweet -๐Ÿช food-sweet cookie | dessert | sweet | biscuit -๐ŸŽ‚ food-sweet cake birthday | cake | celebration | dessert | pastry | sweet -๐Ÿฐ food-sweet cake | dessert | pastry | shortcake | slice | sweet -๐Ÿง food-sweet bakery | cupcake | sweet -๐Ÿฅง food-sweet filling | pastry | pie -๐Ÿซ food-sweet bar bar | chocolate | dessert | sweet -๐Ÿฌ food-sweet candy | dessert | sweet | sweets -๐Ÿญ food-sweet candy | dessert | lollipop | sweet -๐Ÿฎ food-sweet custard | dessert | pudding | sweet | baked custard -๐Ÿฏ food-sweet pot honey | honeypot | pot | sweet -๐Ÿผ drink bottle baby | bottle | drink | milk -๐Ÿฅ› drink of milk drink | glass | glass of milk | milk -โ˜• drink beverage beverage | coffee | drink | hot | steaming | tea -๐Ÿซ– drink drink | pot | tea | teapot -๐Ÿต drink without handle beverage | cup | drink | tea | teacup | teacup without handle -๐Ÿถ drink bar | beverage | bottle | cup | drink | sake | sakรฉ -๐Ÿพ drink with popping cork bar | bottle | bottle with popping cork | cork | drink | popping | bubbly -๐Ÿท drink glass bar | beverage | drink | glass | wine -๐Ÿธ drink glass bar | cocktail | drink | glass -๐Ÿน drink drink bar | drink | tropical -๐Ÿบ drink mug bar | beer | drink | mug -๐Ÿป drink beer mugs bar | beer | clink | clinking beer mugs | drink | mug | cheers -๐Ÿฅ‚ drink glasses celebrate | clink | clinking glasses | drink | glass | cheers -๐Ÿฅƒ drink glass glass | liquor | shot | tumbler | whisky | whiskey -๐Ÿซ— drink liquid drink | empty | glass | pouring liquid | spill -๐Ÿฅค drink with straw cup with straw | juice | soda -๐Ÿง‹ drink tea bubble | milk | pearl | tea | boba -๐Ÿงƒ drink box beverage | box | juice | straw | sweet | drink carton | juice box | popper -๐Ÿง‰ drink drink | mate | matรฉ -๐ŸงŠ drink cold | ice | ice cube | iceberg -๐Ÿฅข dishware chopsticks | hashi | pair of chopsticks -๐Ÿฝ๏ธ dishware and knife with plate -๐Ÿฝ dishware and knife with plate cooking | fork | fork and knife with plate | knife | plate -๐Ÿด dishware and knife cooking | cutlery | fork | fork and knife | knife | knife and fork -๐Ÿฅ„ dishware spoon | tableware -๐Ÿ”ช dishware knife cooking | hocho | kitchen knife | knife | tool | weapon -๐Ÿซ™ dishware condiment | container | empty | jar | sauce | store -๐Ÿบ dishware amphora | Aquarius | cooking | drink | jug | zodiac | jar -๐ŸŒ place-map showing Europe-Africa Africa | earth | Europe | globe | globe showing Europe-Africa | world -๐ŸŒŽ place-map showing Americas Americas | earth | globe | globe showing Americas | world -๐ŸŒ place-map showing Asia-Australia Asia | Australia | earth | globe | globe showing Asia-Australia | world -๐ŸŒ place-map with meridians earth | globe | globe with meridians | meridians | world -๐Ÿ—บ๏ธ place-map map -๐Ÿ—บ place-map map map | world -๐Ÿ—พ place-map of Japan Japan | map | map of Japan -๐Ÿงญ place-map compass | magnetic | navigation | orienteering -๐Ÿ”๏ธ place-geographic mountain -๐Ÿ” place-geographic mountain cold | mountain | snow | snow-capped mountain -โ›ฐ๏ธ place-geographic -โ›ฐ place-geographic mountain -๐ŸŒ‹ place-geographic eruption | mountain | volcano -๐Ÿ—ป place-geographic fuji fuji | mount fuji | mountain | Fuji | Mount Fuji | mount Fuji -๐Ÿ•๏ธ place-geographic -๐Ÿ• place-geographic camping -๐Ÿ–๏ธ place-geographic with umbrella -๐Ÿ– place-geographic with umbrella beach | beach with umbrella | umbrella -๐Ÿœ๏ธ place-geographic -๐Ÿœ place-geographic desert -๐Ÿ๏ธ place-geographic island -๐Ÿ place-geographic island desert | island -๐Ÿž๏ธ place-geographic park -๐Ÿž place-geographic park national park | park -๐ŸŸ๏ธ place-building -๐ŸŸ place-building stadium | arena -๐Ÿ›๏ธ place-building building -๐Ÿ› place-building building classical | classical building | column -๐Ÿ—๏ธ place-building construction -๐Ÿ— place-building construction building construction | construction -๐Ÿงฑ place-building brick | bricks | clay | mortar | wall -๐Ÿชจ place-building boulder | heavy | rock | solid | stone -๐Ÿชต place-building log | lumber | timber | wood -๐Ÿ›– place-building house | hut | roundhouse | yurt -๐Ÿ˜๏ธ place-building -๐Ÿ˜ place-building houses -๐Ÿš๏ธ place-building house -๐Ÿš place-building house derelict | house -๐Ÿ  place-building home | house -๐Ÿก place-building with garden garden | home | house | house with garden -๐Ÿข place-building building building | office building -๐Ÿฃ place-building post office Japanese | Japanese post office | post -๐Ÿค place-building office European | post | post office -๐Ÿฅ place-building doctor | hospital | medicine -๐Ÿฆ place-building bank | building -๐Ÿจ place-building building | hotel -๐Ÿฉ place-building hotel hotel | love -๐Ÿช place-building store convenience | store | dรฉpanneur -๐Ÿซ place-building building | school -๐Ÿฌ place-building store department | store -๐Ÿญ place-building building | factory -๐Ÿฏ place-building castle castle | Japanese -๐Ÿฐ place-building castle | European -๐Ÿ’’ place-building chapel | romance | wedding -๐Ÿ—ผ place-building tower Tokyo | tower | Tower -๐Ÿ—ฝ place-building of Liberty liberty | statue | Statue of Liberty | Liberty | Statue -โ›ช place-religious Christian | church | cross | religion -๐Ÿ•Œ place-religious islam | mosque | Muslim | religion | Islam -๐Ÿ›• place-religious temple hindu | temple | Hindu -๐Ÿ• place-religious Jew | Jewish | religion | synagogue | temple | shul -โ›ฉ๏ธ place-religious shrine -โ›ฉ place-religious shrine religion | shinto | shrine | Shinto -๐Ÿ•‹ place-religious islam | kaaba | Muslim | religion | Islam | Kaaba -โ›ฒ place-other fountain -โ›บ place-other camping | tent -๐ŸŒ place-other fog | foggy -๐ŸŒƒ place-other with stars night | night with stars | star | starry night -๐Ÿ™๏ธ place-other -๐Ÿ™ place-other city | cityscape | skyline -๐ŸŒ„ place-other over mountains morning | mountain | sun | sunrise | sunrise over mountains -๐ŸŒ… place-other morning | sun | sunrise -๐ŸŒ† place-other at dusk city | cityscape at dusk | dusk | evening | landscape | sunset | skyline at dusk -๐ŸŒ‡ place-other dusk | sun | sunset -๐ŸŒ‰ place-other at night bridge | bridge at night | night -โ™จ๏ธ place-other springs -โ™จ place-other springs hot | hotsprings | springs | steaming -๐ŸŽ  place-other horse carousel | horse | merry-go-round -๐Ÿ› place-other slide amusement park | play | playground slide | theme park -๐ŸŽก place-other wheel amusement park | ferris | theme park | wheel | Ferris -๐ŸŽข place-other coaster amusement park | coaster | roller | theme park -๐Ÿ’ˆ place-other pole barber | haircut | pole -๐ŸŽช place-other tent circus | tent | big top -๐Ÿš‚ transport-ground engine | locomotive | railway | steam | train -๐Ÿšƒ transport-ground car car | electric | railway | train | tram | trolleybus | railway carriage | train carriage | trolley bus -๐Ÿš„ transport-ground train high-speed train | railway | shinkansen | speed | train | Shinkansen -๐Ÿš… transport-ground train bullet | railway | shinkansen | speed | train | Shinkansen -๐Ÿš† transport-ground railway | train -๐Ÿš‡ transport-ground metro | subway | tube | underground -๐Ÿšˆ transport-ground rail light rail | railway -๐Ÿš‰ transport-ground railway | station | train -๐ŸšŠ transport-ground tram | trolleybus | light rail | oncoming | oncoming light rail | car | streetcar | tramcar | trolley | trolley bus -๐Ÿš transport-ground monorail | vehicle -๐Ÿšž transport-ground railway car | mountain | railway -๐Ÿš‹ transport-ground car car | tram | trolleybus | trolley bus | streetcar | tramcar | trolley -๐ŸšŒ transport-ground bus | vehicle -๐Ÿš transport-ground bus bus | oncoming -๐ŸšŽ transport-ground bus | tram | trolley | trolleybus | streetcar -๐Ÿš transport-ground bus | minibus -๐Ÿš‘ transport-ground ambulance | vehicle -๐Ÿš’ transport-ground engine engine | fire | truck -๐Ÿš“ transport-ground car car | patrol | police -๐Ÿš” transport-ground police car car | oncoming | police -๐Ÿš• transport-ground taxi | vehicle -๐Ÿš– transport-ground taxi oncoming | taxi -๐Ÿš— transport-ground automobile | car -๐Ÿš˜ transport-ground automobile automobile | car | oncoming -๐Ÿš™ transport-ground utility vehicle recreational | sport utility | sport utility vehicle | 4x4 | off-road vehicle | 4WD | four-wheel drive | SUV -๐Ÿ›ป transport-ground truck pick-up | pickup | truck | ute -๐Ÿšš transport-ground truck delivery | truck -๐Ÿš› transport-ground lorry articulated lorry | lorry | semi | truck | articulated truck -๐Ÿšœ transport-ground tractor | vehicle -๐ŸŽ๏ธ transport-ground car -๐ŸŽ transport-ground car car | racing -๐Ÿ๏ธ transport-ground -๐Ÿ transport-ground motorcycle | racing -๐Ÿ›ต transport-ground scooter motor | scooter -๐Ÿฆฝ transport-ground wheelchair accessibility | manual wheelchair -๐Ÿฆผ transport-ground wheelchair accessibility | motorized wheelchair | powered wheelchair | mobility scooter -๐Ÿ›บ transport-ground rickshaw auto rickshaw | tuk tuk | tuk-tuk | tuktuk -๐Ÿšฒ transport-ground bicycle | bike -๐Ÿ›ด transport-ground scooter kick | scooter -๐Ÿ›น transport-ground board | skateboard -๐Ÿ›ผ transport-ground skate roller | skate | rollerskate -๐Ÿš transport-ground stop bus | stop | busstop -๐Ÿ›ฃ๏ธ transport-ground -๐Ÿ›ฃ transport-ground highway | motorway | road | freeway -๐Ÿ›ค๏ธ transport-ground track -๐Ÿ›ค transport-ground track railway | railway track | train -๐Ÿ›ข๏ธ transport-ground drum -๐Ÿ›ข transport-ground drum drum | oil -โ›ฝ transport-ground pump diesel | fuel | fuelpump | gas | pump | station | petrol pump -๐Ÿ›ž transport-ground circle | tire | turn | wheel | tyre -๐Ÿšจ transport-ground car light beacon | car | light | police | revolving -๐Ÿšฅ transport-ground traffic light horizontal traffic light | light | signal | traffic | horizontal traffic lights | lights -๐Ÿšฆ transport-ground traffic light light | signal | traffic | vertical traffic light | lights | vertical traffic lights -๐Ÿ›‘ transport-ground sign octagonal | sign | stop -๐Ÿšง transport-ground barrier | construction -โš“ transport-water anchor | ship | tool -๐Ÿ›Ÿ transport-water buoy float | life preserver | life saver | rescue | ring buoy | safety | lifebuoy | buoy -โ›ต transport-water boat | resort | sailboat | sea | yacht -๐Ÿ›ถ transport-water boat | canoe -๐Ÿšค transport-water boat | speedboat -๐Ÿ›ณ๏ธ transport-water ship -๐Ÿ›ณ transport-water ship passenger | ship -โ›ด๏ธ transport-water -โ›ด transport-water boat | ferry | passenger -๐Ÿ›ฅ๏ธ transport-water boat -๐Ÿ›ฅ transport-water boat boat | motor boat | motorboat -๐Ÿšข transport-water boat | passenger | ship -โœˆ๏ธ transport-air -โœˆ transport-air aeroplane | airplane | flight -๐Ÿ›ฉ๏ธ transport-air airplane -๐Ÿ›ฉ transport-air airplane aeroplane | airplane | small airplane | small plane -๐Ÿ›ซ transport-air departure aeroplane | airplane | check-in | departure | departures | take-off | flight departure | plane departure -๐Ÿ›ฌ transport-air arrival aeroplane | airplane | airplane arrival | arrivals | arriving | landing -๐Ÿช‚ transport-air hang-glide | parachute | parasail | skydive | parascend -๐Ÿ’บ transport-air chair | seat -๐Ÿš transport-air helicopter | vehicle -๐ŸšŸ transport-air railway railway | suspension | cable -๐Ÿš  transport-air cableway cable | gondola | mountain | mountain cableway | cableway -๐Ÿšก transport-air tramway aerial | cable | car | gondola | tramway -๐Ÿ›ฐ๏ธ transport-air -๐Ÿ›ฐ transport-air satellite | space -๐Ÿš€ transport-air rocket | space -๐Ÿ›ธ transport-air saucer flying saucer | UFO | spaceship -๐Ÿ›Ž๏ธ hotel bell -๐Ÿ›Ž hotel bell bell | bellhop | hotel | porter -๐Ÿงณ hotel luggage | packing | travel -โŒ› time done hourglass done | sand | timer | hourglass -โณ time not done hourglass | hourglass not done | sand | timer -โŒš time clock | watch -โฐ time clock alarm | clock -โฑ๏ธ time -โฑ time clock | stopwatch -โฒ๏ธ time clock -โฒ time clock clock | timer -๐Ÿ•ฐ๏ธ time clock -๐Ÿ•ฐ time clock clock | mantelpiece clock -๐Ÿ•› time oโ€™clock 00 | 12 | 12:00 | clock | oโ€™clock | twelve -๐Ÿ•ง time 12 | 12:30 | clock | thirty | twelve | twelve-thirty | 12.30 | half past twelve -๐Ÿ• time oโ€™clock 00 | 1 | 1:00 | clock | oโ€™clock | one -๐Ÿ•œ time 1 | 1:30 | clock | one | one-thirty | thirty | 1.30 | half past one -๐Ÿ•‘ time oโ€™clock 00 | 2 | 2:00 | clock | oโ€™clock | two -๐Ÿ• time 2 | 2:30 | clock | thirty | two | two-thirty | 2.30 | half past two -๐Ÿ•’ time oโ€™clock 00 | 3 | 3:00 | clock | oโ€™clock | three -๐Ÿ•ž time 3 | 3:30 | clock | thirty | three | three-thirty | 3.30 | half past three -๐Ÿ•“ time oโ€™clock 00 | 4 | 4:00 | clock | four | oโ€™clock -๐Ÿ•Ÿ time 4 | 4:30 | clock | four | four-thirty | thirty | 4.30 | half past four -๐Ÿ•” time oโ€™clock 00 | 5 | 5:00 | clock | five | oโ€™clock -๐Ÿ•  time 5 | 5:30 | clock | five | five-thirty | thirty | 5.30 | half past five -๐Ÿ•• time oโ€™clock 00 | 6 | 6:00 | clock | oโ€™clock | six -๐Ÿ•ก time 6 | 6:30 | clock | six | six-thirty | thirty | 6.30 | half past six -๐Ÿ•– time oโ€™clock 00 | 7 | 7:00 | clock | oโ€™clock | seven -๐Ÿ•ข time 7 | 7:30 | clock | seven | seven-thirty | thirty | 7.30 | half past seven -๐Ÿ•— time oโ€™clock 00 | 8 | 8:00 | clock | eight | oโ€™clock -๐Ÿ•ฃ time 8 | 8:30 | clock | eight | eight-thirty | thirty | 8.30 | half past eight -๐Ÿ•˜ time oโ€™clock 00 | 9 | 9:00 | clock | nine | oโ€™clock -๐Ÿ•ค time 9 | 9:30 | clock | nine | nine-thirty | thirty | 9.30 | half past nine -๐Ÿ•™ time oโ€™clock 00 | 10 | 10:00 | clock | oโ€™clock | ten -๐Ÿ•ฅ time 10 | 10:30 | clock | ten | ten-thirty | thirty | 10.30 | half past ten -๐Ÿ•š time oโ€™clock 00 | 11 | 11:00 | clock | eleven | oโ€™clock -๐Ÿ•ฆ time 11 | 11:30 | clock | eleven | eleven-thirty | thirty | 11.30 | half past eleven -๐ŸŒ‘ sky & weather moon dark | moon | new moon -๐ŸŒ’ sky & weather crescent moon crescent | moon | waxing -๐ŸŒ“ sky & weather quarter moon first quarter moon | moon | quarter -๐ŸŒ” sky & weather gibbous moon gibbous | moon | waxing -๐ŸŒ• sky & weather moon full | moon -๐ŸŒ– sky & weather gibbous moon gibbous | moon | waning -๐ŸŒ— sky & weather quarter moon last quarter moon | moon | quarter -๐ŸŒ˜ sky & weather crescent moon crescent | moon | waning -๐ŸŒ™ sky & weather moon crescent | moon -๐ŸŒš sky & weather moon face face | moon | new moon face -๐ŸŒ› sky & weather quarter moon face face | first quarter moon face | moon | quarter -๐ŸŒœ sky & weather quarter moon face face | last quarter moon face | moon | quarter -๐ŸŒก๏ธ sky & weather -๐ŸŒก sky & weather thermometer | weather -โ˜€๏ธ sky & weather -โ˜€ sky & weather bright | rays | sun | sunny -๐ŸŒ sky & weather moon face bright | face | full | moon | full-moon face -๐ŸŒž sky & weather with face bright | face | sun | sun with face -๐Ÿช sky & weather planet ringed planet | saturn | saturnine -โญ sky & weather star -๐ŸŒŸ sky & weather star glittery | glow | glowing star | shining | sparkle | star -๐ŸŒ  sky & weather star falling | shooting | star -๐ŸŒŒ sky & weather way milky way | space | Milky Way | Milky | Way -โ˜๏ธ sky & weather -โ˜ sky & weather cloud | weather -โ›… sky & weather behind cloud cloud | sun | sun behind cloud -โ›ˆ๏ธ sky & weather with lightning and rain -โ›ˆ sky & weather with lightning and rain cloud | cloud with lightning and rain | rain | thunder -๐ŸŒค๏ธ sky & weather behind small cloud -๐ŸŒค sky & weather behind small cloud cloud | sun | sun behind small cloud -๐ŸŒฅ๏ธ sky & weather behind large cloud -๐ŸŒฅ sky & weather behind large cloud cloud | sun | sun behind large cloud -๐ŸŒฆ๏ธ sky & weather behind rain cloud -๐ŸŒฆ sky & weather behind rain cloud cloud | rain | sun | sun behind rain cloud -๐ŸŒง๏ธ sky & weather with rain -๐ŸŒง sky & weather with rain cloud | cloud with rain | rain -๐ŸŒจ๏ธ sky & weather with snow -๐ŸŒจ sky & weather with snow cloud | cloud with snow | cold | snow -๐ŸŒฉ๏ธ sky & weather with lightning -๐ŸŒฉ sky & weather with lightning cloud | cloud with lightning | lightning -๐ŸŒช๏ธ sky & weather -๐ŸŒช sky & weather cloud | tornado | whirlwind -๐ŸŒซ๏ธ sky & weather -๐ŸŒซ sky & weather cloud | fog -๐ŸŒฌ๏ธ sky & weather face -๐ŸŒฌ sky & weather face blow | cloud | face | wind -๐ŸŒ€ sky & weather cyclone | dizzy | hurricane | twister | typhoon -๐ŸŒˆ sky & weather rain | rainbow -๐ŸŒ‚ sky & weather umbrella closed umbrella | clothing | rain | umbrella -โ˜‚๏ธ sky & weather -โ˜‚ sky & weather clothing | rain | umbrella -โ˜” sky & weather with rain drops clothing | drop | rain | umbrella | umbrella with rain drops -โ›ฑ๏ธ sky & weather on ground -โ›ฑ sky & weather on ground rain | sun | umbrella | umbrella on ground | beach | sand -โšก sky & weather voltage danger | electric | high voltage | lightning | voltage | zap -โ„๏ธ sky & weather -โ„ sky & weather cold | snow | snowflake -โ˜ƒ๏ธ sky & weather -โ˜ƒ sky & weather cold | snow | snowman -โ›„ sky & weather without snow cold | snow | snowman | snowman without snow -โ˜„๏ธ sky & weather -โ˜„ sky & weather comet | space -๐Ÿ”ฅ sky & weather fire | flame | tool -๐Ÿ’ง sky & weather cold | comic | drop | droplet | sweat -๐ŸŒŠ sky & weather wave ocean | water | wave -๐ŸŽƒ Activities event celebration | halloween | jack | jack-o-lantern | lantern | Halloween | jack-oโ€™-lantern -๐ŸŽ„ Activities event tree celebration | Christmas | tree -๐ŸŽ† Activities event celebration | fireworks -๐ŸŽ‡ Activities event celebration | fireworks | sparkle | sparkler -๐Ÿงจ Activities event dynamite | explosive | firecracker | fireworks -โœจ Activities event * | sparkle | sparkles | star -๐ŸŽˆ Activities event balloon | celebration -๐ŸŽ‰ Activities event popper celebration | party | popper | tada | ta-da -๐ŸŽŠ Activities event ball ball | celebration | confetti -๐ŸŽ‹ Activities event tree banner | celebration | Japanese | tanabata tree | tree | Tanabata tree -๐ŸŽ Activities event decoration bamboo | celebration | Japanese | pine | pine decoration | decoration -๐ŸŽŽ Activities event dolls celebration | doll | festival | Japanese | Japanese dolls -๐ŸŽ Activities event streamer carp | celebration | streamer | carp wind sock | Japanese wind socks | koinobori -๐ŸŽ Activities event chime bell | celebration | chime | wind -๐ŸŽ‘ Activities event viewing ceremony celebration | ceremony | moon | moon viewing ceremony | moon-viewing ceremony -๐Ÿงง Activities event envelope gift | good luck | hรณngbฤo | lai see | money | red envelope -๐ŸŽ€ Activities event celebration | ribbon -๐ŸŽ Activities event gift box | celebration | gift | present | wrapped -๐ŸŽ—๏ธ Activities event ribbon -๐ŸŽ— Activities event ribbon celebration | reminder | ribbon -๐ŸŽŸ๏ธ Activities event tickets -๐ŸŽŸ Activities event tickets admission | admission tickets | ticket | entry -๐ŸŽซ Activities event admission | ticket -๐ŸŽ–๏ธ Activities award-medal medal -๐ŸŽ– Activities award-medal medal celebration | medal | military -๐Ÿ† Activities award-medal prize | trophy | celebration -๐Ÿ… Activities award-medal medal medal | sports medal | celebration | sports -๐Ÿฅ‡ Activities award-medal place medal 1st place medal | first | gold | medal -๐Ÿฅˆ Activities award-medal place medal 2nd place medal | medal | second | silver -๐Ÿฅ‰ Activities award-medal place medal 3rd place medal | bronze | medal | third -โšฝ Activities sport ball ball | football | soccer -โšพ Activities sport ball | baseball -๐ŸฅŽ Activities sport ball | glove | softball | underarm -๐Ÿ€ Activities sport ball | basketball | hoop -๐Ÿ Activities sport ball | game | volleyball -๐Ÿˆ Activities sport football american | ball | football -๐Ÿ‰ Activities sport football ball | football | rugby | australian football | rugby ball | rugby league | rugby union -๐ŸŽพ Activities sport ball | racquet | tennis -๐Ÿฅ Activities sport disc flying disc | ultimate | frisbee | Frisbee -๐ŸŽณ Activities sport ball | bowling | game | tenpin bowling -๐Ÿ Activities sport game ball | bat | cricket game | game | cricket | cricket match -๐Ÿ‘ Activities sport hockey ball | field | game | hockey | stick -๐Ÿ’ Activities sport hockey game | hockey | ice | puck | stick -๐Ÿฅ Activities sport ball | goal | lacrosse | stick -๐Ÿ“ Activities sport pong ball | bat | game | paddle | ping pong | table tennis | ping-pong -๐Ÿธ Activities sport badminton | birdie | game | racquet | shuttlecock -๐ŸฅŠ Activities sport glove boxing | glove -๐Ÿฅ‹ Activities sport arts uniform judo | karate | martial arts | martial arts uniform | taekwondo | uniform | MMA -๐Ÿฅ… Activities sport net goal | net | goal cage -โ›ณ Activities sport in hole flag in hole | golf | hole | flag -โ›ธ๏ธ Activities sport skate -โ›ธ Activities sport skate ice | skate | ice skating -๐ŸŽฃ Activities sport pole fish | fishing pole | pole | fishing | rod | fishing rod -๐Ÿคฟ Activities sport mask diving | diving mask | scuba | snorkeling | snorkelling -๐ŸŽฝ Activities sport shirt athletics | running | sash | shirt -๐ŸŽฟ Activities sport ski | skis | snow | skiing -๐Ÿ›ท Activities sport sled | sledge | sleigh -๐ŸฅŒ Activities sport stone curling stone | game | rock | curling | stone | curling rock -๐ŸŽฏ Activities game bullseye | dart | direct hit | game | hit | target | bullโ€™s-eye -๐Ÿช€ Activities game fluctuate | toy | yo-yo -๐Ÿช Activities game fly | kite | soar -๐Ÿ”ซ Activities game pistol gun | handgun | pistol | revolver | tool | water | weapon | toy | water pistol -๐ŸŽฑ Activities game 8 ball 8 | ball | billiard | eight | game | pool 8 ball | magic 8 ball -๐Ÿ”ฎ Activities game ball ball | crystal | fairy tale | fantasy | fortune | tool -๐Ÿช„ Activities game wand magic | magic wand | witch | wizard -๐ŸŽฎ Activities game game controller | game | video game -๐Ÿ•น๏ธ Activities game -๐Ÿ•น Activities game game | joystick | video game -๐ŸŽฐ Activities game machine game | slot | slot machine | pokie | pokies -๐ŸŽฒ Activities game die dice | die | game -๐Ÿงฉ Activities game piece clue | interlocking | jigsaw | piece | puzzle -๐Ÿงธ Activities game bear plaything | plush | stuffed | teddy bear | toy -๐Ÿช… Activities game celebration | party | piรฑata -๐Ÿชฉ Activities game ball dance | disco | glitter | mirror ball | party -๐Ÿช† Activities game dolls doll | nesting | nesting dolls | russia | babushka | matryoshka | Russian dolls | Russia -โ™ ๏ธ Activities game suit -โ™  Activities game suit card | game | spade suit -โ™ฅ๏ธ Activities game suit -โ™ฅ Activities game suit card | game | heart suit -โ™ฆ๏ธ Activities game suit -โ™ฆ Activities game suit card | diamond suit | game | diamonds -โ™ฃ๏ธ Activities game suit -โ™ฃ Activities game suit card | club suit | game | clubs -โ™Ÿ๏ธ Activities game pawn -โ™Ÿ Activities game pawn chess | chess pawn | dupe | expendable -๐Ÿƒ Activities game card | game | joker | wildcard -๐Ÿ€„ Activities game red dragon game | mahjong | mahjong red dragon | red | Mahjong | Mahjong red dragon -๐ŸŽด Activities game playing cards card | flower | flower playing cards | game | Japanese | playing -๐ŸŽญ Activities arts & crafts arts art | mask | performing | performing arts | theater | theatre -๐Ÿ–ผ๏ธ Activities arts & crafts picture -๐Ÿ–ผ Activities arts & crafts picture art | frame | framed picture | museum | painting | picture -๐ŸŽจ Activities arts & crafts palette art | artist palette | museum | painting | palette -๐Ÿงต Activities arts & crafts needle | sewing | spool | string | thread -๐Ÿชก Activities arts & crafts needle embroidery | needle | sewing | stitches | sutures | tailoring | needle and thread -๐Ÿงถ Activities arts & crafts ball | crochet | knit | yarn -๐Ÿชข Activities arts & crafts knot | rope | tangled | tie | twine | twist -๐Ÿ‘“ Objects clothing clothing | eye | eyeglasses | eyewear | glasses -๐Ÿ•ถ๏ธ Objects clothing -๐Ÿ•ถ Objects clothing dark | eye | eyewear | glasses | sunglasses | sunnies -๐Ÿฅฝ Objects clothing eye protection | goggles | swimming | welding -๐Ÿฅผ Objects clothing coat doctor | experiment | lab coat | scientist -๐Ÿฆบ Objects clothing vest emergency | safety | vest | hi-vis | high-vis | jacket | life jacket -๐Ÿ‘” Objects clothing clothing | necktie | tie -๐Ÿ‘• Objects clothing clothing | shirt | t-shirt | tshirt | T-shirt | tee | tee-shirt -๐Ÿ‘– Objects clothing clothing | jeans | pants | trousers -๐Ÿงฃ Objects clothing neck | scarf -๐Ÿงค Objects clothing gloves | hand -๐Ÿงฅ Objects clothing coat | jacket -๐Ÿงฆ Objects clothing socks | stocking -๐Ÿ‘— Objects clothing clothing | dress | womanโ€™s clothes -๐Ÿ‘˜ Objects clothing clothing | kimono -๐Ÿฅป Objects clothing clothing | dress | sari -๐Ÿฉฑ Objects clothing swimsuit bathing suit | one-piece swimsuit | swimming costume -๐Ÿฉฒ Objects clothing bathing suit | briefs | one-piece | swimsuit | underwear | pants | bathers | speedos -๐Ÿฉณ Objects clothing bathing suit | pants | shorts | underwear | boardshorts | swim shorts | boardies -๐Ÿ‘™ Objects clothing bikini | clothing | swim | swim suit | two-piece -๐Ÿ‘š Objects clothing clothes clothing | woman | womanโ€™s clothes | blouse | top -๐Ÿชญ Objects clothing hand fan cooling | dance | fan | flutter | folding hand fan | hot | shy -๐Ÿ‘› Objects clothing clothing | coin | purse | accessories -๐Ÿ‘œ Objects clothing bag | clothing | handbag | purse | accessories | tote -๐Ÿ‘ Objects clothing bag bag | clothing | clutch bag | pouch | accessories -๐Ÿ›๏ธ Objects clothing bags -๐Ÿ› Objects clothing bags bag | hotel | shopping | shopping bags -๐ŸŽ’ Objects clothing backpack | bag | rucksack | satchel | school -๐Ÿฉด Objects clothing sandal beach sandals | sandals | thong sandal | thong sandals | thongs | zลri | flip-flop | flipflop | zori | beach sandal | sandal | thong -๐Ÿ‘ž Objects clothing shoe clothing | man | manโ€™s shoe | shoe -๐Ÿ‘Ÿ Objects clothing shoe athletic | clothing | running shoe | shoe | sneaker | runners | trainer -๐Ÿฅพ Objects clothing boot backpacking | boot | camping | hiking -๐Ÿฅฟ Objects clothing shoe ballet flat | flat shoe | slip-on | slipper | pump -๐Ÿ‘  Objects clothing shoe clothing | heel | high-heeled shoe | shoe | woman | stiletto -๐Ÿ‘ก Objects clothing sandal clothing | sandal | shoe | woman | womanโ€™s sandal -๐Ÿฉฐ Objects clothing shoes ballet | ballet shoes | dance -๐Ÿ‘ข Objects clothing boot boot | clothing | shoe | woman | womanโ€™s boot -๐Ÿชฎ Objects clothing pick Afro | comb | hair | pick -๐Ÿ‘‘ Objects clothing clothing | crown | king | queen -๐Ÿ‘’ Objects clothing hat clothing | hat | woman | womanโ€™s hat -๐ŸŽฉ Objects clothing hat clothing | hat | top | tophat -๐ŸŽ“ Objects clothing cap cap | celebration | clothing | graduation | hat -๐Ÿงข Objects clothing cap baseball cap | billed cap -๐Ÿช– Objects clothing helmet army | helmet | military | soldier | warrior -โ›‘๏ธ Objects clothing workerโ€™s helmet -โ›‘ Objects clothing workerโ€™s helmet aid | cross | face | hat | helmet | rescue workerโ€™s helmet -๐Ÿ“ฟ Objects clothing beads beads | clothing | necklace | prayer | religion -๐Ÿ’„ Objects clothing cosmetics | lipstick | makeup | make-up -๐Ÿ’ Objects clothing diamond | ring -๐Ÿ’Ž Objects clothing stone diamond | gem | gem stone | jewel | gemstone -๐Ÿ”‡ Objects sound speaker mute | muted speaker | quiet | silent | speaker -๐Ÿ”ˆ Objects sound low volume soft | speaker low volume | low | quiet | speaker | volume -๐Ÿ”‰ Objects sound medium volume medium | speaker medium volume -๐Ÿ”Š Objects sound high volume loud | speaker high volume -๐Ÿ“ข Objects sound loud | loudspeaker | public address -๐Ÿ“ฃ Objects sound cheering | megaphone -๐Ÿ“ฏ Objects sound horn horn | post | postal -๐Ÿ”” Objects sound bell -๐Ÿ”• Objects sound with slash bell | bell with slash | forbidden | mute | quiet | silent -๐ŸŽผ Objects music score music | musical score | score -๐ŸŽต Objects music note music | musical note | note -๐ŸŽถ Objects music notes music | musical notes | note | notes -๐ŸŽ™๏ธ Objects music microphone -๐ŸŽ™ Objects music microphone mic | microphone | music | studio -๐ŸŽš๏ธ Objects music slider -๐ŸŽš Objects music slider level | music | slider -๐ŸŽ›๏ธ Objects music knobs -๐ŸŽ› Objects music knobs control | knobs | music -๐ŸŽค Objects music karaoke | mic | microphone -๐ŸŽง Objects music earbud | headphone -๐Ÿ“ป Objects music radio | video | AM | FM | wireless -๐ŸŽท Objects musical-instrument instrument | music | sax | saxophone -๐Ÿช— Objects musical-instrument accordion | concertina | squeeze box -๐ŸŽธ Objects musical-instrument guitar | instrument | music -๐ŸŽน Objects musical-instrument keyboard instrument | keyboard | music | musical keyboard | piano | organ -๐ŸŽบ Objects musical-instrument instrument | music | trumpet -๐ŸŽป Objects musical-instrument instrument | music | violin -๐Ÿช• Objects musical-instrument banjo | music | stringed -๐Ÿฅ Objects musical-instrument drum | drumsticks | music | percussions -๐Ÿช˜ Objects musical-instrument drum beat | conga | drum | long drum | rhythm -๐Ÿช‡ Objects musical-instrument instrument | maracas | music | percussion | rattle | shake -๐Ÿชˆ Objects musical-instrument fife | flute | music | pipe | recorder | woodwind -๐Ÿ“ฑ Objects phone phone cell | mobile | phone | telephone -๐Ÿ“ฒ Objects phone phone with arrow arrow | cell | mobile | mobile phone with arrow | phone | receive -โ˜Ž๏ธ Objects phone -โ˜Ž Objects phone phone | telephone | landline -๐Ÿ“ž Objects phone receiver phone | receiver | telephone -๐Ÿ“Ÿ Objects phone pager -๐Ÿ“  Objects phone machine fax | fax machine -๐Ÿ”‹ Objects computer battery -๐Ÿชซ Objects computer battery electronic | low battery | low energy -๐Ÿ”Œ Objects computer plug electric | electricity | plug -๐Ÿ’ป Objects computer computer | laptop | pc | personal | PC -๐Ÿ–ฅ๏ธ Objects computer computer -๐Ÿ–ฅ Objects computer computer computer | desktop -๐Ÿ–จ๏ธ Objects computer -๐Ÿ–จ Objects computer computer | printer -โŒจ๏ธ Objects computer -โŒจ Objects computer computer | keyboard -๐Ÿ–ฑ๏ธ Objects computer mouse -๐Ÿ–ฑ Objects computer mouse computer | computer mouse -๐Ÿ–ฒ๏ธ Objects computer -๐Ÿ–ฒ Objects computer computer | trackball -๐Ÿ’ฝ Objects computer disk computer | disk | minidisk | optical -๐Ÿ’พ Objects computer disk computer | disk | floppy | diskette -๐Ÿ’ฟ Objects computer disk CD | computer | disk | optical -๐Ÿ“€ Objects computer Blu-ray | computer | disk | DVD | optical | blu-ray -๐Ÿงฎ Objects computer abacus | calculation -๐ŸŽฅ Objects light & video camera camera | cinema | movie -๐ŸŽž๏ธ Objects light & video frames -๐ŸŽž Objects light & video frames cinema | film | frames | movie -๐Ÿ“ฝ๏ธ Objects light & video projector -๐Ÿ“ฝ Objects light & video projector cinema | film | movie | projector | video -๐ŸŽฌ Objects light & video board clapper | clapper board | movie | clapperboard | film -๐Ÿ“บ Objects light & video television | tv | video | TV -๐Ÿ“ท Objects light & video camera | video -๐Ÿ“ธ Objects light & video with flash camera | camera with flash | flash | video -๐Ÿ“น Objects light & video camera camera | video -๐Ÿ“ผ Objects light & video tape | vhs | video | videocassette | VHS | videotape -๐Ÿ” Objects light & video glass tilted left glass | magnifying | magnifying glass tilted left | search | tool -๐Ÿ”Ž Objects light & video glass tilted right glass | magnifying | magnifying glass tilted right | search | tool -๐Ÿ•ฏ๏ธ Objects light & video -๐Ÿ•ฏ Objects light & video candle | light -๐Ÿ’ก Objects light & video bulb bulb | comic | electric | idea | light | globe -๐Ÿ”ฆ Objects light & video electric | flashlight | light | tool | torch -๐Ÿฎ Objects light & video paper lantern bar | lantern | light | red | red paper lantern -๐Ÿช” Objects light & video lamp diya | lamp | oil -๐Ÿ“” Objects book-paper with decorative cover book | cover | decorated | notebook | notebook with decorative cover -๐Ÿ“• Objects book-paper book book | closed -๐Ÿ“– Objects book-paper book book | open -๐Ÿ“— Objects book-paper book book | green -๐Ÿ“˜ Objects book-paper book blue | book -๐Ÿ“™ Objects book-paper book book | orange -๐Ÿ“š Objects book-paper book | books -๐Ÿ““ Objects book-paper notebook -๐Ÿ“’ Objects book-paper ledger | notebook -๐Ÿ“ƒ Objects book-paper with curl curl | document | page | page with curl -๐Ÿ“œ Objects book-paper paper | scroll -๐Ÿ“„ Objects book-paper facing up document | page | page facing up -๐Ÿ“ฐ Objects book-paper news | newspaper | paper -๐Ÿ—ž๏ธ Objects book-paper newspaper -๐Ÿ—ž Objects book-paper newspaper news | newspaper | paper | rolled | rolled-up newspaper -๐Ÿ“‘ Objects book-paper tabs bookmark | mark | marker | tabs -๐Ÿ”– Objects book-paper bookmark | mark -๐Ÿท๏ธ Objects book-paper -๐Ÿท Objects book-paper label | tag -๐Ÿ’ฐ Objects money bag bag | dollar | money | moneybag -๐Ÿช™ Objects money coin | gold | metal | money | silver | treasure -๐Ÿ’ด Objects money banknote banknote | bill | currency | money | note | yen -๐Ÿ’ต Objects money banknote banknote | bill | currency | dollar | money | note -๐Ÿ’ถ Objects money banknote banknote | bill | currency | euro | money | note -๐Ÿ’ท Objects money banknote banknote | bill | currency | money | note | pound | sterling -๐Ÿ’ธ Objects money with wings banknote | bill | fly | money | money with wings | wings -๐Ÿ’ณ Objects money card card | credit | money -๐Ÿงพ Objects money accounting | bookkeeping | evidence | proof | receipt -๐Ÿ’น Objects money increasing with yen chart | chart increasing with yen | graph | growth | money | yen | graph increasing with yen -โœ‰๏ธ Objects mail -โœ‰ Objects mail email | envelope | letter | e-mail -๐Ÿ“ง Objects mail e-mail | email | letter | mail -๐Ÿ“จ Objects mail envelope e-mail | email | envelope | incoming | letter | receive -๐Ÿ“ฉ Objects mail with arrow arrow | e-mail | email | envelope | envelope with arrow | outgoing -๐Ÿ“ค Objects mail tray box | letter | mail | outbox | sent | tray | out tray -๐Ÿ“ฅ Objects mail tray box | inbox | letter | mail | receive | tray | in tray -๐Ÿ“ฆ Objects mail box | package | parcel -๐Ÿ“ซ Objects mail mailbox with raised flag closed | closed mailbox with raised flag | mail | mailbox | postbox | closed postbox with raised flag | letterbox | post | post box | closed letterbox with raised flag -๐Ÿ“ช Objects mail mailbox with lowered flag closed | closed mailbox with lowered flag | lowered | mail | mailbox | postbox | closed postbox with lowered flag | letterbox | post box | closed letterbox with lowered flag -๐Ÿ“ฌ Objects mail mailbox with raised flag mail | mailbox | open | open mailbox with raised flag | postbox | open postbox with raised flag | post | post box | open letterbox with raised flag -๐Ÿ“ญ Objects mail mailbox with lowered flag lowered | mail | mailbox | open | open mailbox with lowered flag | postbox | open postbox with lowered flag | post | post box | open letterbox with lowered flag -๐Ÿ“ฎ Objects mail mail | mailbox | postbox | post | post box -๐Ÿ—ณ๏ธ Objects mail box with ballot -๐Ÿ—ณ Objects mail box with ballot ballot | ballot box with ballot | box -โœ๏ธ Objects writing -โœ Objects writing pencil -โœ’๏ธ Objects writing nib -โœ’ Objects writing nib black nib | nib | pen -๐Ÿ–‹๏ธ Objects writing pen -๐Ÿ–‹ Objects writing pen fountain | pen -๐Ÿ–Š๏ธ Objects writing -๐Ÿ–Š Objects writing ballpoint | pen -๐Ÿ–Œ๏ธ Objects writing -๐Ÿ–Œ Objects writing paintbrush | painting -๐Ÿ–๏ธ Objects writing -๐Ÿ– Objects writing crayon -๐Ÿ“ Objects writing memo | pencil -๐Ÿ’ผ Objects office briefcase -๐Ÿ“ Objects office folder file | folder -๐Ÿ“‚ Objects office file folder file | folder | open -๐Ÿ—‚๏ธ Objects office index dividers -๐Ÿ—‚ Objects office index dividers card | dividers | index -๐Ÿ“… Objects office calendar | date -๐Ÿ“† Objects office calendar calendar | tear-off calendar -๐Ÿ—’๏ธ Objects office notepad -๐Ÿ—’ Objects office notepad note | pad | spiral | spiral notepad -๐Ÿ—“๏ธ Objects office calendar -๐Ÿ—“ Objects office calendar calendar | pad | spiral -๐Ÿ“‡ Objects office index card | index | rolodex -๐Ÿ“ˆ Objects office increasing chart | chart increasing | graph | growth | trend | upward | graph increasing -๐Ÿ“‰ Objects office decreasing chart | chart decreasing | down | graph | trend | graph decreasing -๐Ÿ“Š Objects office chart bar | chart | graph -๐Ÿ“‹ Objects office clipboard -๐Ÿ“Œ Objects office pin | pushpin | drawing-pin -๐Ÿ“ Objects office pushpin pin | pushpin | round pushpin | round drawing-pin -๐Ÿ“Ž Objects office paperclip -๐Ÿ–‡๏ธ Objects office paperclips -๐Ÿ–‡ Objects office paperclips link | linked paperclips | paperclip -๐Ÿ“ Objects office ruler ruler | straight edge | straight ruler -๐Ÿ“ Objects office ruler ruler | set | triangle | triangular ruler | set square -โœ‚๏ธ Objects office -โœ‚ Objects office cutting | scissors | tool -๐Ÿ—ƒ๏ธ Objects office file box -๐Ÿ—ƒ Objects office file box box | card | file -๐Ÿ—„๏ธ Objects office cabinet -๐Ÿ—„ Objects office cabinet cabinet | file | filing -๐Ÿ—‘๏ธ Objects office -๐Ÿ—‘ Objects office wastebasket | rubbish bin | trash | waste paper basket -๐Ÿ”’ Objects lock closed | locked | padlock -๐Ÿ”“ Objects lock lock | open | unlock | unlocked | padlock -๐Ÿ” Objects lock with pen ink | lock | locked with pen | nib | pen | privacy -๐Ÿ” Objects lock with key closed | key | lock | locked with key | secure -๐Ÿ”‘ Objects lock key | lock | password -๐Ÿ—๏ธ Objects lock key -๐Ÿ— Objects lock key clue | key | lock | old -๐Ÿ”จ Objects tool hammer | tool -๐Ÿช“ Objects tool axe | chop | hatchet | split | wood -โ›๏ธ Objects tool -โ› Objects tool mining | pick | tool -โš’๏ธ Objects tool and pick -โš’ Objects tool and pick hammer | hammer and pick | pick | tool -๐Ÿ› ๏ธ Objects tool and wrench -๐Ÿ›  Objects tool and wrench hammer | hammer and wrench | spanner | tool | wrench | hammer and spanner -๐Ÿ—ก๏ธ Objects tool -๐Ÿ—ก Objects tool dagger | knife | weapon -โš”๏ธ Objects tool swords -โš” Objects tool swords crossed | swords | weapon -๐Ÿ’ฃ Objects tool bomb | comic -๐Ÿชƒ Objects tool boomerang | rebound | repercussion -๐Ÿน Objects tool and arrow archer | arrow | bow | bow and arrow | Sagittarius | zodiac -๐Ÿ›ก๏ธ Objects tool -๐Ÿ›ก Objects tool shield | weapon -๐Ÿชš Objects tool saw carpenter | carpentry saw | lumber | saw | tool -๐Ÿ”ง Objects tool spanner | tool | wrench -๐Ÿช› Objects tool screw | screwdriver | tool -๐Ÿ”ฉ Objects tool and bolt bolt | nut | nut and bolt | tool -โš™๏ธ Objects tool -โš™ Objects tool cog | cogwheel | gear | tool -๐Ÿ—œ๏ธ Objects tool -๐Ÿ—œ Objects tool clamp | compress | tool | vice -โš–๏ธ Objects tool scale -โš– Objects tool scale balance | justice | Libra | scale | zodiac -๐Ÿฆฏ Objects tool cane accessibility | blind | white cane | guide cane | long mobility cane -๐Ÿ”— Objects tool link -โ›“๏ธโ€๐Ÿ’ฅ Objects tool chain -โ›“โ€๐Ÿ’ฅ Objects tool chain break | breaking | broken chain | chain | cuffs | freedom -โ›“๏ธ Objects tool -โ›“ Objects tool chain | chains -๐Ÿช Objects tool catch | crook | curve | ensnare | hook | selling point | fishing -๐Ÿงฐ Objects tool chest | mechanic | tool | toolbox -๐Ÿงฒ Objects tool attraction | horseshoe | magnet | magnetic -๐Ÿชœ Objects tool climb | ladder | rung | step -โš—๏ธ Objects science -โš— Objects science alembic | chemistry | tool -๐Ÿงช Objects science tube chemist | chemistry | experiment | lab | science | test tube -๐Ÿงซ Objects science dish bacteria | biologist | biology | culture | lab | petri dish -๐Ÿงฌ Objects science biologist | dna | evolution | gene | genetics | life | DNA -๐Ÿ”ฌ Objects science microscope | science | tool -๐Ÿ”ญ Objects science science | telescope | tool -๐Ÿ“ก Objects science antenna antenna | dish | satellite -๐Ÿ’‰ Objects medical medicine | needle | shot | sick | syringe | ill | injection -๐Ÿฉธ Objects medical of blood bleed | blood donation | drop of blood | injury | medicine | menstruation -๐Ÿ’Š Objects medical doctor | medicine | pill | sick | capsule -๐Ÿฉน Objects medical bandage adhesive bandage | bandage | injury | plaster | sticking plaster | bandaid | dressing -๐Ÿฉผ Objects medical cane | crutch | disability | hurt | mobility aid | stick -๐Ÿฉบ Objects medical doctor | heart | medicine | stethoscope -๐Ÿฉป Objects medical bones | doctor | medical | skeleton | x-ray | X-ray -๐Ÿšช Objects household door -๐Ÿ›— Objects household accessibility | elevator | hoist | lift -๐Ÿชž Objects household mirror | reflection | reflector | speculum | looking glass -๐ŸชŸ Objects household frame | fresh air | opening | transparent | view | window -๐Ÿ›๏ธ Objects household -๐Ÿ› Objects household bed | hotel | sleep -๐Ÿ›‹๏ธ Objects household and lamp -๐Ÿ›‹ Objects household and lamp couch | couch and lamp | hotel | lamp | sofa | sofa and lamp -๐Ÿช‘ Objects household chair | seat | sit -๐Ÿšฝ Objects household toilet | facilities | loo | WC | lavatory -๐Ÿช  Objects household force cup | plumber | plunger | suction | toilet -๐Ÿšฟ Objects household shower | water -๐Ÿ› Objects household bath | bathtub -๐Ÿชค Objects household trap bait | mouse trap | mousetrap | snare | trap | mouse -๐Ÿช’ Objects household razor | sharp | shave | cut-throat -๐Ÿงด Objects household bottle lotion | lotion bottle | moisturizer | shampoo | sunscreen | moisturiser -๐Ÿงท Objects household pin diaper | punk rock | safety pin | nappy -๐Ÿงน Objects household broom | cleaning | sweeping | witch -๐Ÿงบ Objects household basket | farming | laundry | picnic -๐Ÿงป Objects household of paper paper towels | roll of paper | toilet paper | toilet roll -๐Ÿชฃ Objects household bucket | cask | pail | vat -๐Ÿงผ Objects household bar | bathing | cleaning | lather | soap | soapdish -๐Ÿซง Objects household bubbles | burp | clean | soap | underwater -๐Ÿชฅ Objects household bathroom | brush | clean | dental | hygiene | teeth | toothbrush -๐Ÿงฝ Objects household absorbing | cleaning | porous | sponge -๐Ÿงฏ Objects household extinguisher extinguish | fire | fire extinguisher | quench -๐Ÿ›’ Objects household cart cart | shopping | trolley | basket -๐Ÿšฌ Objects other-object cigarette | smoking -โšฐ๏ธ Objects other-object -โšฐ Objects other-object coffin | death | casket -๐Ÿชฆ Objects other-object cemetery | grave | graveyard | headstone | tombstone -โšฑ๏ธ Objects other-object urn -โšฑ Objects other-object urn ashes | death | funeral | urn -๐Ÿงฟ Objects other-object amulet bead | charm | evil-eye | nazar | nazar amulet | talisman | amulet | evil eye -๐Ÿชฌ Objects other-object amulet | Fatima | hamsa | hand | Mary | Miriam | protection -๐Ÿ—ฟ Objects other-object face | moai | moyai | statue -๐Ÿชง Objects other-object demonstration | picket | placard | protest | sign -๐Ÿชช Objects other-object card credentials | ID | identification card | license | security | driving | licence -๐Ÿง Symbols transport-sign sign ATM | ATM sign | automated | bank | teller -๐Ÿšฎ Symbols transport-sign in bin sign litter | litter bin | litter in bin sign | garbage | trash -๐Ÿšฐ Symbols transport-sign water drinking | potable | water -โ™ฟ Symbols transport-sign symbol access | wheelchair symbol | disabled access -๐Ÿšน Symbols transport-sign room bathroom | lavatory | man | menโ€™s room | restroom | toilet | WC | menโ€™s | washroom | wc -๐Ÿšบ Symbols transport-sign room bathroom | lavatory | restroom | toilet | WC | woman | womenโ€™s room | ladies room | wc | womenโ€™s toilet | ladiesโ€™ room -๐Ÿšป Symbols transport-sign bathroom | lavatory | restroom | toilet | WC | washroom -๐Ÿšผ Symbols transport-sign symbol baby | baby symbol | changing | change room -๐Ÿšพ Symbols transport-sign closet bathroom | closet | lavatory | restroom | toilet | water | WC | wc | amenities | water closet -๐Ÿ›‚ Symbols transport-sign control control | passport | border | security -๐Ÿ›ƒ Symbols transport-sign customs -๐Ÿ›„ Symbols transport-sign claim baggage | claim -๐Ÿ›… Symbols transport-sign luggage baggage | left luggage | locker | luggage -โš ๏ธ Symbols warning -โš  Symbols warning warning -๐Ÿšธ Symbols warning crossing child | children crossing | crossing | pedestrian | traffic -โ›” Symbols warning entry entry | forbidden | no | not | prohibited | traffic | denied -๐Ÿšซ Symbols warning entry | forbidden | no | not | prohibited | denied -๐Ÿšณ Symbols warning bicycles bicycle | bike | forbidden | no | no bicycles | prohibited -๐Ÿšญ Symbols warning smoking forbidden | no | not | prohibited | smoking | denied -๐Ÿšฏ Symbols warning littering forbidden | litter | no | no littering | not | prohibited | denied -๐Ÿšฑ Symbols warning water non-drinking | non-potable | water | non-drinkable water -๐Ÿšท Symbols warning pedestrians forbidden | no | no pedestrians | not | pedestrian | prohibited | denied -๐Ÿ“ต Symbols warning mobile phones cell | forbidden | mobile | no | no mobile phones | phone -๐Ÿ”ž Symbols warning one under eighteen 18 | age restriction | eighteen | no one under eighteen | prohibited | underage -โ˜ข๏ธ Symbols warning -โ˜ข Symbols warning radioactive | sign -โ˜ฃ๏ธ Symbols warning -โ˜ฃ Symbols warning biohazard | sign -โฌ†๏ธ Symbols arrow arrow -โฌ† Symbols arrow arrow arrow | cardinal | direction | north | up arrow | up -โ†—๏ธ Symbols arrow arrow -โ†— Symbols arrow arrow arrow | direction | intercardinal | northeast | up-right arrow -โžก๏ธ Symbols arrow arrow -โžก Symbols arrow arrow arrow | cardinal | direction | east | right arrow -โ†˜๏ธ Symbols arrow arrow -โ†˜ Symbols arrow arrow arrow | direction | down-right arrow | intercardinal | southeast -โฌ‡๏ธ Symbols arrow arrow -โฌ‡ Symbols arrow arrow arrow | cardinal | direction | down | south -โ†™๏ธ Symbols arrow arrow -โ†™ Symbols arrow arrow arrow | direction | down-left arrow | intercardinal | southwest -โฌ…๏ธ Symbols arrow arrow -โฌ… Symbols arrow arrow arrow | cardinal | direction | left arrow | west -โ†–๏ธ Symbols arrow arrow -โ†– Symbols arrow arrow arrow | direction | intercardinal | northwest | up-left arrow -โ†•๏ธ Symbols arrow arrow -โ†• Symbols arrow arrow arrow | up-down arrow -โ†”๏ธ Symbols arrow arrow -โ†” Symbols arrow arrow arrow | left-right arrow -โ†ฉ๏ธ Symbols arrow arrow curving left -โ†ฉ Symbols arrow arrow curving left arrow | right arrow curving left -โ†ช๏ธ Symbols arrow arrow curving right -โ†ช Symbols arrow arrow curving right arrow | left arrow curving right -โคด๏ธ Symbols arrow arrow curving up -โคด Symbols arrow arrow curving up arrow | right arrow curving up -โคต๏ธ Symbols arrow arrow curving down -โคต Symbols arrow arrow curving down arrow | down | right arrow curving down -๐Ÿ”ƒ Symbols arrow vertical arrows arrow | clockwise | clockwise vertical arrows | reload -๐Ÿ”„ Symbols arrow arrows button anticlockwise | arrow | counterclockwise | counterclockwise arrows button | withershins | anticlockwise arrows button -๐Ÿ”™ Symbols arrow arrow arrow | BACK -๐Ÿ”š Symbols arrow arrow arrow | END -๐Ÿ”› Symbols arrow arrow arrow | mark | ON | ON! -๐Ÿ”œ Symbols arrow arrow arrow | SOON -๐Ÿ” Symbols arrow arrow arrow | TOP | up -๐Ÿ› Symbols religion of worship place of worship | religion | worship -โš›๏ธ Symbols religion symbol -โš› Symbols religion symbol atheist | atom | atom symbol -๐Ÿ•‰๏ธ Symbols religion -๐Ÿ•‰ Symbols religion Hindu | om | religion -โœก๏ธ Symbols religion of David -โœก Symbols religion of David David | Jew | Jewish | religion | star | star of David | Judaism | Star of David -โ˜ธ๏ธ Symbols religion of dharma -โ˜ธ Symbols religion of dharma Buddhist | dharma | religion | wheel | wheel of dharma -โ˜ฏ๏ธ Symbols religion yang -โ˜ฏ Symbols religion yang religion | tao | taoist | yang | yin | Tao | Taoist -โœ๏ธ Symbols religion cross -โœ Symbols religion cross Christian | cross | latin cross | religion | Latin cross -โ˜ฆ๏ธ Symbols religion cross -โ˜ฆ Symbols religion cross Christian | cross | orthodox cross | religion | Orthodox cross -โ˜ช๏ธ Symbols religion and crescent -โ˜ช Symbols religion and crescent islam | Muslim | religion | star and crescent | Islam -โ˜ฎ๏ธ Symbols religion symbol -โ˜ฎ Symbols religion symbol peace | peace symbol -๐Ÿ•Ž Symbols religion candelabrum | candlestick | menorah | religion -๐Ÿ”ฏ Symbols religion six-pointed star dotted six-pointed star | fortune | star -๐Ÿชฏ Symbols religion khanda | religion | Sikh -โ™ˆ Symbols zodiac Aries | ram | zodiac -โ™‰ Symbols zodiac bull | ox | Taurus | zodiac -โ™Š Symbols zodiac Gemini | twins | zodiac -โ™‹ Symbols zodiac Cancer | crab | zodiac -โ™Œ Symbols zodiac Leo | lion | zodiac -โ™ Symbols zodiac Virgo | zodiac | virgin -โ™Ž Symbols zodiac balance | justice | Libra | scales | zodiac -โ™ Symbols zodiac Scorpio | scorpion | scorpius | zodiac | Scorpius -โ™ Symbols zodiac archer | Sagittarius | zodiac | centaur -โ™‘ Symbols zodiac Capricorn | goat | zodiac -โ™’ Symbols zodiac Aquarius | bearer | water | zodiac | water bearer -โ™“ Symbols zodiac fish | Pisces | zodiac -โ›Ž Symbols zodiac bearer | Ophiuchus | serpent | snake | zodiac -๐Ÿ”€ Symbols av-symbol tracks button arrow | crossed | shuffle tracks button -๐Ÿ” Symbols av-symbol button arrow | clockwise | repeat | repeat button -๐Ÿ”‚ Symbols av-symbol single button arrow | clockwise | once | repeat single button -โ–ถ๏ธ Symbols av-symbol button -โ–ถ Symbols av-symbol button arrow | play | play button | right | triangle -โฉ Symbols av-symbol button arrow | double | fast | fast-forward button | forward | fast forward button -โญ๏ธ Symbols av-symbol track button -โญ Symbols av-symbol track button arrow | next scene | next track | next track button | triangle -โฏ๏ธ Symbols av-symbol or pause button -โฏ Symbols av-symbol or pause button arrow | pause | play | play or pause button | right | triangle -โ—€๏ธ Symbols av-symbol button -โ—€ Symbols av-symbol button arrow | left | reverse | reverse button | triangle -โช Symbols av-symbol reverse button arrow | double | fast reverse button | rewind -โฎ๏ธ Symbols av-symbol track button -โฎ Symbols av-symbol track button arrow | last track button | previous scene | previous track | triangle -๐Ÿ”ผ Symbols av-symbol button arrow | button | upwards button | red | upward button -โซ Symbols av-symbol up button arrow | double | fast up button -๐Ÿ”ฝ Symbols av-symbol button arrow | button | down | downwards button | downward button | red -โฌ Symbols av-symbol down button arrow | double | down | fast down button -โธ๏ธ Symbols av-symbol button -โธ Symbols av-symbol button bar | double | pause | pause button | vertical -โน๏ธ Symbols av-symbol button -โน Symbols av-symbol button square | stop | stop button -โบ๏ธ Symbols av-symbol button -โบ Symbols av-symbol button circle | record | record button -โ๏ธ Symbols av-symbol button -โ Symbols av-symbol button eject | eject button -๐ŸŽฆ Symbols av-symbol camera | cinema | film | movie -๐Ÿ”… Symbols av-symbol button brightness | dim | dim button | low -๐Ÿ”† Symbols av-symbol button bright | bright button | brightness | brightness button -๐Ÿ“ถ Symbols av-symbol bars antenna | antenna bars | bar | cell | mobile | phone -๐Ÿ›œ Symbols av-symbol computer | internet | network | wi-fi | wifi | wireless | Wi-Fi -๐Ÿ“ณ Symbols av-symbol mode cell | mobile | mode | phone | telephone | vibration | vibrate -๐Ÿ“ด Symbols av-symbol phone off cell | mobile | off | phone | telephone -โ™€๏ธ Symbols gender sign -โ™€ Symbols gender sign female sign | woman -โ™‚๏ธ Symbols gender sign -โ™‚ Symbols gender sign male sign | man -โšง๏ธ Symbols gender symbol -โšง Symbols gender symbol transgender | transgender symbol | trans -โœ–๏ธ Symbols math -โœ– Symbols math ร— | cancel | multiplication | multiply | sign | x | heavy multiplication sign -โž• Symbols math + | math | plus | sign | maths | add | addition -โž– Symbols math - | โˆ’ | math | minus | sign | heavy minus sign | maths | โ€“ | subtraction -โž— Symbols math รท | divide | division | math | sign -๐ŸŸฐ Symbols math equals sign equality | heavy equals sign | math | maths -โ™พ๏ธ Symbols math -โ™พ Symbols math forever | infinity | unbounded | universal | eternal | unbound -โ€ผ๏ธ Symbols punctuation exclamation mark -โ€ผ Symbols punctuation exclamation mark ! | !! | bangbang | double exclamation mark | exclamation | mark | punctuation -โ‰๏ธ Symbols punctuation question mark -โ‰ Symbols punctuation question mark ! | !? | ? | exclamation | interrobang | mark | punctuation | question | exclamation question mark -โ“ Symbols punctuation question mark ? | mark | punctuation | question | red question mark -โ” Symbols punctuation question mark ? | mark | outlined | punctuation | question | white question mark -โ• Symbols punctuation exclamation mark ! | exclamation | mark | outlined | punctuation | white exclamation mark -โ— Symbols punctuation exclamation mark ! | exclamation | mark | punctuation | red exclamation mark -ใ€ฐ๏ธ Symbols punctuation dash -ใ€ฐ Symbols punctuation dash dash | punctuation | wavy -๐Ÿ’ฑ Symbols currency exchange bank | currency | exchange | money -๐Ÿ’ฒ Symbols currency dollar sign currency | dollar | heavy dollar sign | money -โš•๏ธ Symbols other-symbol symbol -โš• Symbols other-symbol symbol aesculapius | medical symbol | medicine | staff -โ™ป๏ธ Symbols other-symbol symbol -โ™ป Symbols other-symbol symbol recycle | recycling symbol -โšœ๏ธ Symbols other-symbol -โšœ Symbols other-symbol fleur-de-lis -๐Ÿ”ฑ Symbols other-symbol emblem anchor | emblem | ship | tool | trident -๐Ÿ“› Symbols other-symbol badge badge | name -๐Ÿ”ฐ Symbols other-symbol symbol for beginner beginner | chevron | Japanese | Japanese symbol for beginner | leaf -โญ• Symbols other-symbol red circle circle | hollow red circle | large | o | red -โœ… Symbols other-symbol mark button โœ“ | button | check | mark | tick -โ˜‘๏ธ Symbols other-symbol box with check -โ˜‘ Symbols other-symbol box with check โœ“ | box | check | check box with check | tick | tick box with tick | ballot -โœ”๏ธ Symbols other-symbol mark -โœ” Symbols other-symbol mark โœ“ | check | mark | tick | check mark | heavy tick mark -โŒ Symbols other-symbol mark ร— | cancel | cross | mark | multiplication | multiply | x -โŽ Symbols other-symbol mark button ร— | cross mark button | mark | square | x -โžฐ Symbols other-symbol loop curl | curly loop | loop -โžฟ Symbols other-symbol curly loop curl | double | double curly loop | loop -ใ€ฝ๏ธ Symbols other-symbol alternation mark -ใ€ฝ Symbols other-symbol alternation mark mark | part | part alternation mark -โœณ๏ธ Symbols other-symbol asterisk -โœณ Symbols other-symbol asterisk * | asterisk | eight-spoked asterisk -โœด๏ธ Symbols other-symbol star -โœด Symbols other-symbol star * | eight-pointed star | star -โ‡๏ธ Symbols other-symbol -โ‡ Symbols other-symbol * | sparkle -ยฉ๏ธ Symbols other-symbol -ยฉ Symbols other-symbol C | copyright -ยฎ๏ธ Symbols other-symbol -ยฎ Symbols other-symbol R | registered | r | trademark -โ„ข๏ธ Symbols other-symbol mark -โ„ข Symbols other-symbol mark mark | TM | trade mark | trademark -#๏ธโƒฃ Symbols keycap # -#โƒฃ Symbols keycap # keycap | keycap: # -*๏ธโƒฃ Symbols keycap * -*โƒฃ Symbols keycap * keycap | keycap: * -0๏ธโƒฃ Symbols keycap 0 -0โƒฃ Symbols keycap 0 keycap | keycap: 0 -1๏ธโƒฃ Symbols keycap 1 -1โƒฃ Symbols keycap 1 keycap | keycap: 1 -2๏ธโƒฃ Symbols keycap 2 -2โƒฃ Symbols keycap 2 keycap | keycap: 2 -3๏ธโƒฃ Symbols keycap 3 -3โƒฃ Symbols keycap 3 keycap | keycap: 3 -4๏ธโƒฃ Symbols keycap 4 -4โƒฃ Symbols keycap 4 keycap | keycap: 4 -5๏ธโƒฃ Symbols keycap 5 -5โƒฃ Symbols keycap 5 keycap | keycap: 5 -6๏ธโƒฃ Symbols keycap 6 -6โƒฃ Symbols keycap 6 keycap | keycap: 6 -7๏ธโƒฃ Symbols keycap 7 -7โƒฃ Symbols keycap 7 keycap | keycap: 7 -8๏ธโƒฃ Symbols keycap 8 -8โƒฃ Symbols keycap 8 keycap | keycap: 8 -9๏ธโƒฃ Symbols keycap 9 -9โƒฃ Symbols keycap 9 keycap | keycap: 9 -๐Ÿ”Ÿ Symbols keycap 10 keycap | keycap: 10 -๐Ÿ”  Symbols alphanum latin uppercase ABCD | input | latin | letters | uppercase | input Latin uppercase | Latin -๐Ÿ”ก Symbols alphanum latin lowercase abcd | input | latin | letters | lowercase | input Latin lowercase | Latin -๐Ÿ”ข Symbols alphanum numbers 1234 | input | numbers -๐Ÿ”ฃ Symbols alphanum symbols ใ€’โ™ช&% | input | input symbols -๐Ÿ”ค Symbols alphanum latin letters abc | alphabet | input | latin | letters | input Latin letters | Latin -๐Ÿ…ฐ๏ธ Symbols alphanum button (blood type) -๐Ÿ…ฐ Symbols alphanum button (blood type) A | A button (blood type) | blood type -๐Ÿ†Ž Symbols alphanum button (blood type) AB | AB button (blood type) | blood type -๐Ÿ…ฑ๏ธ Symbols alphanum button (blood type) -๐Ÿ…ฑ Symbols alphanum button (blood type) B | B button (blood type) | blood type -๐Ÿ†‘ Symbols alphanum button CL | CL button -๐Ÿ†’ Symbols alphanum button COOL | COOL button -๐Ÿ†“ Symbols alphanum button FREE | FREE button -โ„น๏ธ Symbols alphanum -โ„น Symbols alphanum i | information -๐Ÿ†” Symbols alphanum button ID | ID button | identity -โ“‚๏ธ Symbols alphanum M -โ“‚ Symbols alphanum M circle | circled M | M -๐Ÿ†• Symbols alphanum button NEW | NEW button -๐Ÿ†– Symbols alphanum button NG | NG button -๐Ÿ…พ๏ธ Symbols alphanum button (blood type) -๐Ÿ…พ Symbols alphanum button (blood type) blood type | O | O button (blood type) -๐Ÿ†— Symbols alphanum button OK | OK button -๐Ÿ…ฟ๏ธ Symbols alphanum button -๐Ÿ…ฟ Symbols alphanum button P | P button | parking | car park | carpark -๐Ÿ†˜ Symbols alphanum button help | SOS | SOS button -๐Ÿ†™ Symbols alphanum button mark | UP | UP! | UP! button -๐Ÿ†š Symbols alphanum button versus | VS | VS button -๐Ÿˆ Symbols alphanum โ€œhereโ€ button โ€œhereโ€ | Japanese | Japanese โ€œhereโ€ button | katakana | ใ‚ณใ‚ณ -๐Ÿˆ‚๏ธ Symbols alphanum โ€œservice chargeโ€ button -๐Ÿˆ‚ Symbols alphanum โ€œservice chargeโ€ button โ€œservice chargeโ€ | Japanese | Japanese โ€œservice chargeโ€ button | katakana | ใ‚ต -๐Ÿˆท๏ธ Symbols alphanum โ€œmonthly amountโ€ button -๐Ÿˆท Symbols alphanum โ€œmonthly amountโ€ button โ€œmonthly amountโ€ | ideograph | Japanese | Japanese โ€œmonthly amountโ€ button | ๆœˆ -๐Ÿˆถ Symbols alphanum โ€œnot free of chargeโ€ button โ€œnot free of chargeโ€ | ideograph | Japanese | Japanese โ€œnot free of chargeโ€ button | ๆœ‰ -๐Ÿˆฏ Symbols alphanum โ€œreservedโ€ button โ€œreservedโ€ | ideograph | Japanese | Japanese โ€œreservedโ€ button | ๆŒ‡ -๐Ÿ‰ Symbols alphanum โ€œbargainโ€ button โ€œbargainโ€ | ideograph | Japanese | Japanese โ€œbargainโ€ button | ๅพ— -๐Ÿˆน Symbols alphanum โ€œdiscountโ€ button โ€œdiscountโ€ | ideograph | Japanese | Japanese โ€œdiscountโ€ button | ๅ‰ฒ -๐Ÿˆš Symbols alphanum โ€œfree of chargeโ€ button โ€œfree of chargeโ€ | ideograph | Japanese | Japanese โ€œfree of chargeโ€ button | ็„ก -๐Ÿˆฒ Symbols alphanum โ€œprohibitedโ€ button โ€œprohibitedโ€ | ideograph | Japanese | Japanese โ€œprohibitedโ€ button | ็ฆ -๐Ÿ‰‘ Symbols alphanum โ€œacceptableโ€ button โ€œacceptableโ€ | ideograph | Japanese | Japanese โ€œacceptableโ€ button | ๅฏ -๐Ÿˆธ Symbols alphanum โ€œapplicationโ€ button โ€œapplicationโ€ | ideograph | Japanese | Japanese โ€œapplicationโ€ button | ็”ณ -๐Ÿˆด Symbols alphanum โ€œpassing gradeโ€ button โ€œpassing gradeโ€ | ideograph | Japanese | Japanese โ€œpassing gradeโ€ button | ๅˆ -๐Ÿˆณ Symbols alphanum โ€œvacancyโ€ button โ€œvacancyโ€ | ideograph | Japanese | Japanese โ€œvacancyโ€ button | ็ฉบ -ใŠ—๏ธ Symbols alphanum โ€œcongratulationsโ€ button -ใŠ— Symbols alphanum โ€œcongratulationsโ€ button โ€œcongratulationsโ€ | ideograph | Japanese | Japanese โ€œcongratulationsโ€ button | ็ฅ -ใŠ™๏ธ Symbols alphanum โ€œsecretโ€ button -ใŠ™ Symbols alphanum โ€œsecretโ€ button โ€œsecretโ€ | ideograph | Japanese | Japanese โ€œsecretโ€ button | ็ง˜ -๐Ÿˆบ Symbols alphanum โ€œopen for businessโ€ button โ€œopen for businessโ€ | ideograph | Japanese | Japanese โ€œopen for businessโ€ button | ๅ–ถ -๐Ÿˆต Symbols alphanum โ€œno vacancyโ€ button โ€œno vacancyโ€ | ideograph | Japanese | Japanese โ€œno vacancyโ€ button | ๆบ€ -๐Ÿ”ด Symbols geometric circle circle | geometric | red -๐ŸŸ  Symbols geometric circle circle | orange -๐ŸŸก Symbols geometric circle circle | yellow -๐ŸŸข Symbols geometric circle circle | green -๐Ÿ”ต Symbols geometric circle blue | circle | geometric -๐ŸŸฃ Symbols geometric circle circle | purple -๐ŸŸค Symbols geometric circle brown | circle -โšซ Symbols geometric circle black circle | circle | geometric -โšช Symbols geometric circle circle | geometric | white circle -๐ŸŸฅ Symbols geometric square red | square -๐ŸŸง Symbols geometric square orange | square -๐ŸŸจ Symbols geometric square square | yellow -๐ŸŸฉ Symbols geometric square green | square -๐ŸŸฆ Symbols geometric square blue | square -๐ŸŸช Symbols geometric square purple | square -๐ŸŸซ Symbols geometric square brown | square -โฌ› Symbols geometric large square black large square | geometric | square -โฌœ Symbols geometric large square geometric | square | white large square -โ—ผ๏ธ Symbols geometric medium square -โ—ผ Symbols geometric medium square black medium square | geometric | square -โ—ป๏ธ Symbols geometric medium square -โ—ป Symbols geometric medium square geometric | square | white medium square -โ—พ Symbols geometric medium-small square black medium-small square | geometric | square -โ—ฝ Symbols geometric medium-small square geometric | square | white medium-small square -โ–ช๏ธ Symbols geometric small square -โ–ช Symbols geometric small square black small square | geometric | square -โ–ซ๏ธ Symbols geometric small square -โ–ซ Symbols geometric small square geometric | square | white small square -๐Ÿ”ถ Symbols geometric orange diamond diamond | geometric | large orange diamond | orange -๐Ÿ”ท Symbols geometric blue diamond blue | diamond | geometric | large blue diamond -๐Ÿ”ธ Symbols geometric orange diamond diamond | geometric | orange | small orange diamond -๐Ÿ”น Symbols geometric blue diamond blue | diamond | geometric | small blue diamond -๐Ÿ”บ Symbols geometric triangle pointed up geometric | red | red triangle pointed up -๐Ÿ”ป Symbols geometric triangle pointed down down | geometric | red | red triangle pointed down -๐Ÿ’  Symbols geometric with a dot comic | diamond | diamond with a dot | geometric | inside -๐Ÿ”˜ Symbols geometric button button | geometric | radio -๐Ÿ”ณ Symbols geometric square button button | geometric | outlined | square | white square button -๐Ÿ”ฒ Symbols geometric square button black square button | button | geometric | square -๐Ÿ flag flag checkered | chequered | chequered flag | racing | checkered flag -๐Ÿšฉ flag flag post | triangular flag | red flag -๐ŸŽŒ flag celebration | cross | crossed | crossed flags | Japanese -๐Ÿด flag flag black flag | waving -๐Ÿณ๏ธ flag flag -๐Ÿณ flag flag waving | white flag | surrender -๐Ÿณ๏ธโ€๐ŸŒˆ flag flag -๐Ÿณโ€๐ŸŒˆ flag flag pride | rainbow | rainbow flag -๐Ÿณ๏ธโ€โšง๏ธ flag flag -๐Ÿณ๏ธโ€โšง flag flag -๐Ÿณโ€โšง flag flag flag | light blue | pink | transgender | white | trans -๐Ÿดโ€โ˜ ๏ธ flag flag -๐Ÿดโ€โ˜  flag flag Jolly Roger | pirate | pirate flag | plunder | treasure -๐Ÿ‡ฆ๐Ÿ‡จ country-flag Ascension Island flag | flag: Ascension Island -๐Ÿ‡ฆ๐Ÿ‡ฉ country-flag Andorra flag | flag: Andorra -๐Ÿ‡ฆ๐Ÿ‡ช country-flag United Arab Emirates flag | flag: United Arab Emirates -๐Ÿ‡ฆ๐Ÿ‡ซ country-flag Afghanistan flag | flag: Afghanistan -๐Ÿ‡ฆ๐Ÿ‡ฌ country-flag Antigua & Barbuda flag | flag: Antigua & Barbuda | flag: Antigua and Barbuda -๐Ÿ‡ฆ๐Ÿ‡ฎ country-flag Anguilla flag | flag: Anguilla -๐Ÿ‡ฆ๐Ÿ‡ฑ country-flag Albania flag | flag: Albania -๐Ÿ‡ฆ๐Ÿ‡ฒ country-flag Armenia flag | flag: Armenia -๐Ÿ‡ฆ๐Ÿ‡ด country-flag Angola flag | flag: Angola -๐Ÿ‡ฆ๐Ÿ‡ถ country-flag Antarctica flag | flag: Antarctica -๐Ÿ‡ฆ๐Ÿ‡ท country-flag Argentina flag | flag: Argentina -๐Ÿ‡ฆ๐Ÿ‡ธ country-flag American Samoa flag | flag: American Samoa -๐Ÿ‡ฆ๐Ÿ‡น country-flag Austria flag | flag: Austria -๐Ÿ‡ฆ๐Ÿ‡บ country-flag Australia flag | flag: Australia -๐Ÿ‡ฆ๐Ÿ‡ผ country-flag Aruba flag | flag: Aruba -๐Ÿ‡ฆ๐Ÿ‡ฝ country-flag ร…land Islands flag | flag: ร…land Islands -๐Ÿ‡ฆ๐Ÿ‡ฟ country-flag Azerbaijan flag | flag: Azerbaijan -๐Ÿ‡ง๐Ÿ‡ฆ country-flag Bosnia & Herzegovina flag | flag: Bosnia & Herzegovina | flag: Bosnia and Herzegovina -๐Ÿ‡ง๐Ÿ‡ง country-flag Barbados flag | flag: Barbados -๐Ÿ‡ง๐Ÿ‡ฉ country-flag Bangladesh flag | flag: Bangladesh -๐Ÿ‡ง๐Ÿ‡ช country-flag Belgium flag | flag: Belgium -๐Ÿ‡ง๐Ÿ‡ซ country-flag Burkina Faso flag | flag: Burkina Faso -๐Ÿ‡ง๐Ÿ‡ฌ country-flag Bulgaria flag | flag: Bulgaria -๐Ÿ‡ง๐Ÿ‡ญ country-flag Bahrain flag | flag: Bahrain -๐Ÿ‡ง๐Ÿ‡ฎ country-flag Burundi flag | flag: Burundi -๐Ÿ‡ง๐Ÿ‡ฏ country-flag Benin flag | flag: Benin -๐Ÿ‡ง๐Ÿ‡ฑ country-flag St. Barthรฉlemy flag | flag: St. Barthรฉlemy | flag: St Barthรฉlemy | flag: Saint-Barthรฉlemy -๐Ÿ‡ง๐Ÿ‡ฒ country-flag Bermuda flag | flag: Bermuda -๐Ÿ‡ง๐Ÿ‡ณ country-flag Brunei flag | flag: Brunei -๐Ÿ‡ง๐Ÿ‡ด country-flag Bolivia flag | flag: Bolivia -๐Ÿ‡ง๐Ÿ‡ถ country-flag Caribbean Netherlands flag | flag: Caribbean Netherlands -๐Ÿ‡ง๐Ÿ‡ท country-flag Brazil flag | flag: Brazil -๐Ÿ‡ง๐Ÿ‡ธ country-flag Bahamas flag | flag: Bahamas -๐Ÿ‡ง๐Ÿ‡น country-flag Bhutan flag | flag: Bhutan -๐Ÿ‡ง๐Ÿ‡ป country-flag Bouvet Island flag | flag: Bouvet Island -๐Ÿ‡ง๐Ÿ‡ผ country-flag Botswana flag | flag: Botswana -๐Ÿ‡ง๐Ÿ‡พ country-flag Belarus flag | flag: Belarus -๐Ÿ‡ง๐Ÿ‡ฟ country-flag Belize flag | flag: Belize -๐Ÿ‡จ๐Ÿ‡ฆ country-flag Canada flag | flag: Canada -๐Ÿ‡จ๐Ÿ‡จ country-flag Cocos (Keeling) Islands flag | flag: Cocos (Keeling) Islands -๐Ÿ‡จ๐Ÿ‡ฉ country-flag Congo - Kinshasa flag | flag: Congo - Kinshasa -๐Ÿ‡จ๐Ÿ‡ซ country-flag Central African Republic flag | flag: Central African Republic -๐Ÿ‡จ๐Ÿ‡ฌ country-flag Congo - Brazzaville flag | flag: Congo - Brazzaville -๐Ÿ‡จ๐Ÿ‡ญ country-flag Switzerland flag | flag: Switzerland -๐Ÿ‡จ๐Ÿ‡ฎ country-flag Cรดte dโ€™Ivoire flag | flag: Cรดte dโ€™Ivoire -๐Ÿ‡จ๐Ÿ‡ฐ country-flag Cook Islands flag | flag: Cook Islands -๐Ÿ‡จ๐Ÿ‡ฑ country-flag Chile flag | flag: Chile -๐Ÿ‡จ๐Ÿ‡ฒ country-flag Cameroon flag | flag: Cameroon -๐Ÿ‡จ๐Ÿ‡ณ country-flag China flag | flag: China -๐Ÿ‡จ๐Ÿ‡ด country-flag Colombia flag | flag: Colombia -๐Ÿ‡จ๐Ÿ‡ต country-flag Clipperton Island flag | flag: Clipperton Island -๐Ÿ‡จ๐Ÿ‡ท country-flag Costa Rica flag | flag: Costa Rica -๐Ÿ‡จ๐Ÿ‡บ country-flag Cuba flag | flag: Cuba -๐Ÿ‡จ๐Ÿ‡ป country-flag Cape Verde flag | flag: Cape Verde -๐Ÿ‡จ๐Ÿ‡ผ country-flag Curaรงao flag | flag: Curaรงao -๐Ÿ‡จ๐Ÿ‡ฝ country-flag Christmas Island flag | flag: Christmas Island -๐Ÿ‡จ๐Ÿ‡พ country-flag Cyprus flag | flag: Cyprus -๐Ÿ‡จ๐Ÿ‡ฟ country-flag Czechia flag | flag: Czechia -๐Ÿ‡ฉ๐Ÿ‡ช country-flag Germany flag | flag: Germany -๐Ÿ‡ฉ๐Ÿ‡ฌ country-flag Diego Garcia flag | flag: Diego Garcia -๐Ÿ‡ฉ๐Ÿ‡ฏ country-flag Djibouti flag | flag: Djibouti -๐Ÿ‡ฉ๐Ÿ‡ฐ country-flag Denmark flag | flag: Denmark -๐Ÿ‡ฉ๐Ÿ‡ฒ country-flag Dominica flag | flag: Dominica -๐Ÿ‡ฉ๐Ÿ‡ด country-flag Dominican Republic flag | flag: Dominican Republic -๐Ÿ‡ฉ๐Ÿ‡ฟ country-flag Algeria flag | flag: Algeria -๐Ÿ‡ช๐Ÿ‡ฆ country-flag Ceuta & Melilla flag | flag: Ceuta & Melilla | flag: Ceuta and Melilla -๐Ÿ‡ช๐Ÿ‡จ country-flag Ecuador flag | flag: Ecuador -๐Ÿ‡ช๐Ÿ‡ช country-flag Estonia flag | flag: Estonia -๐Ÿ‡ช๐Ÿ‡ฌ country-flag Egypt flag | flag: Egypt -๐Ÿ‡ช๐Ÿ‡ญ country-flag Western Sahara flag | flag: Western Sahara -๐Ÿ‡ช๐Ÿ‡ท country-flag Eritrea flag | flag: Eritrea -๐Ÿ‡ช๐Ÿ‡ธ country-flag Spain flag | flag: Spain -๐Ÿ‡ช๐Ÿ‡น country-flag Ethiopia flag | flag: Ethiopia -๐Ÿ‡ช๐Ÿ‡บ country-flag European Union flag | flag: European Union -๐Ÿ‡ซ๐Ÿ‡ฎ country-flag Finland flag | flag: Finland -๐Ÿ‡ซ๐Ÿ‡ฏ country-flag Fiji flag | flag: Fiji -๐Ÿ‡ซ๐Ÿ‡ฐ country-flag Falkland Islands flag | flag: Falkland Islands -๐Ÿ‡ซ๐Ÿ‡ฒ country-flag Micronesia flag | flag: Micronesia -๐Ÿ‡ซ๐Ÿ‡ด country-flag Faroe Islands flag | flag: Faroe Islands -๐Ÿ‡ซ๐Ÿ‡ท country-flag France flag | flag: France -๐Ÿ‡ฌ๐Ÿ‡ฆ country-flag Gabon flag | flag: Gabon -๐Ÿ‡ฌ๐Ÿ‡ง country-flag United Kingdom flag | flag: United Kingdom -๐Ÿ‡ฌ๐Ÿ‡ฉ country-flag Grenada flag | flag: Grenada -๐Ÿ‡ฌ๐Ÿ‡ช country-flag Georgia flag | flag: Georgia -๐Ÿ‡ฌ๐Ÿ‡ซ country-flag French Guiana flag | flag: French Guiana -๐Ÿ‡ฌ๐Ÿ‡ฌ country-flag Guernsey flag | flag: Guernsey -๐Ÿ‡ฌ๐Ÿ‡ญ country-flag Ghana flag | flag: Ghana -๐Ÿ‡ฌ๐Ÿ‡ฎ country-flag Gibraltar flag | flag: Gibraltar -๐Ÿ‡ฌ๐Ÿ‡ฑ country-flag Greenland flag | flag: Greenland -๐Ÿ‡ฌ๐Ÿ‡ฒ country-flag Gambia flag | flag: Gambia -๐Ÿ‡ฌ๐Ÿ‡ณ country-flag Guinea flag | flag: Guinea -๐Ÿ‡ฌ๐Ÿ‡ต country-flag Guadeloupe flag | flag: Guadeloupe -๐Ÿ‡ฌ๐Ÿ‡ถ country-flag Equatorial Guinea flag | flag: Equatorial Guinea -๐Ÿ‡ฌ๐Ÿ‡ท country-flag Greece flag | flag: Greece -๐Ÿ‡ฌ๐Ÿ‡ธ country-flag South Georgia & South Sandwich Islands flag | flag: South Georgia & South Sandwich Islands | flag: South Georgia and South Sandwich Islands -๐Ÿ‡ฌ๐Ÿ‡น country-flag Guatemala flag | flag: Guatemala -๐Ÿ‡ฌ๐Ÿ‡บ country-flag Guam flag | flag: Guam -๐Ÿ‡ฌ๐Ÿ‡ผ country-flag Guinea-Bissau flag | flag: Guinea-Bissau -๐Ÿ‡ฌ๐Ÿ‡พ country-flag Guyana flag | flag: Guyana -๐Ÿ‡ญ๐Ÿ‡ฐ country-flag Hong Kong SAR China flag | flag: Hong Kong SAR China -๐Ÿ‡ญ๐Ÿ‡ฒ country-flag Heard & McDonald Islands flag | flag: Heard & McDonald Islands | flag: Heard and McDonald Islands -๐Ÿ‡ญ๐Ÿ‡ณ country-flag Honduras flag | flag: Honduras -๐Ÿ‡ญ๐Ÿ‡ท country-flag Croatia flag | flag: Croatia -๐Ÿ‡ญ๐Ÿ‡น country-flag Haiti flag | flag: Haiti -๐Ÿ‡ญ๐Ÿ‡บ country-flag Hungary flag | flag: Hungary -๐Ÿ‡ฎ๐Ÿ‡จ country-flag Canary Islands flag | flag: Canary Islands -๐Ÿ‡ฎ๐Ÿ‡ฉ country-flag Indonesia flag | flag: Indonesia -๐Ÿ‡ฎ๐Ÿ‡ช country-flag Ireland flag | flag: Ireland -๐Ÿ‡ฎ๐Ÿ‡ฑ country-flag Israel flag | flag: Israel -๐Ÿ‡ฎ๐Ÿ‡ฒ country-flag Isle of Man flag | flag: Isle of Man -๐Ÿ‡ฎ๐Ÿ‡ณ country-flag India flag | flag: India -๐Ÿ‡ฎ๐Ÿ‡ด country-flag British Indian Ocean Territory flag | flag: British Indian Ocean Territory -๐Ÿ‡ฎ๐Ÿ‡ถ country-flag Iraq flag | flag: Iraq -๐Ÿ‡ฎ๐Ÿ‡ท country-flag Iran flag | flag: Iran -๐Ÿ‡ฎ๐Ÿ‡ธ country-flag Iceland flag | flag: Iceland -๐Ÿ‡ฎ๐Ÿ‡น country-flag Italy flag | flag: Italy -๐Ÿ‡ฏ๐Ÿ‡ช country-flag Jersey flag | flag: Jersey -๐Ÿ‡ฏ๐Ÿ‡ฒ country-flag Jamaica flag | flag: Jamaica -๐Ÿ‡ฏ๐Ÿ‡ด country-flag Jordan flag | flag: Jordan -๐Ÿ‡ฏ๐Ÿ‡ต country-flag Japan flag | flag: Japan -๐Ÿ‡ฐ๐Ÿ‡ช country-flag Kenya flag | flag: Kenya -๐Ÿ‡ฐ๐Ÿ‡ฌ country-flag Kyrgyzstan flag | flag: Kyrgyzstan -๐Ÿ‡ฐ๐Ÿ‡ญ country-flag Cambodia flag | flag: Cambodia -๐Ÿ‡ฐ๐Ÿ‡ฎ country-flag Kiribati flag | flag: Kiribati -๐Ÿ‡ฐ๐Ÿ‡ฒ country-flag Comoros flag | flag: Comoros -๐Ÿ‡ฐ๐Ÿ‡ณ country-flag St. Kitts & Nevis flag | flag: St. Kitts & Nevis | flag: St Kitts & Nevis | flag: Saint Kitts and Nevis -๐Ÿ‡ฐ๐Ÿ‡ต country-flag North Korea flag | flag: North Korea -๐Ÿ‡ฐ๐Ÿ‡ท country-flag South Korea flag | flag: South Korea -๐Ÿ‡ฐ๐Ÿ‡ผ country-flag Kuwait flag | flag: Kuwait -๐Ÿ‡ฐ๐Ÿ‡พ country-flag Cayman Islands flag | flag: Cayman Islands -๐Ÿ‡ฐ๐Ÿ‡ฟ country-flag Kazakhstan flag | flag: Kazakhstan -๐Ÿ‡ฑ๐Ÿ‡ฆ country-flag Laos flag | flag: Laos -๐Ÿ‡ฑ๐Ÿ‡ง country-flag Lebanon flag | flag: Lebanon -๐Ÿ‡ฑ๐Ÿ‡จ country-flag St. Lucia flag | flag: St. Lucia | flag: St Lucia | flag: Saint Lucia -๐Ÿ‡ฑ๐Ÿ‡ฎ country-flag Liechtenstein flag | flag: Liechtenstein -๐Ÿ‡ฑ๐Ÿ‡ฐ country-flag Sri Lanka flag | flag: Sri Lanka -๐Ÿ‡ฑ๐Ÿ‡ท country-flag Liberia flag | flag: Liberia -๐Ÿ‡ฑ๐Ÿ‡ธ country-flag Lesotho flag | flag: Lesotho -๐Ÿ‡ฑ๐Ÿ‡น country-flag Lithuania flag | flag: Lithuania -๐Ÿ‡ฑ๐Ÿ‡บ country-flag Luxembourg flag | flag: Luxembourg -๐Ÿ‡ฑ๐Ÿ‡ป country-flag Latvia flag | flag: Latvia -๐Ÿ‡ฑ๐Ÿ‡พ country-flag Libya flag | flag: Libya -๐Ÿ‡ฒ๐Ÿ‡ฆ country-flag Morocco flag | flag: Morocco -๐Ÿ‡ฒ๐Ÿ‡จ country-flag Monaco flag | flag: Monaco -๐Ÿ‡ฒ๐Ÿ‡ฉ country-flag Moldova flag | flag: Moldova -๐Ÿ‡ฒ๐Ÿ‡ช country-flag Montenegro flag | flag: Montenegro -๐Ÿ‡ฒ๐Ÿ‡ซ country-flag St. Martin flag | flag: St. Martin | flag: St Martin | flag: Saint Martin -๐Ÿ‡ฒ๐Ÿ‡ฌ country-flag Madagascar flag | flag: Madagascar -๐Ÿ‡ฒ๐Ÿ‡ญ country-flag Marshall Islands flag | flag: Marshall Islands -๐Ÿ‡ฒ๐Ÿ‡ฐ country-flag North Macedonia flag | flag: North Macedonia -๐Ÿ‡ฒ๐Ÿ‡ฑ country-flag Mali flag | flag: Mali -๐Ÿ‡ฒ๐Ÿ‡ฒ country-flag Myanmar (Burma) flag | flag: Myanmar (Burma) -๐Ÿ‡ฒ๐Ÿ‡ณ country-flag Mongolia flag | flag: Mongolia -๐Ÿ‡ฒ๐Ÿ‡ด country-flag Macao SAR China flag | flag: Macao SAR China -๐Ÿ‡ฒ๐Ÿ‡ต country-flag Northern Mariana Islands flag | flag: Northern Mariana Islands -๐Ÿ‡ฒ๐Ÿ‡ถ country-flag Martinique flag | flag: Martinique -๐Ÿ‡ฒ๐Ÿ‡ท country-flag Mauritania flag | flag: Mauritania -๐Ÿ‡ฒ๐Ÿ‡ธ country-flag Montserrat flag | flag: Montserrat -๐Ÿ‡ฒ๐Ÿ‡น country-flag Malta flag | flag: Malta -๐Ÿ‡ฒ๐Ÿ‡บ country-flag Mauritius flag | flag: Mauritius -๐Ÿ‡ฒ๐Ÿ‡ป country-flag Maldives flag | flag: Maldives -๐Ÿ‡ฒ๐Ÿ‡ผ country-flag Malawi flag | flag: Malawi -๐Ÿ‡ฒ๐Ÿ‡ฝ country-flag Mexico flag | flag: Mexico -๐Ÿ‡ฒ๐Ÿ‡พ country-flag Malaysia flag | flag: Malaysia -๐Ÿ‡ฒ๐Ÿ‡ฟ country-flag Mozambique flag | flag: Mozambique -๐Ÿ‡ณ๐Ÿ‡ฆ country-flag Namibia flag | flag: Namibia -๐Ÿ‡ณ๐Ÿ‡จ country-flag New Caledonia flag | flag: New Caledonia -๐Ÿ‡ณ๐Ÿ‡ช country-flag Niger flag | flag: Niger -๐Ÿ‡ณ๐Ÿ‡ซ country-flag Norfolk Island flag | flag: Norfolk Island -๐Ÿ‡ณ๐Ÿ‡ฌ country-flag Nigeria flag | flag: Nigeria -๐Ÿ‡ณ๐Ÿ‡ฎ country-flag Nicaragua flag | flag: Nicaragua -๐Ÿ‡ณ๐Ÿ‡ฑ country-flag Netherlands flag | flag: Netherlands -๐Ÿ‡ณ๐Ÿ‡ด country-flag Norway flag | flag: Norway -๐Ÿ‡ณ๐Ÿ‡ต country-flag Nepal flag | flag: Nepal -๐Ÿ‡ณ๐Ÿ‡ท country-flag Nauru flag | flag: Nauru -๐Ÿ‡ณ๐Ÿ‡บ country-flag Niue flag | flag: Niue -๐Ÿ‡ณ๐Ÿ‡ฟ country-flag New Zealand flag | flag: New Zealand -๐Ÿ‡ด๐Ÿ‡ฒ country-flag Oman flag | flag: Oman -๐Ÿ‡ต๐Ÿ‡ฆ country-flag Panama flag | flag: Panama -๐Ÿ‡ต๐Ÿ‡ช country-flag Peru flag | flag: Peru -๐Ÿ‡ต๐Ÿ‡ซ country-flag French Polynesia flag | flag: French Polynesia -๐Ÿ‡ต๐Ÿ‡ฌ country-flag Papua New Guinea flag | flag: Papua New Guinea -๐Ÿ‡ต๐Ÿ‡ญ country-flag Philippines flag | flag: Philippines -๐Ÿ‡ต๐Ÿ‡ฐ country-flag Pakistan flag | flag: Pakistan -๐Ÿ‡ต๐Ÿ‡ฑ country-flag Poland flag | flag: Poland -๐Ÿ‡ต๐Ÿ‡ฒ country-flag St. Pierre & Miquelon flag | flag: St. Pierre & Miquelon | flag: St Pierre & Miquelon | flag: Saint-Pierre-et-Miquelon -๐Ÿ‡ต๐Ÿ‡ณ country-flag Pitcairn Islands flag | flag: Pitcairn Islands -๐Ÿ‡ต๐Ÿ‡ท country-flag Puerto Rico flag | flag: Puerto Rico -๐Ÿ‡ต๐Ÿ‡ธ country-flag Palestinian Territories flag | flag: Palestinian Territories | flag: Palestinian territories -๐Ÿ‡ต๐Ÿ‡น country-flag Portugal flag | flag: Portugal -๐Ÿ‡ต๐Ÿ‡ผ country-flag Palau flag | flag: Palau -๐Ÿ‡ต๐Ÿ‡พ country-flag Paraguay flag | flag: Paraguay -๐Ÿ‡ถ๐Ÿ‡ฆ country-flag Qatar flag | flag: Qatar -๐Ÿ‡ท๐Ÿ‡ช country-flag Rรฉunion flag | flag: Rรฉunion -๐Ÿ‡ท๐Ÿ‡ด country-flag Romania flag | flag: Romania -๐Ÿ‡ท๐Ÿ‡ธ country-flag Serbia flag | flag: Serbia -๐Ÿ‡ท๐Ÿ‡บ country-flag Russia flag | flag: Russia -๐Ÿ‡ท๐Ÿ‡ผ country-flag Rwanda flag | flag: Rwanda -๐Ÿ‡ธ๐Ÿ‡ฆ country-flag Saudi Arabia flag | flag: Saudi Arabia -๐Ÿ‡ธ๐Ÿ‡ง country-flag Solomon Islands flag | flag: Solomon Islands -๐Ÿ‡ธ๐Ÿ‡จ country-flag Seychelles flag | flag: Seychelles -๐Ÿ‡ธ๐Ÿ‡ฉ country-flag Sudan flag | flag: Sudan -๐Ÿ‡ธ๐Ÿ‡ช country-flag Sweden flag | flag: Sweden -๐Ÿ‡ธ๐Ÿ‡ฌ country-flag Singapore flag | flag: Singapore -๐Ÿ‡ธ๐Ÿ‡ญ country-flag St. Helena flag | flag: St. Helena | flag: St Helena | flag: Saint Helena -๐Ÿ‡ธ๐Ÿ‡ฎ country-flag Slovenia flag | flag: Slovenia -๐Ÿ‡ธ๐Ÿ‡ฏ country-flag Svalbard & Jan Mayen flag | flag: Svalbard & Jan Mayen | flag: Svalbard and Jan Mayen -๐Ÿ‡ธ๐Ÿ‡ฐ country-flag Slovakia flag | flag: Slovakia -๐Ÿ‡ธ๐Ÿ‡ฑ country-flag Sierra Leone flag | flag: Sierra Leone -๐Ÿ‡ธ๐Ÿ‡ฒ country-flag San Marino flag | flag: San Marino -๐Ÿ‡ธ๐Ÿ‡ณ country-flag Senegal flag | flag: Senegal -๐Ÿ‡ธ๐Ÿ‡ด country-flag Somalia flag | flag: Somalia -๐Ÿ‡ธ๐Ÿ‡ท country-flag Suriname flag | flag: Suriname -๐Ÿ‡ธ๐Ÿ‡ธ country-flag South Sudan flag | flag: South Sudan -๐Ÿ‡ธ๐Ÿ‡น country-flag Sรฃo Tomรฉ & Prรญncipe flag | flag: Sรฃo Tomรฉ & Prรญncipe | flag: Sรฃo Tomรฉ and Prรญncipe -๐Ÿ‡ธ๐Ÿ‡ป country-flag El Salvador flag | flag: El Salvador -๐Ÿ‡ธ๐Ÿ‡ฝ country-flag Sint Maarten flag | flag: Sint Maarten -๐Ÿ‡ธ๐Ÿ‡พ country-flag Syria flag | flag: Syria -๐Ÿ‡ธ๐Ÿ‡ฟ country-flag Eswatini flag | flag: Eswatini -๐Ÿ‡น๐Ÿ‡ฆ country-flag Tristan da Cunha flag | flag: Tristan da Cunha -๐Ÿ‡น๐Ÿ‡จ country-flag Turks & Caicos Islands flag | flag: Turks & Caicos Islands | flag: Turks and Caicos Islands -๐Ÿ‡น๐Ÿ‡ฉ country-flag Chad flag | flag: Chad -๐Ÿ‡น๐Ÿ‡ซ country-flag French Southern Territories flag | flag: French Southern Territories -๐Ÿ‡น๐Ÿ‡ฌ country-flag Togo flag | flag: Togo -๐Ÿ‡น๐Ÿ‡ญ country-flag Thailand flag | flag: Thailand -๐Ÿ‡น๐Ÿ‡ฏ country-flag Tajikistan flag | flag: Tajikistan -๐Ÿ‡น๐Ÿ‡ฐ country-flag Tokelau flag | flag: Tokelau -๐Ÿ‡น๐Ÿ‡ฑ country-flag Timor-Leste flag | flag: Timor-Leste -๐Ÿ‡น๐Ÿ‡ฒ country-flag Turkmenistan flag | flag: Turkmenistan -๐Ÿ‡น๐Ÿ‡ณ country-flag Tunisia flag | flag: Tunisia -๐Ÿ‡น๐Ÿ‡ด country-flag Tonga flag | flag: Tonga -๐Ÿ‡น๐Ÿ‡ท country-flag Turkey flag | flag: Tรผrkiye -๐Ÿ‡น๐Ÿ‡น country-flag Trinidad & Tobago flag | flag: Trinidad & Tobago | flag: Trinidad and Tobago -๐Ÿ‡น๐Ÿ‡ป country-flag Tuvalu flag | flag: Tuvalu -๐Ÿ‡น๐Ÿ‡ผ country-flag Taiwan flag | flag: Taiwan -๐Ÿ‡น๐Ÿ‡ฟ country-flag Tanzania flag | flag: TanzaniaE -๐Ÿ‡บ๐Ÿ‡ฆ country-flag Ukraine flag | flag: Ukraine -๐Ÿ‡บ๐Ÿ‡ฌ country-flag Uganda flag | flag: Uganda -๐Ÿ‡บ๐Ÿ‡ฒ country-flag U.S. Outlying Islands flag | flag: U.S. Outlying Islands | flag: US Outlying Islands -๐Ÿ‡บ๐Ÿ‡ณ country-flag United Nations flag | flag: United Nations -๐Ÿ‡บ๐Ÿ‡ธ country-flag United States flag | flag: United States -๐Ÿ‡บ๐Ÿ‡พ country-flag Uruguay flag | flag: Uruguay -๐Ÿ‡บ๐Ÿ‡ฟ country-flag Uzbekistan flag | flag: Uzbekistan -๐Ÿ‡ป๐Ÿ‡ฆ country-flag Vatican City flag | flag: Vatican City -๐Ÿ‡ป๐Ÿ‡จ country-flag St. Vincent & Grenadines flag | flag: St. Vincent & Grenadines | flag: St Vincent & the Grenadines | flag: Saint Vincent and the Grenadines -๐Ÿ‡ป๐Ÿ‡ช country-flag Venezuela flag | flag: Venezuela -๐Ÿ‡ป๐Ÿ‡ฌ country-flag British Virgin Islands flag | flag: British Virgin Islands -๐Ÿ‡ป๐Ÿ‡ฎ country-flag U.S. Virgin Islands flag | flag: U.S. Virgin Islands | flag: US Virgin Islands -๐Ÿ‡ป๐Ÿ‡ณ country-flag Vietnam flag | flag: Vietnam -๐Ÿ‡ป๐Ÿ‡บ country-flag Vanuatu flag | flag: Vanuatu -๐Ÿ‡ผ๐Ÿ‡ซ country-flag Wallis & Futuna flag | flag: Wallis & Futuna | flag: Wallis and Futuna -๐Ÿ‡ผ๐Ÿ‡ธ country-flag Samoa flag | flag: Samoa -๐Ÿ‡ฝ๐Ÿ‡ฐ country-flag Kosovo flag | flag: Kosovo -๐Ÿ‡พ๐Ÿ‡ช country-flag Yemen flag | flag: Yemen -๐Ÿ‡พ๐Ÿ‡น country-flag Mayotte flag | flag: Mayotte -๐Ÿ‡ฟ๐Ÿ‡ฆ country-flag South Africa flag | flag: South Africa -๐Ÿ‡ฟ๐Ÿ‡ฒ country-flag Zambia flag | flag: Zambia -๐Ÿ‡ฟ๐Ÿ‡ผ country-flag Zimbabwe flag | flag: Zimbabwe -๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ subdivision-flag England flag | flag: England -๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ subdivision-flag Scotland flag | flag: Scotland -๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ subdivision-flag Wales flag | flag: Wales - +๐Ÿ˜€ grinning face +๐Ÿ˜ƒ grinning face with big eyes +๐Ÿ˜„ grinning face with smiling eyes +๐Ÿ˜ beaming face with smiling eyes +๐Ÿ˜† grinning squinting face +๐Ÿ˜… grinning face with sweat +๐Ÿคฃ rolling on the floor laughing +๐Ÿ˜‚ face with tears of joy +๐Ÿ™‚ slightly smiling face +๐Ÿ™ƒ upside-down face +๐Ÿซ  melting face +๐Ÿ˜‰ winking face +๐Ÿ˜Š smiling face with smiling eyes +๐Ÿ˜‡ smiling face with halo +๐Ÿฅฐ smiling face with hearts +๐Ÿ˜ smiling face with heart-eyes +๐Ÿคฉ star-struck +๐Ÿ˜˜ face blowing a kiss +๐Ÿ˜— kissing face +โ˜บ๏ธ smiling face +โ˜บ smiling face +๐Ÿ˜š kissing face with closed eyes +๐Ÿ˜™ kissing face with smiling eyes +๐Ÿฅฒ smiling face with tear +๐Ÿ˜‹ face savoring food +๐Ÿ˜› face with tongue +๐Ÿ˜œ winking face with tongue +๐Ÿคช zany face +๐Ÿ˜ squinting face with tongue +๐Ÿค‘ money-mouth face +๐Ÿค— smiling face with open hands +๐Ÿคญ face with hand over mouth +๐Ÿซข face with open eyes and hand over mouth +๐Ÿซฃ face with peeking eye +๐Ÿคซ shushing face +๐Ÿค” thinking face +๐Ÿซก saluting face +๐Ÿค zipper-mouth face +๐Ÿคจ face with raised eyebrow +๐Ÿ˜ neutral face +๐Ÿ˜‘ expressionless face +๐Ÿ˜ถ face without mouth +๐Ÿซฅ dotted line face +๐Ÿ˜ถโ€๐ŸŒซ๏ธ face in clouds +๐Ÿ˜ถโ€๐ŸŒซ face in clouds +๐Ÿ˜ smirking face +๐Ÿ˜’ unamused face +๐Ÿ™„ face with rolling eyes +๐Ÿ˜ฌ grimacing face +๐Ÿ˜ฎโ€๐Ÿ’จ face exhaling +๐Ÿคฅ lying face +๐Ÿซจ shaking face +๐Ÿ™‚โ€โ†”๏ธ head shaking horizontally +๐Ÿ™‚โ€โ†” head shaking horizontally +๐Ÿ™‚โ€โ†•๏ธ head shaking vertically +๐Ÿ™‚โ€โ†• head shaking vertically +๐Ÿ˜Œ relieved face +๐Ÿ˜” pensive face +๐Ÿ˜ช sleepy face +๐Ÿคค drooling face +๐Ÿ˜ด sleeping face +๐Ÿซฉ face with bags under eyes +๐Ÿ˜ท face with medical mask +๐Ÿค’ face with thermometer +๐Ÿค• face with head-bandage +๐Ÿคข nauseated face +๐Ÿคฎ face vomiting +๐Ÿคง sneezing face +๐Ÿฅต hot face +๐Ÿฅถ cold face +๐Ÿฅด woozy face +๐Ÿ˜ต face with crossed-out eyes +๐Ÿ˜ตโ€๐Ÿ’ซ face with spiral eyes +๐Ÿคฏ exploding head +๐Ÿค  cowboy hat face +๐Ÿฅณ partying face +๐Ÿฅธ disguised face +๐Ÿ˜Ž smiling face with sunglasses +๐Ÿค“ nerd face +๐Ÿง face with monocle +๐Ÿ˜• confused face +๐Ÿซค face with diagonal mouth +๐Ÿ˜Ÿ worried face +๐Ÿ™ slightly frowning face +โ˜น๏ธ frowning face +โ˜น frowning face +๐Ÿ˜ฎ face with open mouth +๐Ÿ˜ฏ hushed face +๐Ÿ˜ฒ astonished face +๐Ÿ˜ณ flushed face +๐Ÿฅบ pleading face +๐Ÿฅน face holding back tears +๐Ÿ˜ฆ frowning face with open mouth +๐Ÿ˜ง anguished face +๐Ÿ˜จ fearful face +๐Ÿ˜ฐ anxious face with sweat +๐Ÿ˜ฅ sad but relieved face +๐Ÿ˜ข crying face +๐Ÿ˜ญ loudly crying face +๐Ÿ˜ฑ face screaming in fear +๐Ÿ˜– confounded face +๐Ÿ˜ฃ persevering face +๐Ÿ˜ž disappointed face +๐Ÿ˜“ downcast face with sweat +๐Ÿ˜ฉ weary face +๐Ÿ˜ซ tired face +๐Ÿฅฑ yawning face +๐Ÿ˜ค face with steam from nose +๐Ÿ˜ก enraged face +๐Ÿ˜  angry face +๐Ÿคฌ face with symbols on mouth +๐Ÿ˜ˆ smiling face with horns +๐Ÿ‘ฟ angry face with horns +๐Ÿ’€ skull +โ˜ ๏ธ skull and crossbones +โ˜  skull and crossbones +๐Ÿ’ฉ pile of poo +๐Ÿคก clown face +๐Ÿ‘น ogre +๐Ÿ‘บ goblin +๐Ÿ‘ป ghost +๐Ÿ‘ฝ alien +๐Ÿ‘พ alien monster +๐Ÿค– robot +๐Ÿ˜บ grinning cat +๐Ÿ˜ธ grinning cat with smiling eyes +๐Ÿ˜น cat with tears of joy +๐Ÿ˜ป smiling cat with heart-eyes +๐Ÿ˜ผ cat with wry smile +๐Ÿ˜ฝ kissing cat +๐Ÿ™€ weary cat +๐Ÿ˜ฟ crying cat +๐Ÿ˜พ pouting cat +๐Ÿ™ˆ see-no-evil monkey +๐Ÿ™‰ hear-no-evil monkey +๐Ÿ™Š speak-no-evil monkey +๐Ÿ’Œ love letter +๐Ÿ’˜ heart with arrow +๐Ÿ’ heart with ribbon +๐Ÿ’– sparkling heart +๐Ÿ’— growing heart +๐Ÿ’“ beating heart +๐Ÿ’ž revolving hearts +๐Ÿ’• two hearts +๐Ÿ’Ÿ heart decoration +โฃ๏ธ heart exclamation +โฃ heart exclamation +๐Ÿ’” broken heart +โค๏ธโ€๐Ÿ”ฅ heart on fire +โคโ€๐Ÿ”ฅ heart on fire +โค๏ธโ€๐Ÿฉน mending heart +โคโ€๐Ÿฉน mending heart +โค๏ธ red heart +โค red heart +๐Ÿฉท pink heart +๐Ÿงก orange heart +๐Ÿ’› yellow heart +๐Ÿ’š green heart +๐Ÿ’™ blue heart +๐Ÿฉต light blue heart +๐Ÿ’œ purple heart +๐ŸคŽ brown heart +๐Ÿ–ค black heart +๐Ÿฉถ grey heart +๐Ÿค white heart +๐Ÿ’‹ kiss mark +๐Ÿ’ฏ hundred points +๐Ÿ’ข anger symbol +๐Ÿ’ฅ collision +๐Ÿ’ซ dizzy +๐Ÿ’ฆ sweat droplets +๐Ÿ’จ dashing away +๐Ÿ•ณ๏ธ hole +๐Ÿ•ณ hole +๐Ÿ’ฌ speech balloon +๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ eye in speech bubble +๐Ÿ‘โ€๐Ÿ—จ๏ธ eye in speech bubble +๐Ÿ‘๏ธโ€๐Ÿ—จ eye in speech bubble +๐Ÿ‘โ€๐Ÿ—จ eye in speech bubble +๐Ÿ—จ๏ธ left speech bubble +๐Ÿ—จ left speech bubble +๐Ÿ—ฏ๏ธ right anger bubble +๐Ÿ—ฏ right anger bubble +๐Ÿ’ญ thought balloon +๐Ÿ’ค ZZZ +๐Ÿ‘‹ waving hand +๐Ÿ‘‹๐Ÿป waving hand: light skin tone +๐Ÿ‘‹๐Ÿผ waving hand: medium-light skin tone +๐Ÿ‘‹๐Ÿฝ waving hand: medium skin tone +๐Ÿ‘‹๐Ÿพ waving hand: medium-dark skin tone +๐Ÿ‘‹๐Ÿฟ waving hand: dark skin tone +๐Ÿคš raised back of hand +๐Ÿคš๐Ÿป raised back of hand: light skin tone +๐Ÿคš๐Ÿผ raised back of hand: medium-light skin tone +๐Ÿคš๐Ÿฝ raised back of hand: medium skin tone +๐Ÿคš๐Ÿพ raised back of hand: medium-dark skin tone +๐Ÿคš๐Ÿฟ raised back of hand: dark skin tone +๐Ÿ–๏ธ hand with fingers splayed +๐Ÿ– hand with fingers splayed +๐Ÿ–๐Ÿป hand with fingers splayed: light skin tone +๐Ÿ–๐Ÿผ hand with fingers splayed: medium-light skin tone +๐Ÿ–๐Ÿฝ hand with fingers splayed: medium skin tone +๐Ÿ–๐Ÿพ hand with fingers splayed: medium-dark skin tone +๐Ÿ–๐Ÿฟ hand with fingers splayed: dark skin tone +โœ‹ raised hand +โœ‹๐Ÿป raised hand: light skin tone +โœ‹๐Ÿผ raised hand: medium-light skin tone +โœ‹๐Ÿฝ raised hand: medium skin tone +โœ‹๐Ÿพ raised hand: medium-dark skin tone +โœ‹๐Ÿฟ raised hand: dark skin tone +๐Ÿ–– vulcan salute +๐Ÿ––๐Ÿป vulcan salute: light skin tone +๐Ÿ––๐Ÿผ vulcan salute: medium-light skin tone +๐Ÿ––๐Ÿฝ vulcan salute: medium skin tone +๐Ÿ––๐Ÿพ vulcan salute: medium-dark skin tone +๐Ÿ––๐Ÿฟ vulcan salute: dark skin tone +๐Ÿซฑ rightwards hand +๐Ÿซฑ๐Ÿป rightwards hand: light skin tone +๐Ÿซฑ๐Ÿผ rightwards hand: medium-light skin tone +๐Ÿซฑ๐Ÿฝ rightwards hand: medium skin tone +๐Ÿซฑ๐Ÿพ rightwards hand: medium-dark skin tone +๐Ÿซฑ๐Ÿฟ rightwards hand: dark skin tone +๐Ÿซฒ leftwards hand +๐Ÿซฒ๐Ÿป leftwards hand: light skin tone +๐Ÿซฒ๐Ÿผ leftwards hand: medium-light skin tone +๐Ÿซฒ๐Ÿฝ leftwards hand: medium skin tone +๐Ÿซฒ๐Ÿพ leftwards hand: medium-dark skin tone +๐Ÿซฒ๐Ÿฟ leftwards hand: dark skin tone +๐Ÿซณ palm down hand +๐Ÿซณ๐Ÿป palm down hand: light skin tone +๐Ÿซณ๐Ÿผ palm down hand: medium-light skin tone +๐Ÿซณ๐Ÿฝ palm down hand: medium skin tone +๐Ÿซณ๐Ÿพ palm down hand: medium-dark skin tone +๐Ÿซณ๐Ÿฟ palm down hand: dark skin tone +๐Ÿซด palm up hand +๐Ÿซด๐Ÿป palm up hand: light skin tone +๐Ÿซด๐Ÿผ palm up hand: medium-light skin tone +๐Ÿซด๐Ÿฝ palm up hand: medium skin tone +๐Ÿซด๐Ÿพ palm up hand: medium-dark skin tone +๐Ÿซด๐Ÿฟ palm up hand: dark skin tone +๐Ÿซท leftwards pushing hand +๐Ÿซท๐Ÿป leftwards pushing hand: light skin tone +๐Ÿซท๐Ÿผ leftwards pushing hand: medium-light skin tone +๐Ÿซท๐Ÿฝ leftwards pushing hand: medium skin tone +๐Ÿซท๐Ÿพ leftwards pushing hand: medium-dark skin tone +๐Ÿซท๐Ÿฟ leftwards pushing hand: dark skin tone +๐Ÿซธ rightwards pushing hand +๐Ÿซธ๐Ÿป rightwards pushing hand: light skin tone +๐Ÿซธ๐Ÿผ rightwards pushing hand: medium-light skin tone +๐Ÿซธ๐Ÿฝ rightwards pushing hand: medium skin tone +๐Ÿซธ๐Ÿพ rightwards pushing hand: medium-dark skin tone +๐Ÿซธ๐Ÿฟ rightwards pushing hand: dark skin tone +๐Ÿ‘Œ OK hand +๐Ÿ‘Œ๐Ÿป OK hand: light skin tone +๐Ÿ‘Œ๐Ÿผ OK hand: medium-light skin tone +๐Ÿ‘Œ๐Ÿฝ OK hand: medium skin tone +๐Ÿ‘Œ๐Ÿพ OK hand: medium-dark skin tone +๐Ÿ‘Œ๐Ÿฟ OK hand: dark skin tone +๐ŸคŒ pinched fingers +๐ŸคŒ๐Ÿป pinched fingers: light skin tone +๐ŸคŒ๐Ÿผ pinched fingers: medium-light skin tone +๐ŸคŒ๐Ÿฝ pinched fingers: medium skin tone +๐ŸคŒ๐Ÿพ pinched fingers: medium-dark skin tone +๐ŸคŒ๐Ÿฟ pinched fingers: dark skin tone +๐Ÿค pinching hand +๐Ÿค๐Ÿป pinching hand: light skin tone +๐Ÿค๐Ÿผ pinching hand: medium-light skin tone +๐Ÿค๐Ÿฝ pinching hand: medium skin tone +๐Ÿค๐Ÿพ pinching hand: medium-dark skin tone +๐Ÿค๐Ÿฟ pinching hand: dark skin tone +โœŒ๏ธ victory hand +โœŒ victory hand +โœŒ๐Ÿป victory hand: light skin tone +โœŒ๐Ÿผ victory hand: medium-light skin tone +โœŒ๐Ÿฝ victory hand: medium skin tone +โœŒ๐Ÿพ victory hand: medium-dark skin tone +โœŒ๐Ÿฟ victory hand: dark skin tone +๐Ÿคž crossed fingers +๐Ÿคž๐Ÿป crossed fingers: light skin tone +๐Ÿคž๐Ÿผ crossed fingers: medium-light skin tone +๐Ÿคž๐Ÿฝ crossed fingers: medium skin tone +๐Ÿคž๐Ÿพ crossed fingers: medium-dark skin tone +๐Ÿคž๐Ÿฟ crossed fingers: dark skin tone +๐Ÿซฐ hand with index finger and thumb crossed +๐Ÿซฐ๐Ÿป hand with index finger and thumb crossed: light skin tone +๐Ÿซฐ๐Ÿผ hand with index finger and thumb crossed: medium-light skin tone +๐Ÿซฐ๐Ÿฝ hand with index finger and thumb crossed: medium skin tone +๐Ÿซฐ๐Ÿพ hand with index finger and thumb crossed: medium-dark skin tone +๐Ÿซฐ๐Ÿฟ hand with index finger and thumb crossed: dark skin tone +๐ŸคŸ love-you gesture +๐ŸคŸ๐Ÿป love-you gesture: light skin tone +๐ŸคŸ๐Ÿผ love-you gesture: medium-light skin tone +๐ŸคŸ๐Ÿฝ love-you gesture: medium skin tone +๐ŸคŸ๐Ÿพ love-you gesture: medium-dark skin tone +๐ŸคŸ๐Ÿฟ love-you gesture: dark skin tone +๐Ÿค˜ sign of the horns +๐Ÿค˜๐Ÿป sign of the horns: light skin tone +๐Ÿค˜๐Ÿผ sign of the horns: medium-light skin tone +๐Ÿค˜๐Ÿฝ sign of the horns: medium skin tone +๐Ÿค˜๐Ÿพ sign of the horns: medium-dark skin tone +๐Ÿค˜๐Ÿฟ sign of the horns: dark skin tone +๐Ÿค™ call me hand +๐Ÿค™๐Ÿป call me hand: light skin tone +๐Ÿค™๐Ÿผ call me hand: medium-light skin tone +๐Ÿค™๐Ÿฝ call me hand: medium skin tone +๐Ÿค™๐Ÿพ call me hand: medium-dark skin tone +๐Ÿค™๐Ÿฟ call me hand: dark skin tone +๐Ÿ‘ˆ backhand index pointing left +๐Ÿ‘ˆ๐Ÿป backhand index pointing left: light skin tone +๐Ÿ‘ˆ๐Ÿผ backhand index pointing left: medium-light skin tone +๐Ÿ‘ˆ๐Ÿฝ backhand index pointing left: medium skin tone +๐Ÿ‘ˆ๐Ÿพ backhand index pointing left: medium-dark skin tone +๐Ÿ‘ˆ๐Ÿฟ backhand index pointing left: dark skin tone +๐Ÿ‘‰ backhand index pointing right +๐Ÿ‘‰๐Ÿป backhand index pointing right: light skin tone +๐Ÿ‘‰๐Ÿผ backhand index pointing right: medium-light skin tone +๐Ÿ‘‰๐Ÿฝ backhand index pointing right: medium skin tone +๐Ÿ‘‰๐Ÿพ backhand index pointing right: medium-dark skin tone +๐Ÿ‘‰๐Ÿฟ backhand index pointing right: dark skin tone +๐Ÿ‘† backhand index pointing up +๐Ÿ‘†๐Ÿป backhand index pointing up: light skin tone +๐Ÿ‘†๐Ÿผ backhand index pointing up: medium-light skin tone +๐Ÿ‘†๐Ÿฝ backhand index pointing up: medium skin tone +๐Ÿ‘†๐Ÿพ backhand index pointing up: medium-dark skin tone +๐Ÿ‘†๐Ÿฟ backhand index pointing up: dark skin tone +๐Ÿ–• middle finger +๐Ÿ–•๐Ÿป middle finger: light skin tone +๐Ÿ–•๐Ÿผ middle finger: medium-light skin tone +๐Ÿ–•๐Ÿฝ middle finger: medium skin tone +๐Ÿ–•๐Ÿพ middle finger: medium-dark skin tone +๐Ÿ–•๐Ÿฟ middle finger: dark skin tone +๐Ÿ‘‡ backhand index pointing down +๐Ÿ‘‡๐Ÿป backhand index pointing down: light skin tone +๐Ÿ‘‡๐Ÿผ backhand index pointing down: medium-light skin tone +๐Ÿ‘‡๐Ÿฝ backhand index pointing down: medium skin tone +๐Ÿ‘‡๐Ÿพ backhand index pointing down: medium-dark skin tone +๐Ÿ‘‡๐Ÿฟ backhand index pointing down: dark skin tone +โ˜๏ธ index pointing up +โ˜ index pointing up +โ˜๐Ÿป index pointing up: light skin tone +โ˜๐Ÿผ index pointing up: medium-light skin tone +โ˜๐Ÿฝ index pointing up: medium skin tone +โ˜๐Ÿพ index pointing up: medium-dark skin tone +โ˜๐Ÿฟ index pointing up: dark skin tone +๐Ÿซต index pointing at the viewer +๐Ÿซต๐Ÿป index pointing at the viewer: light skin tone +๐Ÿซต๐Ÿผ index pointing at the viewer: medium-light skin tone +๐Ÿซต๐Ÿฝ index pointing at the viewer: medium skin tone +๐Ÿซต๐Ÿพ index pointing at the viewer: medium-dark skin tone +๐Ÿซต๐Ÿฟ index pointing at the viewer: dark skin tone +๐Ÿ‘ thumbs up +๐Ÿ‘๐Ÿป thumbs up: light skin tone +๐Ÿ‘๐Ÿผ thumbs up: medium-light skin tone +๐Ÿ‘๐Ÿฝ thumbs up: medium skin tone +๐Ÿ‘๐Ÿพ thumbs up: medium-dark skin tone +๐Ÿ‘๐Ÿฟ thumbs up: dark skin tone +๐Ÿ‘Ž thumbs down +๐Ÿ‘Ž๐Ÿป thumbs down: light skin tone +๐Ÿ‘Ž๐Ÿผ thumbs down: medium-light skin tone +๐Ÿ‘Ž๐Ÿฝ thumbs down: medium skin tone +๐Ÿ‘Ž๐Ÿพ thumbs down: medium-dark skin tone +๐Ÿ‘Ž๐Ÿฟ thumbs down: dark skin tone +โœŠ raised fist +โœŠ๐Ÿป raised fist: light skin tone +โœŠ๐Ÿผ raised fist: medium-light skin tone +โœŠ๐Ÿฝ raised fist: medium skin tone +โœŠ๐Ÿพ raised fist: medium-dark skin tone +โœŠ๐Ÿฟ raised fist: dark skin tone +๐Ÿ‘Š oncoming fist +๐Ÿ‘Š๐Ÿป oncoming fist: light skin tone +๐Ÿ‘Š๐Ÿผ oncoming fist: medium-light skin tone +๐Ÿ‘Š๐Ÿฝ oncoming fist: medium skin tone +๐Ÿ‘Š๐Ÿพ oncoming fist: medium-dark skin tone +๐Ÿ‘Š๐Ÿฟ oncoming fist: dark skin tone +๐Ÿค› left-facing fist +๐Ÿค›๐Ÿป left-facing fist: light skin tone +๐Ÿค›๐Ÿผ left-facing fist: medium-light skin tone +๐Ÿค›๐Ÿฝ left-facing fist: medium skin tone +๐Ÿค›๐Ÿพ left-facing fist: medium-dark skin tone +๐Ÿค›๐Ÿฟ left-facing fist: dark skin tone +๐Ÿคœ right-facing fist +๐Ÿคœ๐Ÿป right-facing fist: light skin tone +๐Ÿคœ๐Ÿผ right-facing fist: medium-light skin tone +๐Ÿคœ๐Ÿฝ right-facing fist: medium skin tone +๐Ÿคœ๐Ÿพ right-facing fist: medium-dark skin tone +๐Ÿคœ๐Ÿฟ right-facing fist: dark skin tone +๐Ÿ‘ clapping hands +๐Ÿ‘๐Ÿป clapping hands: light skin tone +๐Ÿ‘๐Ÿผ clapping hands: medium-light skin tone +๐Ÿ‘๐Ÿฝ clapping hands: medium skin tone +๐Ÿ‘๐Ÿพ clapping hands: medium-dark skin tone +๐Ÿ‘๐Ÿฟ clapping hands: dark skin tone +๐Ÿ™Œ raising hands +๐Ÿ™Œ๐Ÿป raising hands: light skin tone +๐Ÿ™Œ๐Ÿผ raising hands: medium-light skin tone +๐Ÿ™Œ๐Ÿฝ raising hands: medium skin tone +๐Ÿ™Œ๐Ÿพ raising hands: medium-dark skin tone +๐Ÿ™Œ๐Ÿฟ raising hands: dark skin tone +๐Ÿซถ heart hands +๐Ÿซถ๐Ÿป heart hands: light skin tone +๐Ÿซถ๐Ÿผ heart hands: medium-light skin tone +๐Ÿซถ๐Ÿฝ heart hands: medium skin tone +๐Ÿซถ๐Ÿพ heart hands: medium-dark skin tone +๐Ÿซถ๐Ÿฟ heart hands: dark skin tone +๐Ÿ‘ open hands +๐Ÿ‘๐Ÿป open hands: light skin tone +๐Ÿ‘๐Ÿผ open hands: medium-light skin tone +๐Ÿ‘๐Ÿฝ open hands: medium skin tone +๐Ÿ‘๐Ÿพ open hands: medium-dark skin tone +๐Ÿ‘๐Ÿฟ open hands: dark skin tone +๐Ÿคฒ palms up together +๐Ÿคฒ๐Ÿป palms up together: light skin tone +๐Ÿคฒ๐Ÿผ palms up together: medium-light skin tone +๐Ÿคฒ๐Ÿฝ palms up together: medium skin tone +๐Ÿคฒ๐Ÿพ palms up together: medium-dark skin tone +๐Ÿคฒ๐Ÿฟ palms up together: dark skin tone +๐Ÿค handshake +๐Ÿค๐Ÿป handshake: light skin tone +๐Ÿค๐Ÿผ handshake: medium-light skin tone +๐Ÿค๐Ÿฝ handshake: medium skin tone +๐Ÿค๐Ÿพ handshake: medium-dark skin tone +๐Ÿค๐Ÿฟ handshake: dark skin tone +๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿผ handshake: light skin tone, medium-light skin tone +๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฝ handshake: light skin tone, medium skin tone +๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿพ handshake: light skin tone, medium-dark skin tone +๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฟ handshake: light skin tone, dark skin tone +๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿป handshake: medium-light skin tone, light skin tone +๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฝ handshake: medium-light skin tone, medium skin tone +๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿพ handshake: medium-light skin tone, medium-dark skin tone +๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฟ handshake: medium-light skin tone, dark skin tone +๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿป handshake: medium skin tone, light skin tone +๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿผ handshake: medium skin tone, medium-light skin tone +๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿพ handshake: medium skin tone, medium-dark skin tone +๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿฟ handshake: medium skin tone, dark skin tone +๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿป handshake: medium-dark skin tone, light skin tone +๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿผ handshake: medium-dark skin tone, medium-light skin tone +๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฝ handshake: medium-dark skin tone, medium skin tone +๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฟ handshake: medium-dark skin tone, dark skin tone +๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿป handshake: dark skin tone, light skin tone +๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿผ handshake: dark skin tone, medium-light skin tone +๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿฝ handshake: dark skin tone, medium skin tone +๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿพ handshake: dark skin tone, medium-dark skin tone +๐Ÿ™ folded hands +๐Ÿ™๐Ÿป folded hands: light skin tone +๐Ÿ™๐Ÿผ folded hands: medium-light skin tone +๐Ÿ™๐Ÿฝ folded hands: medium skin tone +๐Ÿ™๐Ÿพ folded hands: medium-dark skin tone +๐Ÿ™๐Ÿฟ folded hands: dark skin tone +โœ๏ธ writing hand +โœ writing hand +โœ๐Ÿป writing hand: light skin tone +โœ๐Ÿผ writing hand: medium-light skin tone +โœ๐Ÿฝ writing hand: medium skin tone +โœ๐Ÿพ writing hand: medium-dark skin tone +โœ๐Ÿฟ writing hand: dark skin tone +๐Ÿ’… nail polish +๐Ÿ’…๐Ÿป nail polish: light skin tone +๐Ÿ’…๐Ÿผ nail polish: medium-light skin tone +๐Ÿ’…๐Ÿฝ nail polish: medium skin tone +๐Ÿ’…๐Ÿพ nail polish: medium-dark skin tone +๐Ÿ’…๐Ÿฟ nail polish: dark skin tone +๐Ÿคณ selfie +๐Ÿคณ๐Ÿป selfie: light skin tone +๐Ÿคณ๐Ÿผ selfie: medium-light skin tone +๐Ÿคณ๐Ÿฝ selfie: medium skin tone +๐Ÿคณ๐Ÿพ selfie: medium-dark skin tone +๐Ÿคณ๐Ÿฟ selfie: dark skin tone +๐Ÿ’ช flexed biceps +๐Ÿ’ช๐Ÿป flexed biceps: light skin tone +๐Ÿ’ช๐Ÿผ flexed biceps: medium-light skin tone +๐Ÿ’ช๐Ÿฝ flexed biceps: medium skin tone +๐Ÿ’ช๐Ÿพ flexed biceps: medium-dark skin tone +๐Ÿ’ช๐Ÿฟ flexed biceps: dark skin tone +๐Ÿฆพ mechanical arm +๐Ÿฆฟ mechanical leg +๐Ÿฆต leg +๐Ÿฆต๐Ÿป leg: light skin tone +๐Ÿฆต๐Ÿผ leg: medium-light skin tone +๐Ÿฆต๐Ÿฝ leg: medium skin tone +๐Ÿฆต๐Ÿพ leg: medium-dark skin tone +๐Ÿฆต๐Ÿฟ leg: dark skin tone +๐Ÿฆถ foot +๐Ÿฆถ๐Ÿป foot: light skin tone +๐Ÿฆถ๐Ÿผ foot: medium-light skin tone +๐Ÿฆถ๐Ÿฝ foot: medium skin tone +๐Ÿฆถ๐Ÿพ foot: medium-dark skin tone +๐Ÿฆถ๐Ÿฟ foot: dark skin tone +๐Ÿ‘‚ ear +๐Ÿ‘‚๐Ÿป ear: light skin tone +๐Ÿ‘‚๐Ÿผ ear: medium-light skin tone +๐Ÿ‘‚๐Ÿฝ ear: medium skin tone +๐Ÿ‘‚๐Ÿพ ear: medium-dark skin tone +๐Ÿ‘‚๐Ÿฟ ear: dark skin tone +๐Ÿฆป ear with hearing aid +๐Ÿฆป๐Ÿป ear with hearing aid: light skin tone +๐Ÿฆป๐Ÿผ ear with hearing aid: medium-light skin tone +๐Ÿฆป๐Ÿฝ ear with hearing aid: medium skin tone +๐Ÿฆป๐Ÿพ ear with hearing aid: medium-dark skin tone +๐Ÿฆป๐Ÿฟ ear with hearing aid: dark skin tone +๐Ÿ‘ƒ nose +๐Ÿ‘ƒ๐Ÿป nose: light skin tone +๐Ÿ‘ƒ๐Ÿผ nose: medium-light skin tone +๐Ÿ‘ƒ๐Ÿฝ nose: medium skin tone +๐Ÿ‘ƒ๐Ÿพ nose: medium-dark skin tone +๐Ÿ‘ƒ๐Ÿฟ nose: dark skin tone +๐Ÿง  brain +๐Ÿซ€ anatomical heart +๐Ÿซ lungs +๐Ÿฆท tooth +๐Ÿฆด bone +๐Ÿ‘€ eyes +๐Ÿ‘๏ธ eye +๐Ÿ‘ eye +๐Ÿ‘… tongue +๐Ÿ‘„ mouth +๐Ÿซฆ biting lip +๐Ÿ‘ถ baby +๐Ÿ‘ถ๐Ÿป baby: light skin tone +๐Ÿ‘ถ๐Ÿผ baby: medium-light skin tone +๐Ÿ‘ถ๐Ÿฝ baby: medium skin tone +๐Ÿ‘ถ๐Ÿพ baby: medium-dark skin tone +๐Ÿ‘ถ๐Ÿฟ baby: dark skin tone +๐Ÿง’ child +๐Ÿง’๐Ÿป child: light skin tone +๐Ÿง’๐Ÿผ child: medium-light skin tone +๐Ÿง’๐Ÿฝ child: medium skin tone +๐Ÿง’๐Ÿพ child: medium-dark skin tone +๐Ÿง’๐Ÿฟ child: dark skin tone +๐Ÿ‘ฆ boy +๐Ÿ‘ฆ๐Ÿป boy: light skin tone +๐Ÿ‘ฆ๐Ÿผ boy: medium-light skin tone +๐Ÿ‘ฆ๐Ÿฝ boy: medium skin tone +๐Ÿ‘ฆ๐Ÿพ boy: medium-dark skin tone +๐Ÿ‘ฆ๐Ÿฟ boy: dark skin tone +๐Ÿ‘ง girl +๐Ÿ‘ง๐Ÿป girl: light skin tone +๐Ÿ‘ง๐Ÿผ girl: medium-light skin tone +๐Ÿ‘ง๐Ÿฝ girl: medium skin tone +๐Ÿ‘ง๐Ÿพ girl: medium-dark skin tone +๐Ÿ‘ง๐Ÿฟ girl: dark skin tone +๐Ÿง‘ person +๐Ÿง‘๐Ÿป person: light skin tone +๐Ÿง‘๐Ÿผ person: medium-light skin tone +๐Ÿง‘๐Ÿฝ person: medium skin tone +๐Ÿง‘๐Ÿพ person: medium-dark skin tone +๐Ÿง‘๐Ÿฟ person: dark skin tone +๐Ÿ‘ฑ person: blond hair +๐Ÿ‘ฑ๐Ÿป person: light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿผ person: medium-light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฝ person: medium skin tone, blond hair +๐Ÿ‘ฑ๐Ÿพ person: medium-dark skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฟ person: dark skin tone, blond hair +๐Ÿ‘จ man +๐Ÿ‘จ๐Ÿป man: light skin tone +๐Ÿ‘จ๐Ÿผ man: medium-light skin tone +๐Ÿ‘จ๐Ÿฝ man: medium skin tone +๐Ÿ‘จ๐Ÿพ man: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟ man: dark skin tone +๐Ÿง” person: beard +๐Ÿง”๐Ÿป person: light skin tone, beard +๐Ÿง”๐Ÿผ person: medium-light skin tone, beard +๐Ÿง”๐Ÿฝ person: medium skin tone, beard +๐Ÿง”๐Ÿพ person: medium-dark skin tone, beard +๐Ÿง”๐Ÿฟ person: dark skin tone, beard +๐Ÿง”โ€โ™‚๏ธ man: beard +๐Ÿง”โ€โ™‚ man: beard +๐Ÿง”๐Ÿปโ€โ™‚๏ธ man: light skin tone, beard +๐Ÿง”๐Ÿปโ€โ™‚ man: light skin tone, beard +๐Ÿง”๐Ÿผโ€โ™‚๏ธ man: medium-light skin tone, beard +๐Ÿง”๐Ÿผโ€โ™‚ man: medium-light skin tone, beard +๐Ÿง”๐Ÿฝโ€โ™‚๏ธ man: medium skin tone, beard +๐Ÿง”๐Ÿฝโ€โ™‚ man: medium skin tone, beard +๐Ÿง”๐Ÿพโ€โ™‚๏ธ man: medium-dark skin tone, beard +๐Ÿง”๐Ÿพโ€โ™‚ man: medium-dark skin tone, beard +๐Ÿง”๐Ÿฟโ€โ™‚๏ธ man: dark skin tone, beard +๐Ÿง”๐Ÿฟโ€โ™‚ man: dark skin tone, beard +๐Ÿง”โ€โ™€๏ธ woman: beard +๐Ÿง”โ€โ™€ woman: beard +๐Ÿง”๐Ÿปโ€โ™€๏ธ woman: light skin tone, beard +๐Ÿง”๐Ÿปโ€โ™€ woman: light skin tone, beard +๐Ÿง”๐Ÿผโ€โ™€๏ธ woman: medium-light skin tone, beard +๐Ÿง”๐Ÿผโ€โ™€ woman: medium-light skin tone, beard +๐Ÿง”๐Ÿฝโ€โ™€๏ธ woman: medium skin tone, beard +๐Ÿง”๐Ÿฝโ€โ™€ woman: medium skin tone, beard +๐Ÿง”๐Ÿพโ€โ™€๏ธ woman: medium-dark skin tone, beard +๐Ÿง”๐Ÿพโ€โ™€ woman: medium-dark skin tone, beard +๐Ÿง”๐Ÿฟโ€โ™€๏ธ woman: dark skin tone, beard +๐Ÿง”๐Ÿฟโ€โ™€ woman: dark skin tone, beard +๐Ÿ‘จโ€๐Ÿฆฐ man: red hair +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ man: light skin tone, red hair +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ man: medium-light skin tone, red hair +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ man: medium skin tone, red hair +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ man: medium-dark skin tone, red hair +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ man: dark skin tone, red hair +๐Ÿ‘จโ€๐Ÿฆฑ man: curly hair +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ man: light skin tone, curly hair +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ man: medium-light skin tone, curly hair +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ man: medium skin tone, curly hair +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ man: medium-dark skin tone, curly hair +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ man: dark skin tone, curly hair +๐Ÿ‘จโ€๐Ÿฆณ man: white hair +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ man: light skin tone, white hair +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ man: medium-light skin tone, white hair +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ man: medium skin tone, white hair +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ man: medium-dark skin tone, white hair +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ man: dark skin tone, white hair +๐Ÿ‘จโ€๐Ÿฆฒ man: bald +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ man: light skin tone, bald +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ man: medium-light skin tone, bald +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ man: medium skin tone, bald +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ man: medium-dark skin tone, bald +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ man: dark skin tone, bald +๐Ÿ‘ฉ woman +๐Ÿ‘ฉ๐Ÿป woman: light skin tone +๐Ÿ‘ฉ๐Ÿผ woman: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝ woman: medium skin tone +๐Ÿ‘ฉ๐Ÿพ woman: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟ woman: dark skin tone +๐Ÿ‘ฉโ€๐Ÿฆฐ woman: red hair +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ woman: light skin tone, red hair +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ woman: medium-light skin tone, red hair +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ woman: medium skin tone, red hair +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ woman: medium-dark skin tone, red hair +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ woman: dark skin tone, red hair +๐Ÿง‘โ€๐Ÿฆฐ person: red hair +๐Ÿง‘๐Ÿปโ€๐Ÿฆฐ person: light skin tone, red hair +๐Ÿง‘๐Ÿผโ€๐Ÿฆฐ person: medium-light skin tone, red hair +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฐ person: medium skin tone, red hair +๐Ÿง‘๐Ÿพโ€๐Ÿฆฐ person: medium-dark skin tone, red hair +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฐ person: dark skin tone, red hair +๐Ÿ‘ฉโ€๐Ÿฆฑ woman: curly hair +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ woman: light skin tone, curly hair +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ woman: medium-light skin tone, curly hair +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ woman: medium skin tone, curly hair +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ woman: medium-dark skin tone, curly hair +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ woman: dark skin tone, curly hair +๐Ÿง‘โ€๐Ÿฆฑ person: curly hair +๐Ÿง‘๐Ÿปโ€๐Ÿฆฑ person: light skin tone, curly hair +๐Ÿง‘๐Ÿผโ€๐Ÿฆฑ person: medium-light skin tone, curly hair +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฑ person: medium skin tone, curly hair +๐Ÿง‘๐Ÿพโ€๐Ÿฆฑ person: medium-dark skin tone, curly hair +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฑ person: dark skin tone, curly hair +๐Ÿ‘ฉโ€๐Ÿฆณ woman: white hair +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ woman: light skin tone, white hair +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ woman: medium-light skin tone, white hair +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ woman: medium skin tone, white hair +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ woman: medium-dark skin tone, white hair +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ woman: dark skin tone, white hair +๐Ÿง‘โ€๐Ÿฆณ person: white hair +๐Ÿง‘๐Ÿปโ€๐Ÿฆณ person: light skin tone, white hair +๐Ÿง‘๐Ÿผโ€๐Ÿฆณ person: medium-light skin tone, white hair +๐Ÿง‘๐Ÿฝโ€๐Ÿฆณ person: medium skin tone, white hair +๐Ÿง‘๐Ÿพโ€๐Ÿฆณ person: medium-dark skin tone, white hair +๐Ÿง‘๐Ÿฟโ€๐Ÿฆณ person: dark skin tone, white hair +๐Ÿ‘ฉโ€๐Ÿฆฒ woman: bald +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ woman: light skin tone, bald +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ woman: medium-light skin tone, bald +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ woman: medium skin tone, bald +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ woman: medium-dark skin tone, bald +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ woman: dark skin tone, bald +๐Ÿง‘โ€๐Ÿฆฒ person: bald +๐Ÿง‘๐Ÿปโ€๐Ÿฆฒ person: light skin tone, bald +๐Ÿง‘๐Ÿผโ€๐Ÿฆฒ person: medium-light skin tone, bald +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฒ person: medium skin tone, bald +๐Ÿง‘๐Ÿพโ€๐Ÿฆฒ person: medium-dark skin tone, bald +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฒ person: dark skin tone, bald +๐Ÿ‘ฑโ€โ™€๏ธ woman: blond hair +๐Ÿ‘ฑโ€โ™€ woman: blond hair +๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ woman: light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿปโ€โ™€ woman: light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ woman: medium-light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿผโ€โ™€ woman: medium-light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ woman: medium skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฝโ€โ™€ woman: medium skin tone, blond hair +๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ woman: medium-dark skin tone, blond hair +๐Ÿ‘ฑ๐Ÿพโ€โ™€ woman: medium-dark skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ woman: dark skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฟโ€โ™€ woman: dark skin tone, blond hair +๐Ÿ‘ฑโ€โ™‚๏ธ man: blond hair +๐Ÿ‘ฑโ€โ™‚ man: blond hair +๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ man: light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿปโ€โ™‚ man: light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ man: medium-light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿผโ€โ™‚ man: medium-light skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ man: medium skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฝโ€โ™‚ man: medium skin tone, blond hair +๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ man: medium-dark skin tone, blond hair +๐Ÿ‘ฑ๐Ÿพโ€โ™‚ man: medium-dark skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ man: dark skin tone, blond hair +๐Ÿ‘ฑ๐Ÿฟโ€โ™‚ man: dark skin tone, blond hair +๐Ÿง“ older person +๐Ÿง“๐Ÿป older person: light skin tone +๐Ÿง“๐Ÿผ older person: medium-light skin tone +๐Ÿง“๐Ÿฝ older person: medium skin tone +๐Ÿง“๐Ÿพ older person: medium-dark skin tone +๐Ÿง“๐Ÿฟ older person: dark skin tone +๐Ÿ‘ด old man +๐Ÿ‘ด๐Ÿป old man: light skin tone +๐Ÿ‘ด๐Ÿผ old man: medium-light skin tone +๐Ÿ‘ด๐Ÿฝ old man: medium skin tone +๐Ÿ‘ด๐Ÿพ old man: medium-dark skin tone +๐Ÿ‘ด๐Ÿฟ old man: dark skin tone +๐Ÿ‘ต old woman +๐Ÿ‘ต๐Ÿป old woman: light skin tone +๐Ÿ‘ต๐Ÿผ old woman: medium-light skin tone +๐Ÿ‘ต๐Ÿฝ old woman: medium skin tone +๐Ÿ‘ต๐Ÿพ old woman: medium-dark skin tone +๐Ÿ‘ต๐Ÿฟ old woman: dark skin tone +๐Ÿ™ person frowning +๐Ÿ™๐Ÿป person frowning: light skin tone +๐Ÿ™๐Ÿผ person frowning: medium-light skin tone +๐Ÿ™๐Ÿฝ person frowning: medium skin tone +๐Ÿ™๐Ÿพ person frowning: medium-dark skin tone +๐Ÿ™๐Ÿฟ person frowning: dark skin tone +๐Ÿ™โ€โ™‚๏ธ man frowning +๐Ÿ™โ€โ™‚ man frowning +๐Ÿ™๐Ÿปโ€โ™‚๏ธ man frowning: light skin tone +๐Ÿ™๐Ÿปโ€โ™‚ man frowning: light skin tone +๐Ÿ™๐Ÿผโ€โ™‚๏ธ man frowning: medium-light skin tone +๐Ÿ™๐Ÿผโ€โ™‚ man frowning: medium-light skin tone +๐Ÿ™๐Ÿฝโ€โ™‚๏ธ man frowning: medium skin tone +๐Ÿ™๐Ÿฝโ€โ™‚ man frowning: medium skin tone +๐Ÿ™๐Ÿพโ€โ™‚๏ธ man frowning: medium-dark skin tone +๐Ÿ™๐Ÿพโ€โ™‚ man frowning: medium-dark skin tone +๐Ÿ™๐Ÿฟโ€โ™‚๏ธ man frowning: dark skin tone +๐Ÿ™๐Ÿฟโ€โ™‚ man frowning: dark skin tone +๐Ÿ™โ€โ™€๏ธ woman frowning +๐Ÿ™โ€โ™€ woman frowning +๐Ÿ™๐Ÿปโ€โ™€๏ธ woman frowning: light skin tone +๐Ÿ™๐Ÿปโ€โ™€ woman frowning: light skin tone +๐Ÿ™๐Ÿผโ€โ™€๏ธ woman frowning: medium-light skin tone +๐Ÿ™๐Ÿผโ€โ™€ woman frowning: medium-light skin tone +๐Ÿ™๐Ÿฝโ€โ™€๏ธ woman frowning: medium skin tone +๐Ÿ™๐Ÿฝโ€โ™€ woman frowning: medium skin tone +๐Ÿ™๐Ÿพโ€โ™€๏ธ woman frowning: medium-dark skin tone +๐Ÿ™๐Ÿพโ€โ™€ woman frowning: medium-dark skin tone +๐Ÿ™๐Ÿฟโ€โ™€๏ธ woman frowning: dark skin tone +๐Ÿ™๐Ÿฟโ€โ™€ woman frowning: dark skin tone +๐Ÿ™Ž person pouting +๐Ÿ™Ž๐Ÿป person pouting: light skin tone +๐Ÿ™Ž๐Ÿผ person pouting: medium-light skin tone +๐Ÿ™Ž๐Ÿฝ person pouting: medium skin tone +๐Ÿ™Ž๐Ÿพ person pouting: medium-dark skin tone +๐Ÿ™Ž๐Ÿฟ person pouting: dark skin tone +๐Ÿ™Žโ€โ™‚๏ธ man pouting +๐Ÿ™Žโ€โ™‚ man pouting +๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ man pouting: light skin tone +๐Ÿ™Ž๐Ÿปโ€โ™‚ man pouting: light skin tone +๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ man pouting: medium-light skin tone +๐Ÿ™Ž๐Ÿผโ€โ™‚ man pouting: medium-light skin tone +๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ man pouting: medium skin tone +๐Ÿ™Ž๐Ÿฝโ€โ™‚ man pouting: medium skin tone +๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ man pouting: medium-dark skin tone +๐Ÿ™Ž๐Ÿพโ€โ™‚ man pouting: medium-dark skin tone +๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ man pouting: dark skin tone +๐Ÿ™Ž๐Ÿฟโ€โ™‚ man pouting: dark skin tone +๐Ÿ™Žโ€โ™€๏ธ woman pouting +๐Ÿ™Žโ€โ™€ woman pouting +๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ woman pouting: light skin tone +๐Ÿ™Ž๐Ÿปโ€โ™€ woman pouting: light skin tone +๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ woman pouting: medium-light skin tone +๐Ÿ™Ž๐Ÿผโ€โ™€ woman pouting: medium-light skin tone +๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ woman pouting: medium skin tone +๐Ÿ™Ž๐Ÿฝโ€โ™€ woman pouting: medium skin tone +๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ woman pouting: medium-dark skin tone +๐Ÿ™Ž๐Ÿพโ€โ™€ woman pouting: medium-dark skin tone +๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ woman pouting: dark skin tone +๐Ÿ™Ž๐Ÿฟโ€โ™€ woman pouting: dark skin tone +๐Ÿ™… person gesturing NO +๐Ÿ™…๐Ÿป person gesturing NO: light skin tone +๐Ÿ™…๐Ÿผ person gesturing NO: medium-light skin tone +๐Ÿ™…๐Ÿฝ person gesturing NO: medium skin tone +๐Ÿ™…๐Ÿพ person gesturing NO: medium-dark skin tone +๐Ÿ™…๐Ÿฟ person gesturing NO: dark skin tone +๐Ÿ™…โ€โ™‚๏ธ man gesturing NO +๐Ÿ™…โ€โ™‚ man gesturing NO +๐Ÿ™…๐Ÿปโ€โ™‚๏ธ man gesturing NO: light skin tone +๐Ÿ™…๐Ÿปโ€โ™‚ man gesturing NO: light skin tone +๐Ÿ™…๐Ÿผโ€โ™‚๏ธ man gesturing NO: medium-light skin tone +๐Ÿ™…๐Ÿผโ€โ™‚ man gesturing NO: medium-light skin tone +๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ man gesturing NO: medium skin tone +๐Ÿ™…๐Ÿฝโ€โ™‚ man gesturing NO: medium skin tone +๐Ÿ™…๐Ÿพโ€โ™‚๏ธ man gesturing NO: medium-dark skin tone +๐Ÿ™…๐Ÿพโ€โ™‚ man gesturing NO: medium-dark skin tone +๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ man gesturing NO: dark skin tone +๐Ÿ™…๐Ÿฟโ€โ™‚ man gesturing NO: dark skin tone +๐Ÿ™…โ€โ™€๏ธ woman gesturing NO +๐Ÿ™…โ€โ™€ woman gesturing NO +๐Ÿ™…๐Ÿปโ€โ™€๏ธ woman gesturing NO: light skin tone +๐Ÿ™…๐Ÿปโ€โ™€ woman gesturing NO: light skin tone +๐Ÿ™…๐Ÿผโ€โ™€๏ธ woman gesturing NO: medium-light skin tone +๐Ÿ™…๐Ÿผโ€โ™€ woman gesturing NO: medium-light skin tone +๐Ÿ™…๐Ÿฝโ€โ™€๏ธ woman gesturing NO: medium skin tone +๐Ÿ™…๐Ÿฝโ€โ™€ woman gesturing NO: medium skin tone +๐Ÿ™…๐Ÿพโ€โ™€๏ธ woman gesturing NO: medium-dark skin tone +๐Ÿ™…๐Ÿพโ€โ™€ woman gesturing NO: medium-dark skin tone +๐Ÿ™…๐Ÿฟโ€โ™€๏ธ woman gesturing NO: dark skin tone +๐Ÿ™…๐Ÿฟโ€โ™€ woman gesturing NO: dark skin tone +๐Ÿ™† person gesturing OK +๐Ÿ™†๐Ÿป person gesturing OK: light skin tone +๐Ÿ™†๐Ÿผ person gesturing OK: medium-light skin tone +๐Ÿ™†๐Ÿฝ person gesturing OK: medium skin tone +๐Ÿ™†๐Ÿพ person gesturing OK: medium-dark skin tone +๐Ÿ™†๐Ÿฟ person gesturing OK: dark skin tone +๐Ÿ™†โ€โ™‚๏ธ man gesturing OK +๐Ÿ™†โ€โ™‚ man gesturing OK +๐Ÿ™†๐Ÿปโ€โ™‚๏ธ man gesturing OK: light skin tone +๐Ÿ™†๐Ÿปโ€โ™‚ man gesturing OK: light skin tone +๐Ÿ™†๐Ÿผโ€โ™‚๏ธ man gesturing OK: medium-light skin tone +๐Ÿ™†๐Ÿผโ€โ™‚ man gesturing OK: medium-light skin tone +๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ man gesturing OK: medium skin tone +๐Ÿ™†๐Ÿฝโ€โ™‚ man gesturing OK: medium skin tone +๐Ÿ™†๐Ÿพโ€โ™‚๏ธ man gesturing OK: medium-dark skin tone +๐Ÿ™†๐Ÿพโ€โ™‚ man gesturing OK: medium-dark skin tone +๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ man gesturing OK: dark skin tone +๐Ÿ™†๐Ÿฟโ€โ™‚ man gesturing OK: dark skin tone +๐Ÿ™†โ€โ™€๏ธ woman gesturing OK +๐Ÿ™†โ€โ™€ woman gesturing OK +๐Ÿ™†๐Ÿปโ€โ™€๏ธ woman gesturing OK: light skin tone +๐Ÿ™†๐Ÿปโ€โ™€ woman gesturing OK: light skin tone +๐Ÿ™†๐Ÿผโ€โ™€๏ธ woman gesturing OK: medium-light skin tone +๐Ÿ™†๐Ÿผโ€โ™€ woman gesturing OK: medium-light skin tone +๐Ÿ™†๐Ÿฝโ€โ™€๏ธ woman gesturing OK: medium skin tone +๐Ÿ™†๐Ÿฝโ€โ™€ woman gesturing OK: medium skin tone +๐Ÿ™†๐Ÿพโ€โ™€๏ธ woman gesturing OK: medium-dark skin tone +๐Ÿ™†๐Ÿพโ€โ™€ woman gesturing OK: medium-dark skin tone +๐Ÿ™†๐Ÿฟโ€โ™€๏ธ woman gesturing OK: dark skin tone +๐Ÿ™†๐Ÿฟโ€โ™€ woman gesturing OK: dark skin tone +๐Ÿ’ person tipping hand +๐Ÿ’๐Ÿป person tipping hand: light skin tone +๐Ÿ’๐Ÿผ person tipping hand: medium-light skin tone +๐Ÿ’๐Ÿฝ person tipping hand: medium skin tone +๐Ÿ’๐Ÿพ person tipping hand: medium-dark skin tone +๐Ÿ’๐Ÿฟ person tipping hand: dark skin tone +๐Ÿ’โ€โ™‚๏ธ man tipping hand +๐Ÿ’โ€โ™‚ man tipping hand +๐Ÿ’๐Ÿปโ€โ™‚๏ธ man tipping hand: light skin tone +๐Ÿ’๐Ÿปโ€โ™‚ man tipping hand: light skin tone +๐Ÿ’๐Ÿผโ€โ™‚๏ธ man tipping hand: medium-light skin tone +๐Ÿ’๐Ÿผโ€โ™‚ man tipping hand: medium-light skin tone +๐Ÿ’๐Ÿฝโ€โ™‚๏ธ man tipping hand: medium skin tone +๐Ÿ’๐Ÿฝโ€โ™‚ man tipping hand: medium skin tone +๐Ÿ’๐Ÿพโ€โ™‚๏ธ man tipping hand: medium-dark skin tone +๐Ÿ’๐Ÿพโ€โ™‚ man tipping hand: medium-dark skin tone +๐Ÿ’๐Ÿฟโ€โ™‚๏ธ man tipping hand: dark skin tone +๐Ÿ’๐Ÿฟโ€โ™‚ man tipping hand: dark skin tone +๐Ÿ’โ€โ™€๏ธ woman tipping hand +๐Ÿ’โ€โ™€ woman tipping hand +๐Ÿ’๐Ÿปโ€โ™€๏ธ woman tipping hand: light skin tone +๐Ÿ’๐Ÿปโ€โ™€ woman tipping hand: light skin tone +๐Ÿ’๐Ÿผโ€โ™€๏ธ woman tipping hand: medium-light skin tone +๐Ÿ’๐Ÿผโ€โ™€ woman tipping hand: medium-light skin tone +๐Ÿ’๐Ÿฝโ€โ™€๏ธ woman tipping hand: medium skin tone +๐Ÿ’๐Ÿฝโ€โ™€ woman tipping hand: medium skin tone +๐Ÿ’๐Ÿพโ€โ™€๏ธ woman tipping hand: medium-dark skin tone +๐Ÿ’๐Ÿพโ€โ™€ woman tipping hand: medium-dark skin tone +๐Ÿ’๐Ÿฟโ€โ™€๏ธ woman tipping hand: dark skin tone +๐Ÿ’๐Ÿฟโ€โ™€ woman tipping hand: dark skin tone +๐Ÿ™‹ person raising hand +๐Ÿ™‹๐Ÿป person raising hand: light skin tone +๐Ÿ™‹๐Ÿผ person raising hand: medium-light skin tone +๐Ÿ™‹๐Ÿฝ person raising hand: medium skin tone +๐Ÿ™‹๐Ÿพ person raising hand: medium-dark skin tone +๐Ÿ™‹๐Ÿฟ person raising hand: dark skin tone +๐Ÿ™‹โ€โ™‚๏ธ man raising hand +๐Ÿ™‹โ€โ™‚ man raising hand +๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ man raising hand: light skin tone +๐Ÿ™‹๐Ÿปโ€โ™‚ man raising hand: light skin tone +๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ man raising hand: medium-light skin tone +๐Ÿ™‹๐Ÿผโ€โ™‚ man raising hand: medium-light skin tone +๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ man raising hand: medium skin tone +๐Ÿ™‹๐Ÿฝโ€โ™‚ man raising hand: medium skin tone +๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ man raising hand: medium-dark skin tone +๐Ÿ™‹๐Ÿพโ€โ™‚ man raising hand: medium-dark skin tone +๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ man raising hand: dark skin tone +๐Ÿ™‹๐Ÿฟโ€โ™‚ man raising hand: dark skin tone +๐Ÿ™‹โ€โ™€๏ธ woman raising hand +๐Ÿ™‹โ€โ™€ woman raising hand +๐Ÿ™‹๐Ÿปโ€โ™€๏ธ woman raising hand: light skin tone +๐Ÿ™‹๐Ÿปโ€โ™€ woman raising hand: light skin tone +๐Ÿ™‹๐Ÿผโ€โ™€๏ธ woman raising hand: medium-light skin tone +๐Ÿ™‹๐Ÿผโ€โ™€ woman raising hand: medium-light skin tone +๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ woman raising hand: medium skin tone +๐Ÿ™‹๐Ÿฝโ€โ™€ woman raising hand: medium skin tone +๐Ÿ™‹๐Ÿพโ€โ™€๏ธ woman raising hand: medium-dark skin tone +๐Ÿ™‹๐Ÿพโ€โ™€ woman raising hand: medium-dark skin tone +๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ woman raising hand: dark skin tone +๐Ÿ™‹๐Ÿฟโ€โ™€ woman raising hand: dark skin tone +๐Ÿง deaf person +๐Ÿง๐Ÿป deaf person: light skin tone +๐Ÿง๐Ÿผ deaf person: medium-light skin tone +๐Ÿง๐Ÿฝ deaf person: medium skin tone +๐Ÿง๐Ÿพ deaf person: medium-dark skin tone +๐Ÿง๐Ÿฟ deaf person: dark skin tone +๐Ÿงโ€โ™‚๏ธ deaf man +๐Ÿงโ€โ™‚ deaf man +๐Ÿง๐Ÿปโ€โ™‚๏ธ deaf man: light skin tone +๐Ÿง๐Ÿปโ€โ™‚ deaf man: light skin tone +๐Ÿง๐Ÿผโ€โ™‚๏ธ deaf man: medium-light skin tone +๐Ÿง๐Ÿผโ€โ™‚ deaf man: medium-light skin tone +๐Ÿง๐Ÿฝโ€โ™‚๏ธ deaf man: medium skin tone +๐Ÿง๐Ÿฝโ€โ™‚ deaf man: medium skin tone +๐Ÿง๐Ÿพโ€โ™‚๏ธ deaf man: medium-dark skin tone +๐Ÿง๐Ÿพโ€โ™‚ deaf man: medium-dark skin tone +๐Ÿง๐Ÿฟโ€โ™‚๏ธ deaf man: dark skin tone +๐Ÿง๐Ÿฟโ€โ™‚ deaf man: dark skin tone +๐Ÿงโ€โ™€๏ธ deaf woman +๐Ÿงโ€โ™€ deaf woman +๐Ÿง๐Ÿปโ€โ™€๏ธ deaf woman: light skin tone +๐Ÿง๐Ÿปโ€โ™€ deaf woman: light skin tone +๐Ÿง๐Ÿผโ€โ™€๏ธ deaf woman: medium-light skin tone +๐Ÿง๐Ÿผโ€โ™€ deaf woman: medium-light skin tone +๐Ÿง๐Ÿฝโ€โ™€๏ธ deaf woman: medium skin tone +๐Ÿง๐Ÿฝโ€โ™€ deaf woman: medium skin tone +๐Ÿง๐Ÿพโ€โ™€๏ธ deaf woman: medium-dark skin tone +๐Ÿง๐Ÿพโ€โ™€ deaf woman: medium-dark skin tone +๐Ÿง๐Ÿฟโ€โ™€๏ธ deaf woman: dark skin tone +๐Ÿง๐Ÿฟโ€โ™€ deaf woman: dark skin tone +๐Ÿ™‡ person bowing +๐Ÿ™‡๐Ÿป person bowing: light skin tone +๐Ÿ™‡๐Ÿผ person bowing: medium-light skin tone +๐Ÿ™‡๐Ÿฝ person bowing: medium skin tone +๐Ÿ™‡๐Ÿพ person bowing: medium-dark skin tone +๐Ÿ™‡๐Ÿฟ person bowing: dark skin tone +๐Ÿ™‡โ€โ™‚๏ธ man bowing +๐Ÿ™‡โ€โ™‚ man bowing +๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ man bowing: light skin tone +๐Ÿ™‡๐Ÿปโ€โ™‚ man bowing: light skin tone +๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ man bowing: medium-light skin tone +๐Ÿ™‡๐Ÿผโ€โ™‚ man bowing: medium-light skin tone +๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ man bowing: medium skin tone +๐Ÿ™‡๐Ÿฝโ€โ™‚ man bowing: medium skin tone +๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ man bowing: medium-dark skin tone +๐Ÿ™‡๐Ÿพโ€โ™‚ man bowing: medium-dark skin tone +๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ man bowing: dark skin tone +๐Ÿ™‡๐Ÿฟโ€โ™‚ man bowing: dark skin tone +๐Ÿ™‡โ€โ™€๏ธ woman bowing +๐Ÿ™‡โ€โ™€ woman bowing +๐Ÿ™‡๐Ÿปโ€โ™€๏ธ woman bowing: light skin tone +๐Ÿ™‡๐Ÿปโ€โ™€ woman bowing: light skin tone +๐Ÿ™‡๐Ÿผโ€โ™€๏ธ woman bowing: medium-light skin tone +๐Ÿ™‡๐Ÿผโ€โ™€ woman bowing: medium-light skin tone +๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ woman bowing: medium skin tone +๐Ÿ™‡๐Ÿฝโ€โ™€ woman bowing: medium skin tone +๐Ÿ™‡๐Ÿพโ€โ™€๏ธ woman bowing: medium-dark skin tone +๐Ÿ™‡๐Ÿพโ€โ™€ woman bowing: medium-dark skin tone +๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ woman bowing: dark skin tone +๐Ÿ™‡๐Ÿฟโ€โ™€ woman bowing: dark skin tone +๐Ÿคฆ person facepalming +๐Ÿคฆ๐Ÿป person facepalming: light skin tone +๐Ÿคฆ๐Ÿผ person facepalming: medium-light skin tone +๐Ÿคฆ๐Ÿฝ person facepalming: medium skin tone +๐Ÿคฆ๐Ÿพ person facepalming: medium-dark skin tone +๐Ÿคฆ๐Ÿฟ person facepalming: dark skin tone +๐Ÿคฆโ€โ™‚๏ธ man facepalming +๐Ÿคฆโ€โ™‚ man facepalming +๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ man facepalming: light skin tone +๐Ÿคฆ๐Ÿปโ€โ™‚ man facepalming: light skin tone +๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ man facepalming: medium-light skin tone +๐Ÿคฆ๐Ÿผโ€โ™‚ man facepalming: medium-light skin tone +๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ man facepalming: medium skin tone +๐Ÿคฆ๐Ÿฝโ€โ™‚ man facepalming: medium skin tone +๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ man facepalming: medium-dark skin tone +๐Ÿคฆ๐Ÿพโ€โ™‚ man facepalming: medium-dark skin tone +๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ man facepalming: dark skin tone +๐Ÿคฆ๐Ÿฟโ€โ™‚ man facepalming: dark skin tone +๐Ÿคฆโ€โ™€๏ธ woman facepalming +๐Ÿคฆโ€โ™€ woman facepalming +๐Ÿคฆ๐Ÿปโ€โ™€๏ธ woman facepalming: light skin tone +๐Ÿคฆ๐Ÿปโ€โ™€ woman facepalming: light skin tone +๐Ÿคฆ๐Ÿผโ€โ™€๏ธ woman facepalming: medium-light skin tone +๐Ÿคฆ๐Ÿผโ€โ™€ woman facepalming: medium-light skin tone +๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ woman facepalming: medium skin tone +๐Ÿคฆ๐Ÿฝโ€โ™€ woman facepalming: medium skin tone +๐Ÿคฆ๐Ÿพโ€โ™€๏ธ woman facepalming: medium-dark skin tone +๐Ÿคฆ๐Ÿพโ€โ™€ woman facepalming: medium-dark skin tone +๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ woman facepalming: dark skin tone +๐Ÿคฆ๐Ÿฟโ€โ™€ woman facepalming: dark skin tone +๐Ÿคท person shrugging +๐Ÿคท๐Ÿป person shrugging: light skin tone +๐Ÿคท๐Ÿผ person shrugging: medium-light skin tone +๐Ÿคท๐Ÿฝ person shrugging: medium skin tone +๐Ÿคท๐Ÿพ person shrugging: medium-dark skin tone +๐Ÿคท๐Ÿฟ person shrugging: dark skin tone +๐Ÿคทโ€โ™‚๏ธ man shrugging +๐Ÿคทโ€โ™‚ man shrugging +๐Ÿคท๐Ÿปโ€โ™‚๏ธ man shrugging: light skin tone +๐Ÿคท๐Ÿปโ€โ™‚ man shrugging: light skin tone +๐Ÿคท๐Ÿผโ€โ™‚๏ธ man shrugging: medium-light skin tone +๐Ÿคท๐Ÿผโ€โ™‚ man shrugging: medium-light skin tone +๐Ÿคท๐Ÿฝโ€โ™‚๏ธ man shrugging: medium skin tone +๐Ÿคท๐Ÿฝโ€โ™‚ man shrugging: medium skin tone +๐Ÿคท๐Ÿพโ€โ™‚๏ธ man shrugging: medium-dark skin tone +๐Ÿคท๐Ÿพโ€โ™‚ man shrugging: medium-dark skin tone +๐Ÿคท๐Ÿฟโ€โ™‚๏ธ man shrugging: dark skin tone +๐Ÿคท๐Ÿฟโ€โ™‚ man shrugging: dark skin tone +๐Ÿคทโ€โ™€๏ธ woman shrugging +๐Ÿคทโ€โ™€ woman shrugging +๐Ÿคท๐Ÿปโ€โ™€๏ธ woman shrugging: light skin tone +๐Ÿคท๐Ÿปโ€โ™€ woman shrugging: light skin tone +๐Ÿคท๐Ÿผโ€โ™€๏ธ woman shrugging: medium-light skin tone +๐Ÿคท๐Ÿผโ€โ™€ woman shrugging: medium-light skin tone +๐Ÿคท๐Ÿฝโ€โ™€๏ธ woman shrugging: medium skin tone +๐Ÿคท๐Ÿฝโ€โ™€ woman shrugging: medium skin tone +๐Ÿคท๐Ÿพโ€โ™€๏ธ woman shrugging: medium-dark skin tone +๐Ÿคท๐Ÿพโ€โ™€ woman shrugging: medium-dark skin tone +๐Ÿคท๐Ÿฟโ€โ™€๏ธ woman shrugging: dark skin tone +๐Ÿคท๐Ÿฟโ€โ™€ woman shrugging: dark skin tone +๐Ÿง‘โ€โš•๏ธ health worker +๐Ÿง‘โ€โš• health worker +๐Ÿง‘๐Ÿปโ€โš•๏ธ health worker: light skin tone +๐Ÿง‘๐Ÿปโ€โš• health worker: light skin tone +๐Ÿง‘๐Ÿผโ€โš•๏ธ health worker: medium-light skin tone +๐Ÿง‘๐Ÿผโ€โš• health worker: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€โš•๏ธ health worker: medium skin tone +๐Ÿง‘๐Ÿฝโ€โš• health worker: medium skin tone +๐Ÿง‘๐Ÿพโ€โš•๏ธ health worker: medium-dark skin tone +๐Ÿง‘๐Ÿพโ€โš• health worker: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€โš•๏ธ health worker: dark skin tone +๐Ÿง‘๐Ÿฟโ€โš• health worker: dark skin tone +๐Ÿ‘จโ€โš•๏ธ man health worker +๐Ÿ‘จโ€โš• man health worker +๐Ÿ‘จ๐Ÿปโ€โš•๏ธ man health worker: light skin tone +๐Ÿ‘จ๐Ÿปโ€โš• man health worker: light skin tone +๐Ÿ‘จ๐Ÿผโ€โš•๏ธ man health worker: medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€โš• man health worker: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ man health worker: medium skin tone +๐Ÿ‘จ๐Ÿฝโ€โš• man health worker: medium skin tone +๐Ÿ‘จ๐Ÿพโ€โš•๏ธ man health worker: medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€โš• man health worker: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ man health worker: dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โš• man health worker: dark skin tone +๐Ÿ‘ฉโ€โš•๏ธ woman health worker +๐Ÿ‘ฉโ€โš• woman health worker +๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ woman health worker: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โš• woman health worker: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ woman health worker: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โš• woman health worker: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ woman health worker: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โš• woman health worker: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ woman health worker: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โš• woman health worker: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ woman health worker: dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โš• woman health worker: dark skin tone +๐Ÿง‘โ€๐ŸŽ“ student +๐Ÿง‘๐Ÿปโ€๐ŸŽ“ student: light skin tone +๐Ÿง‘๐Ÿผโ€๐ŸŽ“ student: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐ŸŽ“ student: medium skin tone +๐Ÿง‘๐Ÿพโ€๐ŸŽ“ student: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐ŸŽ“ student: dark skin tone +๐Ÿ‘จโ€๐ŸŽ“ man student +๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“ man student: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“ man student: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“ man student: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“ man student: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“ man student: dark skin tone +๐Ÿ‘ฉโ€๐ŸŽ“ woman student +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“ woman student: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“ woman student: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“ woman student: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“ woman student: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“ woman student: dark skin tone +๐Ÿง‘โ€๐Ÿซ teacher +๐Ÿง‘๐Ÿปโ€๐Ÿซ teacher: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿซ teacher: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿซ teacher: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿซ teacher: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿซ teacher: dark skin tone +๐Ÿ‘จโ€๐Ÿซ man teacher +๐Ÿ‘จ๐Ÿปโ€๐Ÿซ man teacher: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿซ man teacher: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ man teacher: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿซ man teacher: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ man teacher: dark skin tone +๐Ÿ‘ฉโ€๐Ÿซ woman teacher +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ woman teacher: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ woman teacher: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ woman teacher: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ woman teacher: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ woman teacher: dark skin tone +๐Ÿง‘โ€โš–๏ธ judge +๐Ÿง‘โ€โš– judge +๐Ÿง‘๐Ÿปโ€โš–๏ธ judge: light skin tone +๐Ÿง‘๐Ÿปโ€โš– judge: light skin tone +๐Ÿง‘๐Ÿผโ€โš–๏ธ judge: medium-light skin tone +๐Ÿง‘๐Ÿผโ€โš– judge: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€โš–๏ธ judge: medium skin tone +๐Ÿง‘๐Ÿฝโ€โš– judge: medium skin tone +๐Ÿง‘๐Ÿพโ€โš–๏ธ judge: medium-dark skin tone +๐Ÿง‘๐Ÿพโ€โš– judge: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€โš–๏ธ judge: dark skin tone +๐Ÿง‘๐Ÿฟโ€โš– judge: dark skin tone +๐Ÿ‘จโ€โš–๏ธ man judge +๐Ÿ‘จโ€โš– man judge +๐Ÿ‘จ๐Ÿปโ€โš–๏ธ man judge: light skin tone +๐Ÿ‘จ๐Ÿปโ€โš– man judge: light skin tone +๐Ÿ‘จ๐Ÿผโ€โš–๏ธ man judge: medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€โš– man judge: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ man judge: medium skin tone +๐Ÿ‘จ๐Ÿฝโ€โš– man judge: medium skin tone +๐Ÿ‘จ๐Ÿพโ€โš–๏ธ man judge: medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€โš– man judge: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ man judge: dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โš– man judge: dark skin tone +๐Ÿ‘ฉโ€โš–๏ธ woman judge +๐Ÿ‘ฉโ€โš– woman judge +๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ woman judge: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โš– woman judge: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ woman judge: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โš– woman judge: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ woman judge: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โš– woman judge: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ woman judge: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โš– woman judge: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ woman judge: dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โš– woman judge: dark skin tone +๐Ÿง‘โ€๐ŸŒพ farmer +๐Ÿง‘๐Ÿปโ€๐ŸŒพ farmer: light skin tone +๐Ÿง‘๐Ÿผโ€๐ŸŒพ farmer: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐ŸŒพ farmer: medium skin tone +๐Ÿง‘๐Ÿพโ€๐ŸŒพ farmer: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐ŸŒพ farmer: dark skin tone +๐Ÿ‘จโ€๐ŸŒพ man farmer +๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ man farmer: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ man farmer: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ man farmer: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ man farmer: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ man farmer: dark skin tone +๐Ÿ‘ฉโ€๐ŸŒพ woman farmer +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ woman farmer: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ woman farmer: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ woman farmer: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ woman farmer: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ woman farmer: dark skin tone +๐Ÿง‘โ€๐Ÿณ cook +๐Ÿง‘๐Ÿปโ€๐Ÿณ cook: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿณ cook: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿณ cook: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿณ cook: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿณ cook: dark skin tone +๐Ÿ‘จโ€๐Ÿณ man cook +๐Ÿ‘จ๐Ÿปโ€๐Ÿณ man cook: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿณ man cook: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ man cook: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿณ man cook: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ man cook: dark skin tone +๐Ÿ‘ฉโ€๐Ÿณ woman cook +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ woman cook: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ woman cook: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ woman cook: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ woman cook: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ woman cook: dark skin tone +๐Ÿง‘โ€๐Ÿ”ง mechanic +๐Ÿง‘๐Ÿปโ€๐Ÿ”ง mechanic: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿ”ง mechanic: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿ”ง mechanic: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿ”ง mechanic: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿ”ง mechanic: dark skin tone +๐Ÿ‘จโ€๐Ÿ”ง man mechanic +๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง man mechanic: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง man mechanic: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง man mechanic: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง man mechanic: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง man mechanic: dark skin tone +๐Ÿ‘ฉโ€๐Ÿ”ง woman mechanic +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง woman mechanic: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง woman mechanic: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง woman mechanic: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง woman mechanic: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง woman mechanic: dark skin tone +๐Ÿง‘โ€๐Ÿญ factory worker +๐Ÿง‘๐Ÿปโ€๐Ÿญ factory worker: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿญ factory worker: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿญ factory worker: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿญ factory worker: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿญ factory worker: dark skin tone +๐Ÿ‘จโ€๐Ÿญ man factory worker +๐Ÿ‘จ๐Ÿปโ€๐Ÿญ man factory worker: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿญ man factory worker: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ man factory worker: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿญ man factory worker: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ man factory worker: dark skin tone +๐Ÿ‘ฉโ€๐Ÿญ woman factory worker +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ woman factory worker: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ woman factory worker: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ woman factory worker: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ woman factory worker: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ woman factory worker: dark skin tone +๐Ÿง‘โ€๐Ÿ’ผ office worker +๐Ÿง‘๐Ÿปโ€๐Ÿ’ผ office worker: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿ’ผ office worker: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿ’ผ office worker: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿ’ผ office worker: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿ’ผ office worker: dark skin tone +๐Ÿ‘จโ€๐Ÿ’ผ man office worker +๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ man office worker: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ man office worker: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ man office worker: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ man office worker: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ man office worker: dark skin tone +๐Ÿ‘ฉโ€๐Ÿ’ผ woman office worker +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ woman office worker: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ woman office worker: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ woman office worker: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ woman office worker: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ woman office worker: dark skin tone +๐Ÿง‘โ€๐Ÿ”ฌ scientist +๐Ÿง‘๐Ÿปโ€๐Ÿ”ฌ scientist: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿ”ฌ scientist: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿ”ฌ scientist: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿ”ฌ scientist: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿ”ฌ scientist: dark skin tone +๐Ÿ‘จโ€๐Ÿ”ฌ man scientist +๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ man scientist: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ man scientist: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ man scientist: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ man scientist: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ man scientist: dark skin tone +๐Ÿ‘ฉโ€๐Ÿ”ฌ woman scientist +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ woman scientist: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ woman scientist: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ woman scientist: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ woman scientist: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ woman scientist: dark skin tone +๐Ÿง‘โ€๐Ÿ’ป technologist +๐Ÿง‘๐Ÿปโ€๐Ÿ’ป technologist: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿ’ป technologist: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป technologist: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿ’ป technologist: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿ’ป technologist: dark skin tone +๐Ÿ‘จโ€๐Ÿ’ป man technologist +๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป man technologist: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป man technologist: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป man technologist: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป man technologist: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป man technologist: dark skin tone +๐Ÿ‘ฉโ€๐Ÿ’ป woman technologist +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป woman technologist: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป woman technologist: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป woman technologist: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป woman technologist: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป woman technologist: dark skin tone +๐Ÿง‘โ€๐ŸŽค singer +๐Ÿง‘๐Ÿปโ€๐ŸŽค singer: light skin tone +๐Ÿง‘๐Ÿผโ€๐ŸŽค singer: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐ŸŽค singer: medium skin tone +๐Ÿง‘๐Ÿพโ€๐ŸŽค singer: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐ŸŽค singer: dark skin tone +๐Ÿ‘จโ€๐ŸŽค man singer +๐Ÿ‘จ๐Ÿปโ€๐ŸŽค man singer: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐ŸŽค man singer: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค man singer: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐ŸŽค man singer: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค man singer: dark skin tone +๐Ÿ‘ฉโ€๐ŸŽค woman singer +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค woman singer: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค woman singer: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค woman singer: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค woman singer: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค woman singer: dark skin tone +๐Ÿง‘โ€๐ŸŽจ artist +๐Ÿง‘๐Ÿปโ€๐ŸŽจ artist: light skin tone +๐Ÿง‘๐Ÿผโ€๐ŸŽจ artist: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐ŸŽจ artist: medium skin tone +๐Ÿง‘๐Ÿพโ€๐ŸŽจ artist: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐ŸŽจ artist: dark skin tone +๐Ÿ‘จโ€๐ŸŽจ man artist +๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ man artist: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ man artist: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ man artist: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ man artist: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ man artist: dark skin tone +๐Ÿ‘ฉโ€๐ŸŽจ woman artist +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ woman artist: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ woman artist: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ woman artist: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ woman artist: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ woman artist: dark skin tone +๐Ÿง‘โ€โœˆ๏ธ pilot +๐Ÿง‘โ€โœˆ pilot +๐Ÿง‘๐Ÿปโ€โœˆ๏ธ pilot: light skin tone +๐Ÿง‘๐Ÿปโ€โœˆ pilot: light skin tone +๐Ÿง‘๐Ÿผโ€โœˆ๏ธ pilot: medium-light skin tone +๐Ÿง‘๐Ÿผโ€โœˆ pilot: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€โœˆ๏ธ pilot: medium skin tone +๐Ÿง‘๐Ÿฝโ€โœˆ pilot: medium skin tone +๐Ÿง‘๐Ÿพโ€โœˆ๏ธ pilot: medium-dark skin tone +๐Ÿง‘๐Ÿพโ€โœˆ pilot: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€โœˆ๏ธ pilot: dark skin tone +๐Ÿง‘๐Ÿฟโ€โœˆ pilot: dark skin tone +๐Ÿ‘จโ€โœˆ๏ธ man pilot +๐Ÿ‘จโ€โœˆ man pilot +๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ man pilot: light skin tone +๐Ÿ‘จ๐Ÿปโ€โœˆ man pilot: light skin tone +๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ man pilot: medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€โœˆ man pilot: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ man pilot: medium skin tone +๐Ÿ‘จ๐Ÿฝโ€โœˆ man pilot: medium skin tone +๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ man pilot: medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€โœˆ man pilot: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ man pilot: dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โœˆ man pilot: dark skin tone +๐Ÿ‘ฉโ€โœˆ๏ธ woman pilot +๐Ÿ‘ฉโ€โœˆ woman pilot +๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ woman pilot: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โœˆ woman pilot: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ woman pilot: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โœˆ woman pilot: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ woman pilot: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โœˆ woman pilot: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ woman pilot: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โœˆ woman pilot: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ woman pilot: dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โœˆ woman pilot: dark skin tone +๐Ÿง‘โ€๐Ÿš€ astronaut +๐Ÿง‘๐Ÿปโ€๐Ÿš€ astronaut: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿš€ astronaut: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿš€ astronaut: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿš€ astronaut: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿš€ astronaut: dark skin tone +๐Ÿ‘จโ€๐Ÿš€ man astronaut +๐Ÿ‘จ๐Ÿปโ€๐Ÿš€ man astronaut: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿš€ man astronaut: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€ man astronaut: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿš€ man astronaut: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€ man astronaut: dark skin tone +๐Ÿ‘ฉโ€๐Ÿš€ woman astronaut +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€ woman astronaut: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€ woman astronaut: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€ woman astronaut: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€ woman astronaut: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€ woman astronaut: dark skin tone +๐Ÿง‘โ€๐Ÿš’ firefighter +๐Ÿง‘๐Ÿปโ€๐Ÿš’ firefighter: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿš’ firefighter: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿš’ firefighter: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿš’ firefighter: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿš’ firefighter: dark skin tone +๐Ÿ‘จโ€๐Ÿš’ man firefighter +๐Ÿ‘จ๐Ÿปโ€๐Ÿš’ man firefighter: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿš’ man firefighter: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’ man firefighter: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿš’ man firefighter: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’ man firefighter: dark skin tone +๐Ÿ‘ฉโ€๐Ÿš’ woman firefighter +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’ woman firefighter: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’ woman firefighter: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’ woman firefighter: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’ woman firefighter: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’ woman firefighter: dark skin tone +๐Ÿ‘ฎ police officer +๐Ÿ‘ฎ๐Ÿป police officer: light skin tone +๐Ÿ‘ฎ๐Ÿผ police officer: medium-light skin tone +๐Ÿ‘ฎ๐Ÿฝ police officer: medium skin tone +๐Ÿ‘ฎ๐Ÿพ police officer: medium-dark skin tone +๐Ÿ‘ฎ๐Ÿฟ police officer: dark skin tone +๐Ÿ‘ฎโ€โ™‚๏ธ man police officer +๐Ÿ‘ฎโ€โ™‚ man police officer +๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ man police officer: light skin tone +๐Ÿ‘ฎ๐Ÿปโ€โ™‚ man police officer: light skin tone +๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ man police officer: medium-light skin tone +๐Ÿ‘ฎ๐Ÿผโ€โ™‚ man police officer: medium-light skin tone +๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ man police officer: medium skin tone +๐Ÿ‘ฎ๐Ÿฝโ€โ™‚ man police officer: medium skin tone +๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ man police officer: medium-dark skin tone +๐Ÿ‘ฎ๐Ÿพโ€โ™‚ man police officer: medium-dark skin tone +๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ man police officer: dark skin tone +๐Ÿ‘ฎ๐Ÿฟโ€โ™‚ man police officer: dark skin tone +๐Ÿ‘ฎโ€โ™€๏ธ woman police officer +๐Ÿ‘ฎโ€โ™€ woman police officer +๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ woman police officer: light skin tone +๐Ÿ‘ฎ๐Ÿปโ€โ™€ woman police officer: light skin tone +๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ woman police officer: medium-light skin tone +๐Ÿ‘ฎ๐Ÿผโ€โ™€ woman police officer: medium-light skin tone +๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ woman police officer: medium skin tone +๐Ÿ‘ฎ๐Ÿฝโ€โ™€ woman police officer: medium skin tone +๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ woman police officer: medium-dark skin tone +๐Ÿ‘ฎ๐Ÿพโ€โ™€ woman police officer: medium-dark skin tone +๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ woman police officer: dark skin tone +๐Ÿ‘ฎ๐Ÿฟโ€โ™€ woman police officer: dark skin tone +๐Ÿ•ต๏ธ detective +๐Ÿ•ต detective +๐Ÿ•ต๐Ÿป detective: light skin tone +๐Ÿ•ต๐Ÿผ detective: medium-light skin tone +๐Ÿ•ต๐Ÿฝ detective: medium skin tone +๐Ÿ•ต๐Ÿพ detective: medium-dark skin tone +๐Ÿ•ต๐Ÿฟ detective: dark skin tone +๐Ÿ•ต๏ธโ€โ™‚๏ธ man detective +๐Ÿ•ตโ€โ™‚๏ธ man detective +๐Ÿ•ต๏ธโ€โ™‚ man detective +๐Ÿ•ตโ€โ™‚ man detective +๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ man detective: light skin tone +๐Ÿ•ต๐Ÿปโ€โ™‚ man detective: light skin tone +๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ man detective: medium-light skin tone +๐Ÿ•ต๐Ÿผโ€โ™‚ man detective: medium-light skin tone +๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ man detective: medium skin tone +๐Ÿ•ต๐Ÿฝโ€โ™‚ man detective: medium skin tone +๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ man detective: medium-dark skin tone +๐Ÿ•ต๐Ÿพโ€โ™‚ man detective: medium-dark skin tone +๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ man detective: dark skin tone +๐Ÿ•ต๐Ÿฟโ€โ™‚ man detective: dark skin tone +๐Ÿ•ต๏ธโ€โ™€๏ธ woman detective +๐Ÿ•ตโ€โ™€๏ธ woman detective +๐Ÿ•ต๏ธโ€โ™€ woman detective +๐Ÿ•ตโ€โ™€ woman detective +๐Ÿ•ต๐Ÿปโ€โ™€๏ธ woman detective: light skin tone +๐Ÿ•ต๐Ÿปโ€โ™€ woman detective: light skin tone +๐Ÿ•ต๐Ÿผโ€โ™€๏ธ woman detective: medium-light skin tone +๐Ÿ•ต๐Ÿผโ€โ™€ woman detective: medium-light skin tone +๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ woman detective: medium skin tone +๐Ÿ•ต๐Ÿฝโ€โ™€ woman detective: medium skin tone +๐Ÿ•ต๐Ÿพโ€โ™€๏ธ woman detective: medium-dark skin tone +๐Ÿ•ต๐Ÿพโ€โ™€ woman detective: medium-dark skin tone +๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ woman detective: dark skin tone +๐Ÿ•ต๐Ÿฟโ€โ™€ woman detective: dark skin tone +๐Ÿ’‚ guard +๐Ÿ’‚๐Ÿป guard: light skin tone +๐Ÿ’‚๐Ÿผ guard: medium-light skin tone +๐Ÿ’‚๐Ÿฝ guard: medium skin tone +๐Ÿ’‚๐Ÿพ guard: medium-dark skin tone +๐Ÿ’‚๐Ÿฟ guard: dark skin tone +๐Ÿ’‚โ€โ™‚๏ธ man guard +๐Ÿ’‚โ€โ™‚ man guard +๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ man guard: light skin tone +๐Ÿ’‚๐Ÿปโ€โ™‚ man guard: light skin tone +๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ man guard: medium-light skin tone +๐Ÿ’‚๐Ÿผโ€โ™‚ man guard: medium-light skin tone +๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ man guard: medium skin tone +๐Ÿ’‚๐Ÿฝโ€โ™‚ man guard: medium skin tone +๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ man guard: medium-dark skin tone +๐Ÿ’‚๐Ÿพโ€โ™‚ man guard: medium-dark skin tone +๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ man guard: dark skin tone +๐Ÿ’‚๐Ÿฟโ€โ™‚ man guard: dark skin tone +๐Ÿ’‚โ€โ™€๏ธ woman guard +๐Ÿ’‚โ€โ™€ woman guard +๐Ÿ’‚๐Ÿปโ€โ™€๏ธ woman guard: light skin tone +๐Ÿ’‚๐Ÿปโ€โ™€ woman guard: light skin tone +๐Ÿ’‚๐Ÿผโ€โ™€๏ธ woman guard: medium-light skin tone +๐Ÿ’‚๐Ÿผโ€โ™€ woman guard: medium-light skin tone +๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ woman guard: medium skin tone +๐Ÿ’‚๐Ÿฝโ€โ™€ woman guard: medium skin tone +๐Ÿ’‚๐Ÿพโ€โ™€๏ธ woman guard: medium-dark skin tone +๐Ÿ’‚๐Ÿพโ€โ™€ woman guard: medium-dark skin tone +๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ woman guard: dark skin tone +๐Ÿ’‚๐Ÿฟโ€โ™€ woman guard: dark skin tone +๐Ÿฅท ninja +๐Ÿฅท๐Ÿป ninja: light skin tone +๐Ÿฅท๐Ÿผ ninja: medium-light skin tone +๐Ÿฅท๐Ÿฝ ninja: medium skin tone +๐Ÿฅท๐Ÿพ ninja: medium-dark skin tone +๐Ÿฅท๐Ÿฟ ninja: dark skin tone +๐Ÿ‘ท construction worker +๐Ÿ‘ท๐Ÿป construction worker: light skin tone +๐Ÿ‘ท๐Ÿผ construction worker: medium-light skin tone +๐Ÿ‘ท๐Ÿฝ construction worker: medium skin tone +๐Ÿ‘ท๐Ÿพ construction worker: medium-dark skin tone +๐Ÿ‘ท๐Ÿฟ construction worker: dark skin tone +๐Ÿ‘ทโ€โ™‚๏ธ man construction worker +๐Ÿ‘ทโ€โ™‚ man construction worker +๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ man construction worker: light skin tone +๐Ÿ‘ท๐Ÿปโ€โ™‚ man construction worker: light skin tone +๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ man construction worker: medium-light skin tone +๐Ÿ‘ท๐Ÿผโ€โ™‚ man construction worker: medium-light skin tone +๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ man construction worker: medium skin tone +๐Ÿ‘ท๐Ÿฝโ€โ™‚ man construction worker: medium skin tone +๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ man construction worker: medium-dark skin tone +๐Ÿ‘ท๐Ÿพโ€โ™‚ man construction worker: medium-dark skin tone +๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ man construction worker: dark skin tone +๐Ÿ‘ท๐Ÿฟโ€โ™‚ man construction worker: dark skin tone +๐Ÿ‘ทโ€โ™€๏ธ woman construction worker +๐Ÿ‘ทโ€โ™€ woman construction worker +๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ woman construction worker: light skin tone +๐Ÿ‘ท๐Ÿปโ€โ™€ woman construction worker: light skin tone +๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ woman construction worker: medium-light skin tone +๐Ÿ‘ท๐Ÿผโ€โ™€ woman construction worker: medium-light skin tone +๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ woman construction worker: medium skin tone +๐Ÿ‘ท๐Ÿฝโ€โ™€ woman construction worker: medium skin tone +๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ woman construction worker: medium-dark skin tone +๐Ÿ‘ท๐Ÿพโ€โ™€ woman construction worker: medium-dark skin tone +๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ woman construction worker: dark skin tone +๐Ÿ‘ท๐Ÿฟโ€โ™€ woman construction worker: dark skin tone +๐Ÿซ… person with crown +๐Ÿซ…๐Ÿป person with crown: light skin tone +๐Ÿซ…๐Ÿผ person with crown: medium-light skin tone +๐Ÿซ…๐Ÿฝ person with crown: medium skin tone +๐Ÿซ…๐Ÿพ person with crown: medium-dark skin tone +๐Ÿซ…๐Ÿฟ person with crown: dark skin tone +๐Ÿคด prince +๐Ÿคด๐Ÿป prince: light skin tone +๐Ÿคด๐Ÿผ prince: medium-light skin tone +๐Ÿคด๐Ÿฝ prince: medium skin tone +๐Ÿคด๐Ÿพ prince: medium-dark skin tone +๐Ÿคด๐Ÿฟ prince: dark skin tone +๐Ÿ‘ธ princess +๐Ÿ‘ธ๐Ÿป princess: light skin tone +๐Ÿ‘ธ๐Ÿผ princess: medium-light skin tone +๐Ÿ‘ธ๐Ÿฝ princess: medium skin tone +๐Ÿ‘ธ๐Ÿพ princess: medium-dark skin tone +๐Ÿ‘ธ๐Ÿฟ princess: dark skin tone +๐Ÿ‘ณ person wearing turban +๐Ÿ‘ณ๐Ÿป person wearing turban: light skin tone +๐Ÿ‘ณ๐Ÿผ person wearing turban: medium-light skin tone +๐Ÿ‘ณ๐Ÿฝ person wearing turban: medium skin tone +๐Ÿ‘ณ๐Ÿพ person wearing turban: medium-dark skin tone +๐Ÿ‘ณ๐Ÿฟ person wearing turban: dark skin tone +๐Ÿ‘ณโ€โ™‚๏ธ man wearing turban +๐Ÿ‘ณโ€โ™‚ man wearing turban +๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ man wearing turban: light skin tone +๐Ÿ‘ณ๐Ÿปโ€โ™‚ man wearing turban: light skin tone +๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ man wearing turban: medium-light skin tone +๐Ÿ‘ณ๐Ÿผโ€โ™‚ man wearing turban: medium-light skin tone +๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ man wearing turban: medium skin tone +๐Ÿ‘ณ๐Ÿฝโ€โ™‚ man wearing turban: medium skin tone +๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ man wearing turban: medium-dark skin tone +๐Ÿ‘ณ๐Ÿพโ€โ™‚ man wearing turban: medium-dark skin tone +๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ man wearing turban: dark skin tone +๐Ÿ‘ณ๐Ÿฟโ€โ™‚ man wearing turban: dark skin tone +๐Ÿ‘ณโ€โ™€๏ธ woman wearing turban +๐Ÿ‘ณโ€โ™€ woman wearing turban +๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ woman wearing turban: light skin tone +๐Ÿ‘ณ๐Ÿปโ€โ™€ woman wearing turban: light skin tone +๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ woman wearing turban: medium-light skin tone +๐Ÿ‘ณ๐Ÿผโ€โ™€ woman wearing turban: medium-light skin tone +๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ woman wearing turban: medium skin tone +๐Ÿ‘ณ๐Ÿฝโ€โ™€ woman wearing turban: medium skin tone +๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ woman wearing turban: medium-dark skin tone +๐Ÿ‘ณ๐Ÿพโ€โ™€ woman wearing turban: medium-dark skin tone +๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ woman wearing turban: dark skin tone +๐Ÿ‘ณ๐Ÿฟโ€โ™€ woman wearing turban: dark skin tone +๐Ÿ‘ฒ person with skullcap +๐Ÿ‘ฒ๐Ÿป person with skullcap: light skin tone +๐Ÿ‘ฒ๐Ÿผ person with skullcap: medium-light skin tone +๐Ÿ‘ฒ๐Ÿฝ person with skullcap: medium skin tone +๐Ÿ‘ฒ๐Ÿพ person with skullcap: medium-dark skin tone +๐Ÿ‘ฒ๐Ÿฟ person with skullcap: dark skin tone +๐Ÿง• woman with headscarf +๐Ÿง•๐Ÿป woman with headscarf: light skin tone +๐Ÿง•๐Ÿผ woman with headscarf: medium-light skin tone +๐Ÿง•๐Ÿฝ woman with headscarf: medium skin tone +๐Ÿง•๐Ÿพ woman with headscarf: medium-dark skin tone +๐Ÿง•๐Ÿฟ woman with headscarf: dark skin tone +๐Ÿคต person in tuxedo +๐Ÿคต๐Ÿป person in tuxedo: light skin tone +๐Ÿคต๐Ÿผ person in tuxedo: medium-light skin tone +๐Ÿคต๐Ÿฝ person in tuxedo: medium skin tone +๐Ÿคต๐Ÿพ person in tuxedo: medium-dark skin tone +๐Ÿคต๐Ÿฟ person in tuxedo: dark skin tone +๐Ÿคตโ€โ™‚๏ธ man in tuxedo +๐Ÿคตโ€โ™‚ man in tuxedo +๐Ÿคต๐Ÿปโ€โ™‚๏ธ man in tuxedo: light skin tone +๐Ÿคต๐Ÿปโ€โ™‚ man in tuxedo: light skin tone +๐Ÿคต๐Ÿผโ€โ™‚๏ธ man in tuxedo: medium-light skin tone +๐Ÿคต๐Ÿผโ€โ™‚ man in tuxedo: medium-light skin tone +๐Ÿคต๐Ÿฝโ€โ™‚๏ธ man in tuxedo: medium skin tone +๐Ÿคต๐Ÿฝโ€โ™‚ man in tuxedo: medium skin tone +๐Ÿคต๐Ÿพโ€โ™‚๏ธ man in tuxedo: medium-dark skin tone +๐Ÿคต๐Ÿพโ€โ™‚ man in tuxedo: medium-dark skin tone +๐Ÿคต๐Ÿฟโ€โ™‚๏ธ man in tuxedo: dark skin tone +๐Ÿคต๐Ÿฟโ€โ™‚ man in tuxedo: dark skin tone +๐Ÿคตโ€โ™€๏ธ woman in tuxedo +๐Ÿคตโ€โ™€ woman in tuxedo +๐Ÿคต๐Ÿปโ€โ™€๏ธ woman in tuxedo: light skin tone +๐Ÿคต๐Ÿปโ€โ™€ woman in tuxedo: light skin tone +๐Ÿคต๐Ÿผโ€โ™€๏ธ woman in tuxedo: medium-light skin tone +๐Ÿคต๐Ÿผโ€โ™€ woman in tuxedo: medium-light skin tone +๐Ÿคต๐Ÿฝโ€โ™€๏ธ woman in tuxedo: medium skin tone +๐Ÿคต๐Ÿฝโ€โ™€ woman in tuxedo: medium skin tone +๐Ÿคต๐Ÿพโ€โ™€๏ธ woman in tuxedo: medium-dark skin tone +๐Ÿคต๐Ÿพโ€โ™€ woman in tuxedo: medium-dark skin tone +๐Ÿคต๐Ÿฟโ€โ™€๏ธ woman in tuxedo: dark skin tone +๐Ÿคต๐Ÿฟโ€โ™€ woman in tuxedo: dark skin tone +๐Ÿ‘ฐ person with veil +๐Ÿ‘ฐ๐Ÿป person with veil: light skin tone +๐Ÿ‘ฐ๐Ÿผ person with veil: medium-light skin tone +๐Ÿ‘ฐ๐Ÿฝ person with veil: medium skin tone +๐Ÿ‘ฐ๐Ÿพ person with veil: medium-dark skin tone +๐Ÿ‘ฐ๐Ÿฟ person with veil: dark skin tone +๐Ÿ‘ฐโ€โ™‚๏ธ man with veil +๐Ÿ‘ฐโ€โ™‚ man with veil +๐Ÿ‘ฐ๐Ÿปโ€โ™‚๏ธ man with veil: light skin tone +๐Ÿ‘ฐ๐Ÿปโ€โ™‚ man with veil: light skin tone +๐Ÿ‘ฐ๐Ÿผโ€โ™‚๏ธ man with veil: medium-light skin tone +๐Ÿ‘ฐ๐Ÿผโ€โ™‚ man with veil: medium-light skin tone +๐Ÿ‘ฐ๐Ÿฝโ€โ™‚๏ธ man with veil: medium skin tone +๐Ÿ‘ฐ๐Ÿฝโ€โ™‚ man with veil: medium skin tone +๐Ÿ‘ฐ๐Ÿพโ€โ™‚๏ธ man with veil: medium-dark skin tone +๐Ÿ‘ฐ๐Ÿพโ€โ™‚ man with veil: medium-dark skin tone +๐Ÿ‘ฐ๐Ÿฟโ€โ™‚๏ธ man with veil: dark skin tone +๐Ÿ‘ฐ๐Ÿฟโ€โ™‚ man with veil: dark skin tone +๐Ÿ‘ฐโ€โ™€๏ธ woman with veil +๐Ÿ‘ฐโ€โ™€ woman with veil +๐Ÿ‘ฐ๐Ÿปโ€โ™€๏ธ woman with veil: light skin tone +๐Ÿ‘ฐ๐Ÿปโ€โ™€ woman with veil: light skin tone +๐Ÿ‘ฐ๐Ÿผโ€โ™€๏ธ woman with veil: medium-light skin tone +๐Ÿ‘ฐ๐Ÿผโ€โ™€ woman with veil: medium-light skin tone +๐Ÿ‘ฐ๐Ÿฝโ€โ™€๏ธ woman with veil: medium skin tone +๐Ÿ‘ฐ๐Ÿฝโ€โ™€ woman with veil: medium skin tone +๐Ÿ‘ฐ๐Ÿพโ€โ™€๏ธ woman with veil: medium-dark skin tone +๐Ÿ‘ฐ๐Ÿพโ€โ™€ woman with veil: medium-dark skin tone +๐Ÿ‘ฐ๐Ÿฟโ€โ™€๏ธ woman with veil: dark skin tone +๐Ÿ‘ฐ๐Ÿฟโ€โ™€ woman with veil: dark skin tone +๐Ÿคฐ pregnant woman +๐Ÿคฐ๐Ÿป pregnant woman: light skin tone +๐Ÿคฐ๐Ÿผ pregnant woman: medium-light skin tone +๐Ÿคฐ๐Ÿฝ pregnant woman: medium skin tone +๐Ÿคฐ๐Ÿพ pregnant woman: medium-dark skin tone +๐Ÿคฐ๐Ÿฟ pregnant woman: dark skin tone +๐Ÿซƒ pregnant man +๐Ÿซƒ๐Ÿป pregnant man: light skin tone +๐Ÿซƒ๐Ÿผ pregnant man: medium-light skin tone +๐Ÿซƒ๐Ÿฝ pregnant man: medium skin tone +๐Ÿซƒ๐Ÿพ pregnant man: medium-dark skin tone +๐Ÿซƒ๐Ÿฟ pregnant man: dark skin tone +๐Ÿซ„ pregnant person +๐Ÿซ„๐Ÿป pregnant person: light skin tone +๐Ÿซ„๐Ÿผ pregnant person: medium-light skin tone +๐Ÿซ„๐Ÿฝ pregnant person: medium skin tone +๐Ÿซ„๐Ÿพ pregnant person: medium-dark skin tone +๐Ÿซ„๐Ÿฟ pregnant person: dark skin tone +๐Ÿคฑ breast-feeding +๐Ÿคฑ๐Ÿป breast-feeding: light skin tone +๐Ÿคฑ๐Ÿผ breast-feeding: medium-light skin tone +๐Ÿคฑ๐Ÿฝ breast-feeding: medium skin tone +๐Ÿคฑ๐Ÿพ breast-feeding: medium-dark skin tone +๐Ÿคฑ๐Ÿฟ breast-feeding: dark skin tone +๐Ÿ‘ฉโ€๐Ÿผ woman feeding baby +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿผ woman feeding baby: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿผ woman feeding baby: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿผ woman feeding baby: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿผ woman feeding baby: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿผ woman feeding baby: dark skin tone +๐Ÿ‘จโ€๐Ÿผ man feeding baby +๐Ÿ‘จ๐Ÿปโ€๐Ÿผ man feeding baby: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿผ man feeding baby: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿผ man feeding baby: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿผ man feeding baby: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿผ man feeding baby: dark skin tone +๐Ÿง‘โ€๐Ÿผ person feeding baby +๐Ÿง‘๐Ÿปโ€๐Ÿผ person feeding baby: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿผ person feeding baby: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿผ person feeding baby: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿผ person feeding baby: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿผ person feeding baby: dark skin tone +๐Ÿ‘ผ baby angel +๐Ÿ‘ผ๐Ÿป baby angel: light skin tone +๐Ÿ‘ผ๐Ÿผ baby angel: medium-light skin tone +๐Ÿ‘ผ๐Ÿฝ baby angel: medium skin tone +๐Ÿ‘ผ๐Ÿพ baby angel: medium-dark skin tone +๐Ÿ‘ผ๐Ÿฟ baby angel: dark skin tone +๐ŸŽ… Santa Claus +๐ŸŽ…๐Ÿป Santa Claus: light skin tone +๐ŸŽ…๐Ÿผ Santa Claus: medium-light skin tone +๐ŸŽ…๐Ÿฝ Santa Claus: medium skin tone +๐ŸŽ…๐Ÿพ Santa Claus: medium-dark skin tone +๐ŸŽ…๐Ÿฟ Santa Claus: dark skin tone +๐Ÿคถ Mrs. Claus +๐Ÿคถ๐Ÿป Mrs. Claus: light skin tone +๐Ÿคถ๐Ÿผ Mrs. Claus: medium-light skin tone +๐Ÿคถ๐Ÿฝ Mrs. Claus: medium skin tone +๐Ÿคถ๐Ÿพ Mrs. Claus: medium-dark skin tone +๐Ÿคถ๐Ÿฟ Mrs. Claus: dark skin tone +๐Ÿง‘โ€๐ŸŽ„ Mx Claus +๐Ÿง‘๐Ÿปโ€๐ŸŽ„ Mx Claus: light skin tone +๐Ÿง‘๐Ÿผโ€๐ŸŽ„ Mx Claus: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐ŸŽ„ Mx Claus: medium skin tone +๐Ÿง‘๐Ÿพโ€๐ŸŽ„ Mx Claus: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐ŸŽ„ Mx Claus: dark skin tone +๐Ÿฆธ superhero +๐Ÿฆธ๐Ÿป superhero: light skin tone +๐Ÿฆธ๐Ÿผ superhero: medium-light skin tone +๐Ÿฆธ๐Ÿฝ superhero: medium skin tone +๐Ÿฆธ๐Ÿพ superhero: medium-dark skin tone +๐Ÿฆธ๐Ÿฟ superhero: dark skin tone +๐Ÿฆธโ€โ™‚๏ธ man superhero +๐Ÿฆธโ€โ™‚ man superhero +๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ man superhero: light skin tone +๐Ÿฆธ๐Ÿปโ€โ™‚ man superhero: light skin tone +๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ man superhero: medium-light skin tone +๐Ÿฆธ๐Ÿผโ€โ™‚ man superhero: medium-light skin tone +๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ man superhero: medium skin tone +๐Ÿฆธ๐Ÿฝโ€โ™‚ man superhero: medium skin tone +๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ man superhero: medium-dark skin tone +๐Ÿฆธ๐Ÿพโ€โ™‚ man superhero: medium-dark skin tone +๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ man superhero: dark skin tone +๐Ÿฆธ๐Ÿฟโ€โ™‚ man superhero: dark skin tone +๐Ÿฆธโ€โ™€๏ธ woman superhero +๐Ÿฆธโ€โ™€ woman superhero +๐Ÿฆธ๐Ÿปโ€โ™€๏ธ woman superhero: light skin tone +๐Ÿฆธ๐Ÿปโ€โ™€ woman superhero: light skin tone +๐Ÿฆธ๐Ÿผโ€โ™€๏ธ woman superhero: medium-light skin tone +๐Ÿฆธ๐Ÿผโ€โ™€ woman superhero: medium-light skin tone +๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ woman superhero: medium skin tone +๐Ÿฆธ๐Ÿฝโ€โ™€ woman superhero: medium skin tone +๐Ÿฆธ๐Ÿพโ€โ™€๏ธ woman superhero: medium-dark skin tone +๐Ÿฆธ๐Ÿพโ€โ™€ woman superhero: medium-dark skin tone +๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ woman superhero: dark skin tone +๐Ÿฆธ๐Ÿฟโ€โ™€ woman superhero: dark skin tone +๐Ÿฆน supervillain +๐Ÿฆน๐Ÿป supervillain: light skin tone +๐Ÿฆน๐Ÿผ supervillain: medium-light skin tone +๐Ÿฆน๐Ÿฝ supervillain: medium skin tone +๐Ÿฆน๐Ÿพ supervillain: medium-dark skin tone +๐Ÿฆน๐Ÿฟ supervillain: dark skin tone +๐Ÿฆนโ€โ™‚๏ธ man supervillain +๐Ÿฆนโ€โ™‚ man supervillain +๐Ÿฆน๐Ÿปโ€โ™‚๏ธ man supervillain: light skin tone +๐Ÿฆน๐Ÿปโ€โ™‚ man supervillain: light skin tone +๐Ÿฆน๐Ÿผโ€โ™‚๏ธ man supervillain: medium-light skin tone +๐Ÿฆน๐Ÿผโ€โ™‚ man supervillain: medium-light skin tone +๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ man supervillain: medium skin tone +๐Ÿฆน๐Ÿฝโ€โ™‚ man supervillain: medium skin tone +๐Ÿฆน๐Ÿพโ€โ™‚๏ธ man supervillain: medium-dark skin tone +๐Ÿฆน๐Ÿพโ€โ™‚ man supervillain: medium-dark skin tone +๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ man supervillain: dark skin tone +๐Ÿฆน๐Ÿฟโ€โ™‚ man supervillain: dark skin tone +๐Ÿฆนโ€โ™€๏ธ woman supervillain +๐Ÿฆนโ€โ™€ woman supervillain +๐Ÿฆน๐Ÿปโ€โ™€๏ธ woman supervillain: light skin tone +๐Ÿฆน๐Ÿปโ€โ™€ woman supervillain: light skin tone +๐Ÿฆน๐Ÿผโ€โ™€๏ธ woman supervillain: medium-light skin tone +๐Ÿฆน๐Ÿผโ€โ™€ woman supervillain: medium-light skin tone +๐Ÿฆน๐Ÿฝโ€โ™€๏ธ woman supervillain: medium skin tone +๐Ÿฆน๐Ÿฝโ€โ™€ woman supervillain: medium skin tone +๐Ÿฆน๐Ÿพโ€โ™€๏ธ woman supervillain: medium-dark skin tone +๐Ÿฆน๐Ÿพโ€โ™€ woman supervillain: medium-dark skin tone +๐Ÿฆน๐Ÿฟโ€โ™€๏ธ woman supervillain: dark skin tone +๐Ÿฆน๐Ÿฟโ€โ™€ woman supervillain: dark skin tone +๐Ÿง™ mage +๐Ÿง™๐Ÿป mage: light skin tone +๐Ÿง™๐Ÿผ mage: medium-light skin tone +๐Ÿง™๐Ÿฝ mage: medium skin tone +๐Ÿง™๐Ÿพ mage: medium-dark skin tone +๐Ÿง™๐Ÿฟ mage: dark skin tone +๐Ÿง™โ€โ™‚๏ธ man mage +๐Ÿง™โ€โ™‚ man mage +๐Ÿง™๐Ÿปโ€โ™‚๏ธ man mage: light skin tone +๐Ÿง™๐Ÿปโ€โ™‚ man mage: light skin tone +๐Ÿง™๐Ÿผโ€โ™‚๏ธ man mage: medium-light skin tone +๐Ÿง™๐Ÿผโ€โ™‚ man mage: medium-light skin tone +๐Ÿง™๐Ÿฝโ€โ™‚๏ธ man mage: medium skin tone +๐Ÿง™๐Ÿฝโ€โ™‚ man mage: medium skin tone +๐Ÿง™๐Ÿพโ€โ™‚๏ธ man mage: medium-dark skin tone +๐Ÿง™๐Ÿพโ€โ™‚ man mage: medium-dark skin tone +๐Ÿง™๐Ÿฟโ€โ™‚๏ธ man mage: dark skin tone +๐Ÿง™๐Ÿฟโ€โ™‚ man mage: dark skin tone +๐Ÿง™โ€โ™€๏ธ woman mage +๐Ÿง™โ€โ™€ woman mage +๐Ÿง™๐Ÿปโ€โ™€๏ธ woman mage: light skin tone +๐Ÿง™๐Ÿปโ€โ™€ woman mage: light skin tone +๐Ÿง™๐Ÿผโ€โ™€๏ธ woman mage: medium-light skin tone +๐Ÿง™๐Ÿผโ€โ™€ woman mage: medium-light skin tone +๐Ÿง™๐Ÿฝโ€โ™€๏ธ woman mage: medium skin tone +๐Ÿง™๐Ÿฝโ€โ™€ woman mage: medium skin tone +๐Ÿง™๐Ÿพโ€โ™€๏ธ woman mage: medium-dark skin tone +๐Ÿง™๐Ÿพโ€โ™€ woman mage: medium-dark skin tone +๐Ÿง™๐Ÿฟโ€โ™€๏ธ woman mage: dark skin tone +๐Ÿง™๐Ÿฟโ€โ™€ woman mage: dark skin tone +๐Ÿงš fairy +๐Ÿงš๐Ÿป fairy: light skin tone +๐Ÿงš๐Ÿผ fairy: medium-light skin tone +๐Ÿงš๐Ÿฝ fairy: medium skin tone +๐Ÿงš๐Ÿพ fairy: medium-dark skin tone +๐Ÿงš๐Ÿฟ fairy: dark skin tone +๐Ÿงšโ€โ™‚๏ธ man fairy +๐Ÿงšโ€โ™‚ man fairy +๐Ÿงš๐Ÿปโ€โ™‚๏ธ man fairy: light skin tone +๐Ÿงš๐Ÿปโ€โ™‚ man fairy: light skin tone +๐Ÿงš๐Ÿผโ€โ™‚๏ธ man fairy: medium-light skin tone +๐Ÿงš๐Ÿผโ€โ™‚ man fairy: medium-light skin tone +๐Ÿงš๐Ÿฝโ€โ™‚๏ธ man fairy: medium skin tone +๐Ÿงš๐Ÿฝโ€โ™‚ man fairy: medium skin tone +๐Ÿงš๐Ÿพโ€โ™‚๏ธ man fairy: medium-dark skin tone +๐Ÿงš๐Ÿพโ€โ™‚ man fairy: medium-dark skin tone +๐Ÿงš๐Ÿฟโ€โ™‚๏ธ man fairy: dark skin tone +๐Ÿงš๐Ÿฟโ€โ™‚ man fairy: dark skin tone +๐Ÿงšโ€โ™€๏ธ woman fairy +๐Ÿงšโ€โ™€ woman fairy +๐Ÿงš๐Ÿปโ€โ™€๏ธ woman fairy: light skin tone +๐Ÿงš๐Ÿปโ€โ™€ woman fairy: light skin tone +๐Ÿงš๐Ÿผโ€โ™€๏ธ woman fairy: medium-light skin tone +๐Ÿงš๐Ÿผโ€โ™€ woman fairy: medium-light skin tone +๐Ÿงš๐Ÿฝโ€โ™€๏ธ woman fairy: medium skin tone +๐Ÿงš๐Ÿฝโ€โ™€ woman fairy: medium skin tone +๐Ÿงš๐Ÿพโ€โ™€๏ธ woman fairy: medium-dark skin tone +๐Ÿงš๐Ÿพโ€โ™€ woman fairy: medium-dark skin tone +๐Ÿงš๐Ÿฟโ€โ™€๏ธ woman fairy: dark skin tone +๐Ÿงš๐Ÿฟโ€โ™€ woman fairy: dark skin tone +๐Ÿง› vampire +๐Ÿง›๐Ÿป vampire: light skin tone +๐Ÿง›๐Ÿผ vampire: medium-light skin tone +๐Ÿง›๐Ÿฝ vampire: medium skin tone +๐Ÿง›๐Ÿพ vampire: medium-dark skin tone +๐Ÿง›๐Ÿฟ vampire: dark skin tone +๐Ÿง›โ€โ™‚๏ธ man vampire +๐Ÿง›โ€โ™‚ man vampire +๐Ÿง›๐Ÿปโ€โ™‚๏ธ man vampire: light skin tone +๐Ÿง›๐Ÿปโ€โ™‚ man vampire: light skin tone +๐Ÿง›๐Ÿผโ€โ™‚๏ธ man vampire: medium-light skin tone +๐Ÿง›๐Ÿผโ€โ™‚ man vampire: medium-light skin tone +๐Ÿง›๐Ÿฝโ€โ™‚๏ธ man vampire: medium skin tone +๐Ÿง›๐Ÿฝโ€โ™‚ man vampire: medium skin tone +๐Ÿง›๐Ÿพโ€โ™‚๏ธ man vampire: medium-dark skin tone +๐Ÿง›๐Ÿพโ€โ™‚ man vampire: medium-dark skin tone +๐Ÿง›๐Ÿฟโ€โ™‚๏ธ man vampire: dark skin tone +๐Ÿง›๐Ÿฟโ€โ™‚ man vampire: dark skin tone +๐Ÿง›โ€โ™€๏ธ woman vampire +๐Ÿง›โ€โ™€ woman vampire +๐Ÿง›๐Ÿปโ€โ™€๏ธ woman vampire: light skin tone +๐Ÿง›๐Ÿปโ€โ™€ woman vampire: light skin tone +๐Ÿง›๐Ÿผโ€โ™€๏ธ woman vampire: medium-light skin tone +๐Ÿง›๐Ÿผโ€โ™€ woman vampire: medium-light skin tone +๐Ÿง›๐Ÿฝโ€โ™€๏ธ woman vampire: medium skin tone +๐Ÿง›๐Ÿฝโ€โ™€ woman vampire: medium skin tone +๐Ÿง›๐Ÿพโ€โ™€๏ธ woman vampire: medium-dark skin tone +๐Ÿง›๐Ÿพโ€โ™€ woman vampire: medium-dark skin tone +๐Ÿง›๐Ÿฟโ€โ™€๏ธ woman vampire: dark skin tone +๐Ÿง›๐Ÿฟโ€โ™€ woman vampire: dark skin tone +๐Ÿงœ merperson +๐Ÿงœ๐Ÿป merperson: light skin tone +๐Ÿงœ๐Ÿผ merperson: medium-light skin tone +๐Ÿงœ๐Ÿฝ merperson: medium skin tone +๐Ÿงœ๐Ÿพ merperson: medium-dark skin tone +๐Ÿงœ๐Ÿฟ merperson: dark skin tone +๐Ÿงœโ€โ™‚๏ธ merman +๐Ÿงœโ€โ™‚ merman +๐Ÿงœ๐Ÿปโ€โ™‚๏ธ merman: light skin tone +๐Ÿงœ๐Ÿปโ€โ™‚ merman: light skin tone +๐Ÿงœ๐Ÿผโ€โ™‚๏ธ merman: medium-light skin tone +๐Ÿงœ๐Ÿผโ€โ™‚ merman: medium-light skin tone +๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ merman: medium skin tone +๐Ÿงœ๐Ÿฝโ€โ™‚ merman: medium skin tone +๐Ÿงœ๐Ÿพโ€โ™‚๏ธ merman: medium-dark skin tone +๐Ÿงœ๐Ÿพโ€โ™‚ merman: medium-dark skin tone +๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ merman: dark skin tone +๐Ÿงœ๐Ÿฟโ€โ™‚ merman: dark skin tone +๐Ÿงœโ€โ™€๏ธ mermaid +๐Ÿงœโ€โ™€ mermaid +๐Ÿงœ๐Ÿปโ€โ™€๏ธ mermaid: light skin tone +๐Ÿงœ๐Ÿปโ€โ™€ mermaid: light skin tone +๐Ÿงœ๐Ÿผโ€โ™€๏ธ mermaid: medium-light skin tone +๐Ÿงœ๐Ÿผโ€โ™€ mermaid: medium-light skin tone +๐Ÿงœ๐Ÿฝโ€โ™€๏ธ mermaid: medium skin tone +๐Ÿงœ๐Ÿฝโ€โ™€ mermaid: medium skin tone +๐Ÿงœ๐Ÿพโ€โ™€๏ธ mermaid: medium-dark skin tone +๐Ÿงœ๐Ÿพโ€โ™€ mermaid: medium-dark skin tone +๐Ÿงœ๐Ÿฟโ€โ™€๏ธ mermaid: dark skin tone +๐Ÿงœ๐Ÿฟโ€โ™€ mermaid: dark skin tone +๐Ÿง elf +๐Ÿง๐Ÿป elf: light skin tone +๐Ÿง๐Ÿผ elf: medium-light skin tone +๐Ÿง๐Ÿฝ elf: medium skin tone +๐Ÿง๐Ÿพ elf: medium-dark skin tone +๐Ÿง๐Ÿฟ elf: dark skin tone +๐Ÿงโ€โ™‚๏ธ man elf +๐Ÿงโ€โ™‚ man elf +๐Ÿง๐Ÿปโ€โ™‚๏ธ man elf: light skin tone +๐Ÿง๐Ÿปโ€โ™‚ man elf: light skin tone +๐Ÿง๐Ÿผโ€โ™‚๏ธ man elf: medium-light skin tone +๐Ÿง๐Ÿผโ€โ™‚ man elf: medium-light skin tone +๐Ÿง๐Ÿฝโ€โ™‚๏ธ man elf: medium skin tone +๐Ÿง๐Ÿฝโ€โ™‚ man elf: medium skin tone +๐Ÿง๐Ÿพโ€โ™‚๏ธ man elf: medium-dark skin tone +๐Ÿง๐Ÿพโ€โ™‚ man elf: medium-dark skin tone +๐Ÿง๐Ÿฟโ€โ™‚๏ธ man elf: dark skin tone +๐Ÿง๐Ÿฟโ€โ™‚ man elf: dark skin tone +๐Ÿงโ€โ™€๏ธ woman elf +๐Ÿงโ€โ™€ woman elf +๐Ÿง๐Ÿปโ€โ™€๏ธ woman elf: light skin tone +๐Ÿง๐Ÿปโ€โ™€ woman elf: light skin tone +๐Ÿง๐Ÿผโ€โ™€๏ธ woman elf: medium-light skin tone +๐Ÿง๐Ÿผโ€โ™€ woman elf: medium-light skin tone +๐Ÿง๐Ÿฝโ€โ™€๏ธ woman elf: medium skin tone +๐Ÿง๐Ÿฝโ€โ™€ woman elf: medium skin tone +๐Ÿง๐Ÿพโ€โ™€๏ธ woman elf: medium-dark skin tone +๐Ÿง๐Ÿพโ€โ™€ woman elf: medium-dark skin tone +๐Ÿง๐Ÿฟโ€โ™€๏ธ woman elf: dark skin tone +๐Ÿง๐Ÿฟโ€โ™€ woman elf: dark skin tone +๐Ÿงž genie +๐Ÿงžโ€โ™‚๏ธ man genie +๐Ÿงžโ€โ™‚ man genie +๐Ÿงžโ€โ™€๏ธ woman genie +๐Ÿงžโ€โ™€ woman genie +๐ŸงŸ zombie +๐ŸงŸโ€โ™‚๏ธ man zombie +๐ŸงŸโ€โ™‚ man zombie +๐ŸงŸโ€โ™€๏ธ woman zombie +๐ŸงŸโ€โ™€ woman zombie +๐ŸงŒ troll +๐Ÿ’† person getting massage +๐Ÿ’†๐Ÿป person getting massage: light skin tone +๐Ÿ’†๐Ÿผ person getting massage: medium-light skin tone +๐Ÿ’†๐Ÿฝ person getting massage: medium skin tone +๐Ÿ’†๐Ÿพ person getting massage: medium-dark skin tone +๐Ÿ’†๐Ÿฟ person getting massage: dark skin tone +๐Ÿ’†โ€โ™‚๏ธ man getting massage +๐Ÿ’†โ€โ™‚ man getting massage +๐Ÿ’†๐Ÿปโ€โ™‚๏ธ man getting massage: light skin tone +๐Ÿ’†๐Ÿปโ€โ™‚ man getting massage: light skin tone +๐Ÿ’†๐Ÿผโ€โ™‚๏ธ man getting massage: medium-light skin tone +๐Ÿ’†๐Ÿผโ€โ™‚ man getting massage: medium-light skin tone +๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ man getting massage: medium skin tone +๐Ÿ’†๐Ÿฝโ€โ™‚ man getting massage: medium skin tone +๐Ÿ’†๐Ÿพโ€โ™‚๏ธ man getting massage: medium-dark skin tone +๐Ÿ’†๐Ÿพโ€โ™‚ man getting massage: medium-dark skin tone +๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ man getting massage: dark skin tone +๐Ÿ’†๐Ÿฟโ€โ™‚ man getting massage: dark skin tone +๐Ÿ’†โ€โ™€๏ธ woman getting massage +๐Ÿ’†โ€โ™€ woman getting massage +๐Ÿ’†๐Ÿปโ€โ™€๏ธ woman getting massage: light skin tone +๐Ÿ’†๐Ÿปโ€โ™€ woman getting massage: light skin tone +๐Ÿ’†๐Ÿผโ€โ™€๏ธ woman getting massage: medium-light skin tone +๐Ÿ’†๐Ÿผโ€โ™€ woman getting massage: medium-light skin tone +๐Ÿ’†๐Ÿฝโ€โ™€๏ธ woman getting massage: medium skin tone +๐Ÿ’†๐Ÿฝโ€โ™€ woman getting massage: medium skin tone +๐Ÿ’†๐Ÿพโ€โ™€๏ธ woman getting massage: medium-dark skin tone +๐Ÿ’†๐Ÿพโ€โ™€ woman getting massage: medium-dark skin tone +๐Ÿ’†๐Ÿฟโ€โ™€๏ธ woman getting massage: dark skin tone +๐Ÿ’†๐Ÿฟโ€โ™€ woman getting massage: dark skin tone +๐Ÿ’‡ person getting haircut +๐Ÿ’‡๐Ÿป person getting haircut: light skin tone +๐Ÿ’‡๐Ÿผ person getting haircut: medium-light skin tone +๐Ÿ’‡๐Ÿฝ person getting haircut: medium skin tone +๐Ÿ’‡๐Ÿพ person getting haircut: medium-dark skin tone +๐Ÿ’‡๐Ÿฟ person getting haircut: dark skin tone +๐Ÿ’‡โ€โ™‚๏ธ man getting haircut +๐Ÿ’‡โ€โ™‚ man getting haircut +๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ man getting haircut: light skin tone +๐Ÿ’‡๐Ÿปโ€โ™‚ man getting haircut: light skin tone +๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ man getting haircut: medium-light skin tone +๐Ÿ’‡๐Ÿผโ€โ™‚ man getting haircut: medium-light skin tone +๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ man getting haircut: medium skin tone +๐Ÿ’‡๐Ÿฝโ€โ™‚ man getting haircut: medium skin tone +๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ man getting haircut: medium-dark skin tone +๐Ÿ’‡๐Ÿพโ€โ™‚ man getting haircut: medium-dark skin tone +๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ man getting haircut: dark skin tone +๐Ÿ’‡๐Ÿฟโ€โ™‚ man getting haircut: dark skin tone +๐Ÿ’‡โ€โ™€๏ธ woman getting haircut +๐Ÿ’‡โ€โ™€ woman getting haircut +๐Ÿ’‡๐Ÿปโ€โ™€๏ธ woman getting haircut: light skin tone +๐Ÿ’‡๐Ÿปโ€โ™€ woman getting haircut: light skin tone +๐Ÿ’‡๐Ÿผโ€โ™€๏ธ woman getting haircut: medium-light skin tone +๐Ÿ’‡๐Ÿผโ€โ™€ woman getting haircut: medium-light skin tone +๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ woman getting haircut: medium skin tone +๐Ÿ’‡๐Ÿฝโ€โ™€ woman getting haircut: medium skin tone +๐Ÿ’‡๐Ÿพโ€โ™€๏ธ woman getting haircut: medium-dark skin tone +๐Ÿ’‡๐Ÿพโ€โ™€ woman getting haircut: medium-dark skin tone +๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ woman getting haircut: dark skin tone +๐Ÿ’‡๐Ÿฟโ€โ™€ woman getting haircut: dark skin tone +๐Ÿšถ person walking +๐Ÿšถ๐Ÿป person walking: light skin tone +๐Ÿšถ๐Ÿผ person walking: medium-light skin tone +๐Ÿšถ๐Ÿฝ person walking: medium skin tone +๐Ÿšถ๐Ÿพ person walking: medium-dark skin tone +๐Ÿšถ๐Ÿฟ person walking: dark skin tone +๐Ÿšถโ€โ™‚๏ธ man walking +๐Ÿšถโ€โ™‚ man walking +๐Ÿšถ๐Ÿปโ€โ™‚๏ธ man walking: light skin tone +๐Ÿšถ๐Ÿปโ€โ™‚ man walking: light skin tone +๐Ÿšถ๐Ÿผโ€โ™‚๏ธ man walking: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™‚ man walking: medium-light skin tone +๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ man walking: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™‚ man walking: medium skin tone +๐Ÿšถ๐Ÿพโ€โ™‚๏ธ man walking: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™‚ man walking: medium-dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ man walking: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™‚ man walking: dark skin tone +๐Ÿšถโ€โ™€๏ธ woman walking +๐Ÿšถโ€โ™€ woman walking +๐Ÿšถ๐Ÿปโ€โ™€๏ธ woman walking: light skin tone +๐Ÿšถ๐Ÿปโ€โ™€ woman walking: light skin tone +๐Ÿšถ๐Ÿผโ€โ™€๏ธ woman walking: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™€ woman walking: medium-light skin tone +๐Ÿšถ๐Ÿฝโ€โ™€๏ธ woman walking: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™€ woman walking: medium skin tone +๐Ÿšถ๐Ÿพโ€โ™€๏ธ woman walking: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™€ woman walking: medium-dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™€๏ธ woman walking: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™€ woman walking: dark skin tone +๐Ÿšถโ€โžก๏ธ person walking facing right +๐Ÿšถโ€โžก person walking facing right +๐Ÿšถ๐Ÿปโ€โžก๏ธ person walking facing right: light skin tone +๐Ÿšถ๐Ÿปโ€โžก person walking facing right: light skin tone +๐Ÿšถ๐Ÿผโ€โžก๏ธ person walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โžก person walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿฝโ€โžก๏ธ person walking facing right: medium skin tone +๐Ÿšถ๐Ÿฝโ€โžก person walking facing right: medium skin tone +๐Ÿšถ๐Ÿพโ€โžก๏ธ person walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โžก person walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿฟโ€โžก๏ธ person walking facing right: dark skin tone +๐Ÿšถ๐Ÿฟโ€โžก person walking facing right: dark skin tone +๐Ÿšถโ€โ™€๏ธโ€โžก๏ธ woman walking facing right +๐Ÿšถโ€โ™€โ€โžก๏ธ woman walking facing right +๐Ÿšถโ€โ™€๏ธโ€โžก woman walking facing right +๐Ÿšถโ€โ™€โ€โžก woman walking facing right +๐Ÿšถ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: light skin tone +๐Ÿšถ๐Ÿปโ€โ™€โ€โžก๏ธ woman walking facing right: light skin tone +๐Ÿšถ๐Ÿปโ€โ™€๏ธโ€โžก woman walking facing right: light skin tone +๐Ÿšถ๐Ÿปโ€โ™€โ€โžก woman walking facing right: light skin tone +๐Ÿšถ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™€โ€โžก๏ธ woman walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™€๏ธโ€โžก woman walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™€โ€โžก woman walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™€โ€โžก๏ธ woman walking facing right: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™€๏ธโ€โžก woman walking facing right: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™€โ€โžก woman walking facing right: medium skin tone +๐Ÿšถ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™€โ€โžก๏ธ woman walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™€๏ธโ€โžก woman walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™€โ€โžก woman walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™€โ€โžก๏ธ woman walking facing right: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™€๏ธโ€โžก woman walking facing right: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™€โ€โžก woman walking facing right: dark skin tone +๐Ÿšถโ€โ™‚๏ธโ€โžก๏ธ man walking facing right +๐Ÿšถโ€โ™‚โ€โžก๏ธ man walking facing right +๐Ÿšถโ€โ™‚๏ธโ€โžก man walking facing right +๐Ÿšถโ€โ™‚โ€โžก man walking facing right +๐Ÿšถ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: light skin tone +๐Ÿšถ๐Ÿปโ€โ™‚โ€โžก๏ธ man walking facing right: light skin tone +๐Ÿšถ๐Ÿปโ€โ™‚๏ธโ€โžก man walking facing right: light skin tone +๐Ÿšถ๐Ÿปโ€โ™‚โ€โžก man walking facing right: light skin tone +๐Ÿšถ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™‚โ€โžก๏ธ man walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™‚๏ธโ€โžก man walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿผโ€โ™‚โ€โžก man walking facing right: medium-light skin tone +๐Ÿšถ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™‚โ€โžก๏ธ man walking facing right: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™‚๏ธโ€โžก man walking facing right: medium skin tone +๐Ÿšถ๐Ÿฝโ€โ™‚โ€โžก man walking facing right: medium skin tone +๐Ÿšถ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™‚โ€โžก๏ธ man walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™‚๏ธโ€โžก man walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿพโ€โ™‚โ€โžก man walking facing right: medium-dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™‚โ€โžก๏ธ man walking facing right: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™‚๏ธโ€โžก man walking facing right: dark skin tone +๐Ÿšถ๐Ÿฟโ€โ™‚โ€โžก man walking facing right: dark skin tone +๐Ÿง person standing +๐Ÿง๐Ÿป person standing: light skin tone +๐Ÿง๐Ÿผ person standing: medium-light skin tone +๐Ÿง๐Ÿฝ person standing: medium skin tone +๐Ÿง๐Ÿพ person standing: medium-dark skin tone +๐Ÿง๐Ÿฟ person standing: dark skin tone +๐Ÿงโ€โ™‚๏ธ man standing +๐Ÿงโ€โ™‚ man standing +๐Ÿง๐Ÿปโ€โ™‚๏ธ man standing: light skin tone +๐Ÿง๐Ÿปโ€โ™‚ man standing: light skin tone +๐Ÿง๐Ÿผโ€โ™‚๏ธ man standing: medium-light skin tone +๐Ÿง๐Ÿผโ€โ™‚ man standing: medium-light skin tone +๐Ÿง๐Ÿฝโ€โ™‚๏ธ man standing: medium skin tone +๐Ÿง๐Ÿฝโ€โ™‚ man standing: medium skin tone +๐Ÿง๐Ÿพโ€โ™‚๏ธ man standing: medium-dark skin tone +๐Ÿง๐Ÿพโ€โ™‚ man standing: medium-dark skin tone +๐Ÿง๐Ÿฟโ€โ™‚๏ธ man standing: dark skin tone +๐Ÿง๐Ÿฟโ€โ™‚ man standing: dark skin tone +๐Ÿงโ€โ™€๏ธ woman standing +๐Ÿงโ€โ™€ woman standing +๐Ÿง๐Ÿปโ€โ™€๏ธ woman standing: light skin tone +๐Ÿง๐Ÿปโ€โ™€ woman standing: light skin tone +๐Ÿง๐Ÿผโ€โ™€๏ธ woman standing: medium-light skin tone +๐Ÿง๐Ÿผโ€โ™€ woman standing: medium-light skin tone +๐Ÿง๐Ÿฝโ€โ™€๏ธ woman standing: medium skin tone +๐Ÿง๐Ÿฝโ€โ™€ woman standing: medium skin tone +๐Ÿง๐Ÿพโ€โ™€๏ธ woman standing: medium-dark skin tone +๐Ÿง๐Ÿพโ€โ™€ woman standing: medium-dark skin tone +๐Ÿง๐Ÿฟโ€โ™€๏ธ woman standing: dark skin tone +๐Ÿง๐Ÿฟโ€โ™€ woman standing: dark skin tone +๐ŸงŽ person kneeling +๐ŸงŽ๐Ÿป person kneeling: light skin tone +๐ŸงŽ๐Ÿผ person kneeling: medium-light skin tone +๐ŸงŽ๐Ÿฝ person kneeling: medium skin tone +๐ŸงŽ๐Ÿพ person kneeling: medium-dark skin tone +๐ŸงŽ๐Ÿฟ person kneeling: dark skin tone +๐ŸงŽโ€โ™‚๏ธ man kneeling +๐ŸงŽโ€โ™‚ man kneeling +๐ŸงŽ๐Ÿปโ€โ™‚๏ธ man kneeling: light skin tone +๐ŸงŽ๐Ÿปโ€โ™‚ man kneeling: light skin tone +๐ŸงŽ๐Ÿผโ€โ™‚๏ธ man kneeling: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™‚ man kneeling: medium-light skin tone +๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ man kneeling: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™‚ man kneeling: medium skin tone +๐ŸงŽ๐Ÿพโ€โ™‚๏ธ man kneeling: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™‚ man kneeling: medium-dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ man kneeling: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™‚ man kneeling: dark skin tone +๐ŸงŽโ€โ™€๏ธ woman kneeling +๐ŸงŽโ€โ™€ woman kneeling +๐ŸงŽ๐Ÿปโ€โ™€๏ธ woman kneeling: light skin tone +๐ŸงŽ๐Ÿปโ€โ™€ woman kneeling: light skin tone +๐ŸงŽ๐Ÿผโ€โ™€๏ธ woman kneeling: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™€ woman kneeling: medium-light skin tone +๐ŸงŽ๐Ÿฝโ€โ™€๏ธ woman kneeling: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™€ woman kneeling: medium skin tone +๐ŸงŽ๐Ÿพโ€โ™€๏ธ woman kneeling: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™€ woman kneeling: medium-dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™€๏ธ woman kneeling: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™€ woman kneeling: dark skin tone +๐ŸงŽโ€โžก๏ธ person kneeling facing right +๐ŸงŽโ€โžก person kneeling facing right +๐ŸงŽ๐Ÿปโ€โžก๏ธ person kneeling facing right: light skin tone +๐ŸงŽ๐Ÿปโ€โžก person kneeling facing right: light skin tone +๐ŸงŽ๐Ÿผโ€โžก๏ธ person kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โžก person kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿฝโ€โžก๏ธ person kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿฝโ€โžก person kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿพโ€โžก๏ธ person kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โžก person kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿฟโ€โžก๏ธ person kneeling facing right: dark skin tone +๐ŸงŽ๐Ÿฟโ€โžก person kneeling facing right: dark skin tone +๐ŸงŽโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right +๐ŸงŽโ€โ™€โ€โžก๏ธ woman kneeling facing right +๐ŸงŽโ€โ™€๏ธโ€โžก woman kneeling facing right +๐ŸงŽโ€โ™€โ€โžก woman kneeling facing right +๐ŸงŽ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: light skin tone +๐ŸงŽ๐Ÿปโ€โ™€โ€โžก๏ธ woman kneeling facing right: light skin tone +๐ŸงŽ๐Ÿปโ€โ™€๏ธโ€โžก woman kneeling facing right: light skin tone +๐ŸงŽ๐Ÿปโ€โ™€โ€โžก woman kneeling facing right: light skin tone +๐ŸงŽ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™€โ€โžก๏ธ woman kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™€๏ธโ€โžก woman kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™€โ€โžก woman kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™€โ€โžก๏ธ woman kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™€๏ธโ€โžก woman kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™€โ€โžก woman kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™€โ€โžก๏ธ woman kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™€๏ธโ€โžก woman kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™€โ€โžก woman kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™€โ€โžก๏ธ woman kneeling facing right: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™€๏ธโ€โžก woman kneeling facing right: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™€โ€โžก woman kneeling facing right: dark skin tone +๐ŸงŽโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right +๐ŸงŽโ€โ™‚โ€โžก๏ธ man kneeling facing right +๐ŸงŽโ€โ™‚๏ธโ€โžก man kneeling facing right +๐ŸงŽโ€โ™‚โ€โžก man kneeling facing right +๐ŸงŽ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: light skin tone +๐ŸงŽ๐Ÿปโ€โ™‚โ€โžก๏ธ man kneeling facing right: light skin tone +๐ŸงŽ๐Ÿปโ€โ™‚๏ธโ€โžก man kneeling facing right: light skin tone +๐ŸงŽ๐Ÿปโ€โ™‚โ€โžก man kneeling facing right: light skin tone +๐ŸงŽ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™‚โ€โžก๏ธ man kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™‚๏ธโ€โžก man kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿผโ€โ™‚โ€โžก man kneeling facing right: medium-light skin tone +๐ŸงŽ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™‚โ€โžก๏ธ man kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™‚๏ธโ€โžก man kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿฝโ€โ™‚โ€โžก man kneeling facing right: medium skin tone +๐ŸงŽ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™‚โ€โžก๏ธ man kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™‚๏ธโ€โžก man kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿพโ€โ™‚โ€โžก man kneeling facing right: medium-dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™‚โ€โžก๏ธ man kneeling facing right: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™‚๏ธโ€โžก man kneeling facing right: dark skin tone +๐ŸงŽ๐Ÿฟโ€โ™‚โ€โžก man kneeling facing right: dark skin tone +๐Ÿง‘โ€๐Ÿฆฏ person with white cane +๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ person with white cane: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ person with white cane: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ person with white cane: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ person with white cane: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ person with white cane: dark skin tone +๐Ÿง‘โ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right +๐Ÿง‘โ€๐Ÿฆฏโ€โžก person with white cane facing right +๐Ÿง‘๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: light skin tone +๐Ÿง‘๐Ÿปโ€๐Ÿฆฏโ€โžก person with white cane facing right: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: medium-light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆฏโ€โžก person with white cane facing right: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: medium skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏโ€โžก person with white cane facing right: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: medium-dark skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆฏโ€โžก person with white cane facing right: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏโ€โžก person with white cane facing right: dark skin tone +๐Ÿ‘จโ€๐Ÿฆฏ man with white cane +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ man with white cane: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ man with white cane: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ man with white cane: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ man with white cane: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ man with white cane: dark skin tone +๐Ÿ‘จโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right +๐Ÿ‘จโ€๐Ÿฆฏโ€โžก man with white cane facing right +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: light skin tone +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏโ€โžก man with white cane facing right: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏโ€โžก man with white cane facing right: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: medium skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏโ€โžก man with white cane facing right: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏโ€โžก man with white cane facing right: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏโ€โžก man with white cane facing right: dark skin tone +๐Ÿ‘ฉโ€๐Ÿฆฏ woman with white cane +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ woman with white cane: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ woman with white cane: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ woman with white cane: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ woman with white cane: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ woman with white cane: dark skin tone +๐Ÿ‘ฉโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right +๐Ÿ‘ฉโ€๐Ÿฆฏโ€โžก woman with white cane facing right +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏโ€โžก woman with white cane facing right: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏโ€โžก woman with white cane facing right: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏโ€โžก woman with white cane facing right: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏโ€โžก woman with white cane facing right: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏโ€โžก woman with white cane facing right: dark skin tone +๐Ÿง‘โ€๐Ÿฆผ person in motorized wheelchair +๐Ÿง‘๐Ÿปโ€๐Ÿฆผ person in motorized wheelchair: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆผ person in motorized wheelchair: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ person in motorized wheelchair: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆผ person in motorized wheelchair: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ person in motorized wheelchair: dark skin tone +๐Ÿง‘โ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right +๐Ÿง‘โ€๐Ÿฆผโ€โžก person in motorized wheelchair facing right +๐Ÿง‘๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: light skin tone +๐Ÿง‘๐Ÿปโ€๐Ÿฆผโ€โžก person in motorized wheelchair facing right: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: medium-light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆผโ€โžก person in motorized wheelchair facing right: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: medium skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆผโ€โžก person in motorized wheelchair facing right: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: medium-dark skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆผโ€โžก person in motorized wheelchair facing right: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆผโ€โžก person in motorized wheelchair facing right: dark skin tone +๐Ÿ‘จโ€๐Ÿฆผ man in motorized wheelchair +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ man in motorized wheelchair: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ man in motorized wheelchair: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ man in motorized wheelchair: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ man in motorized wheelchair: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ man in motorized wheelchair: dark skin tone +๐Ÿ‘จโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right +๐Ÿ‘จโ€๐Ÿฆผโ€โžก man in motorized wheelchair facing right +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: light skin tone +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผโ€โžก man in motorized wheelchair facing right: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผโ€โžก man in motorized wheelchair facing right: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: medium skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผโ€โžก man in motorized wheelchair facing right: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผโ€โžก man in motorized wheelchair facing right: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผโ€โžก man in motorized wheelchair facing right: dark skin tone +๐Ÿ‘ฉโ€๐Ÿฆผ woman in motorized wheelchair +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ woman in motorized wheelchair: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ woman in motorized wheelchair: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ woman in motorized wheelchair: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ woman in motorized wheelchair: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ woman in motorized wheelchair: dark skin tone +๐Ÿ‘ฉโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right +๐Ÿ‘ฉโ€๐Ÿฆผโ€โžก woman in motorized wheelchair facing right +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผโ€โžก woman in motorized wheelchair facing right: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผโ€โžก woman in motorized wheelchair facing right: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผโ€โžก woman in motorized wheelchair facing right: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผโ€โžก woman in motorized wheelchair facing right: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผโ€โžก woman in motorized wheelchair facing right: dark skin tone +๐Ÿง‘โ€๐Ÿฆฝ person in manual wheelchair +๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ person in manual wheelchair: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ person in manual wheelchair: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ person in manual wheelchair: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ person in manual wheelchair: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ person in manual wheelchair: dark skin tone +๐Ÿง‘โ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right +๐Ÿง‘โ€๐Ÿฆฝโ€โžก person in manual wheelchair facing right +๐Ÿง‘๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: light skin tone +๐Ÿง‘๐Ÿปโ€๐Ÿฆฝโ€โžก person in manual wheelchair facing right: light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: medium-light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿฆฝโ€โžก person in manual wheelchair facing right: medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: medium skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝโ€โžก person in manual wheelchair facing right: medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: medium-dark skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿฆฝโ€โžก person in manual wheelchair facing right: medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝโ€โžก person in manual wheelchair facing right: dark skin tone +๐Ÿ‘จโ€๐Ÿฆฝ man in manual wheelchair +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ man in manual wheelchair: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ man in manual wheelchair: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ man in manual wheelchair: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ man in manual wheelchair: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ man in manual wheelchair: dark skin tone +๐Ÿ‘จโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right +๐Ÿ‘จโ€๐Ÿฆฝโ€โžก man in manual wheelchair facing right +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: light skin tone +๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝโ€โžก man in manual wheelchair facing right: light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝโ€โžก man in manual wheelchair facing right: medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: medium skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝโ€โžก man in manual wheelchair facing right: medium skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝโ€โžก man in manual wheelchair facing right: medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝโ€โžก man in manual wheelchair facing right: dark skin tone +๐Ÿ‘ฉโ€๐Ÿฆฝ woman in manual wheelchair +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ woman in manual wheelchair: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ woman in manual wheelchair: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ woman in manual wheelchair: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ woman in manual wheelchair: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ woman in manual wheelchair: dark skin tone +๐Ÿ‘ฉโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right +๐Ÿ‘ฉโ€๐Ÿฆฝโ€โžก woman in manual wheelchair facing right +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝโ€โžก woman in manual wheelchair facing right: light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝโ€โžก woman in manual wheelchair facing right: medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝโ€โžก woman in manual wheelchair facing right: medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝโ€โžก woman in manual wheelchair facing right: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝโ€โžก woman in manual wheelchair facing right: dark skin tone +๐Ÿƒ person running +๐Ÿƒ๐Ÿป person running: light skin tone +๐Ÿƒ๐Ÿผ person running: medium-light skin tone +๐Ÿƒ๐Ÿฝ person running: medium skin tone +๐Ÿƒ๐Ÿพ person running: medium-dark skin tone +๐Ÿƒ๐Ÿฟ person running: dark skin tone +๐Ÿƒโ€โ™‚๏ธ man running +๐Ÿƒโ€โ™‚ man running +๐Ÿƒ๐Ÿปโ€โ™‚๏ธ man running: light skin tone +๐Ÿƒ๐Ÿปโ€โ™‚ man running: light skin tone +๐Ÿƒ๐Ÿผโ€โ™‚๏ธ man running: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™‚ man running: medium-light skin tone +๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ man running: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™‚ man running: medium skin tone +๐Ÿƒ๐Ÿพโ€โ™‚๏ธ man running: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™‚ man running: medium-dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ man running: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™‚ man running: dark skin tone +๐Ÿƒโ€โ™€๏ธ woman running +๐Ÿƒโ€โ™€ woman running +๐Ÿƒ๐Ÿปโ€โ™€๏ธ woman running: light skin tone +๐Ÿƒ๐Ÿปโ€โ™€ woman running: light skin tone +๐Ÿƒ๐Ÿผโ€โ™€๏ธ woman running: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™€ woman running: medium-light skin tone +๐Ÿƒ๐Ÿฝโ€โ™€๏ธ woman running: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™€ woman running: medium skin tone +๐Ÿƒ๐Ÿพโ€โ™€๏ธ woman running: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™€ woman running: medium-dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™€๏ธ woman running: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™€ woman running: dark skin tone +๐Ÿƒโ€โžก๏ธ person running facing right +๐Ÿƒโ€โžก person running facing right +๐Ÿƒ๐Ÿปโ€โžก๏ธ person running facing right: light skin tone +๐Ÿƒ๐Ÿปโ€โžก person running facing right: light skin tone +๐Ÿƒ๐Ÿผโ€โžก๏ธ person running facing right: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โžก person running facing right: medium-light skin tone +๐Ÿƒ๐Ÿฝโ€โžก๏ธ person running facing right: medium skin tone +๐Ÿƒ๐Ÿฝโ€โžก person running facing right: medium skin tone +๐Ÿƒ๐Ÿพโ€โžก๏ธ person running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โžก person running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿฟโ€โžก๏ธ person running facing right: dark skin tone +๐Ÿƒ๐Ÿฟโ€โžก person running facing right: dark skin tone +๐Ÿƒโ€โ™€๏ธโ€โžก๏ธ woman running facing right +๐Ÿƒโ€โ™€โ€โžก๏ธ woman running facing right +๐Ÿƒโ€โ™€๏ธโ€โžก woman running facing right +๐Ÿƒโ€โ™€โ€โžก woman running facing right +๐Ÿƒ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ woman running facing right: light skin tone +๐Ÿƒ๐Ÿปโ€โ™€โ€โžก๏ธ woman running facing right: light skin tone +๐Ÿƒ๐Ÿปโ€โ™€๏ธโ€โžก woman running facing right: light skin tone +๐Ÿƒ๐Ÿปโ€โ™€โ€โžก woman running facing right: light skin tone +๐Ÿƒ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ woman running facing right: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™€โ€โžก๏ธ woman running facing right: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™€๏ธโ€โžก woman running facing right: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™€โ€โžก woman running facing right: medium-light skin tone +๐Ÿƒ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ woman running facing right: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™€โ€โžก๏ธ woman running facing right: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™€๏ธโ€โžก woman running facing right: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™€โ€โžก woman running facing right: medium skin tone +๐Ÿƒ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ woman running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™€โ€โžก๏ธ woman running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™€๏ธโ€โžก woman running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™€โ€โžก woman running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ woman running facing right: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™€โ€โžก๏ธ woman running facing right: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™€๏ธโ€โžก woman running facing right: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™€โ€โžก woman running facing right: dark skin tone +๐Ÿƒโ€โ™‚๏ธโ€โžก๏ธ man running facing right +๐Ÿƒโ€โ™‚โ€โžก๏ธ man running facing right +๐Ÿƒโ€โ™‚๏ธโ€โžก man running facing right +๐Ÿƒโ€โ™‚โ€โžก man running facing right +๐Ÿƒ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ man running facing right: light skin tone +๐Ÿƒ๐Ÿปโ€โ™‚โ€โžก๏ธ man running facing right: light skin tone +๐Ÿƒ๐Ÿปโ€โ™‚๏ธโ€โžก man running facing right: light skin tone +๐Ÿƒ๐Ÿปโ€โ™‚โ€โžก man running facing right: light skin tone +๐Ÿƒ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ man running facing right: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™‚โ€โžก๏ธ man running facing right: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™‚๏ธโ€โžก man running facing right: medium-light skin tone +๐Ÿƒ๐Ÿผโ€โ™‚โ€โžก man running facing right: medium-light skin tone +๐Ÿƒ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ man running facing right: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™‚โ€โžก๏ธ man running facing right: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™‚๏ธโ€โžก man running facing right: medium skin tone +๐Ÿƒ๐Ÿฝโ€โ™‚โ€โžก man running facing right: medium skin tone +๐Ÿƒ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ man running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™‚โ€โžก๏ธ man running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™‚๏ธโ€โžก man running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿพโ€โ™‚โ€โžก man running facing right: medium-dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ man running facing right: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™‚โ€โžก๏ธ man running facing right: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™‚๏ธโ€โžก man running facing right: dark skin tone +๐Ÿƒ๐Ÿฟโ€โ™‚โ€โžก man running facing right: dark skin tone +๐Ÿ’ƒ woman dancing +๐Ÿ’ƒ๐Ÿป woman dancing: light skin tone +๐Ÿ’ƒ๐Ÿผ woman dancing: medium-light skin tone +๐Ÿ’ƒ๐Ÿฝ woman dancing: medium skin tone +๐Ÿ’ƒ๐Ÿพ woman dancing: medium-dark skin tone +๐Ÿ’ƒ๐Ÿฟ woman dancing: dark skin tone +๐Ÿ•บ man dancing +๐Ÿ•บ๐Ÿป man dancing: light skin tone +๐Ÿ•บ๐Ÿผ man dancing: medium-light skin tone +๐Ÿ•บ๐Ÿฝ man dancing: medium skin tone +๐Ÿ•บ๐Ÿพ man dancing: medium-dark skin tone +๐Ÿ•บ๐Ÿฟ man dancing: dark skin tone +๐Ÿ•ด๏ธ person in suit levitating +๐Ÿ•ด person in suit levitating +๐Ÿ•ด๐Ÿป person in suit levitating: light skin tone +๐Ÿ•ด๐Ÿผ person in suit levitating: medium-light skin tone +๐Ÿ•ด๐Ÿฝ person in suit levitating: medium skin tone +๐Ÿ•ด๐Ÿพ person in suit levitating: medium-dark skin tone +๐Ÿ•ด๐Ÿฟ person in suit levitating: dark skin tone +๐Ÿ‘ฏ people with bunny ears +๐Ÿ‘ฏโ€โ™‚๏ธ men with bunny ears +๐Ÿ‘ฏโ€โ™‚ men with bunny ears +๐Ÿ‘ฏโ€โ™€๏ธ women with bunny ears +๐Ÿ‘ฏโ€โ™€ women with bunny ears +๐Ÿง– person in steamy room +๐Ÿง–๐Ÿป person in steamy room: light skin tone +๐Ÿง–๐Ÿผ person in steamy room: medium-light skin tone +๐Ÿง–๐Ÿฝ person in steamy room: medium skin tone +๐Ÿง–๐Ÿพ person in steamy room: medium-dark skin tone +๐Ÿง–๐Ÿฟ person in steamy room: dark skin tone +๐Ÿง–โ€โ™‚๏ธ man in steamy room +๐Ÿง–โ€โ™‚ man in steamy room +๐Ÿง–๐Ÿปโ€โ™‚๏ธ man in steamy room: light skin tone +๐Ÿง–๐Ÿปโ€โ™‚ man in steamy room: light skin tone +๐Ÿง–๐Ÿผโ€โ™‚๏ธ man in steamy room: medium-light skin tone +๐Ÿง–๐Ÿผโ€โ™‚ man in steamy room: medium-light skin tone +๐Ÿง–๐Ÿฝโ€โ™‚๏ธ man in steamy room: medium skin tone +๐Ÿง–๐Ÿฝโ€โ™‚ man in steamy room: medium skin tone +๐Ÿง–๐Ÿพโ€โ™‚๏ธ man in steamy room: medium-dark skin tone +๐Ÿง–๐Ÿพโ€โ™‚ man in steamy room: medium-dark skin tone +๐Ÿง–๐Ÿฟโ€โ™‚๏ธ man in steamy room: dark skin tone +๐Ÿง–๐Ÿฟโ€โ™‚ man in steamy room: dark skin tone +๐Ÿง–โ€โ™€๏ธ woman in steamy room +๐Ÿง–โ€โ™€ woman in steamy room +๐Ÿง–๐Ÿปโ€โ™€๏ธ woman in steamy room: light skin tone +๐Ÿง–๐Ÿปโ€โ™€ woman in steamy room: light skin tone +๐Ÿง–๐Ÿผโ€โ™€๏ธ woman in steamy room: medium-light skin tone +๐Ÿง–๐Ÿผโ€โ™€ woman in steamy room: medium-light skin tone +๐Ÿง–๐Ÿฝโ€โ™€๏ธ woman in steamy room: medium skin tone +๐Ÿง–๐Ÿฝโ€โ™€ woman in steamy room: medium skin tone +๐Ÿง–๐Ÿพโ€โ™€๏ธ woman in steamy room: medium-dark skin tone +๐Ÿง–๐Ÿพโ€โ™€ woman in steamy room: medium-dark skin tone +๐Ÿง–๐Ÿฟโ€โ™€๏ธ woman in steamy room: dark skin tone +๐Ÿง–๐Ÿฟโ€โ™€ woman in steamy room: dark skin tone +๐Ÿง— person climbing +๐Ÿง—๐Ÿป person climbing: light skin tone +๐Ÿง—๐Ÿผ person climbing: medium-light skin tone +๐Ÿง—๐Ÿฝ person climbing: medium skin tone +๐Ÿง—๐Ÿพ person climbing: medium-dark skin tone +๐Ÿง—๐Ÿฟ person climbing: dark skin tone +๐Ÿง—โ€โ™‚๏ธ man climbing +๐Ÿง—โ€โ™‚ man climbing +๐Ÿง—๐Ÿปโ€โ™‚๏ธ man climbing: light skin tone +๐Ÿง—๐Ÿปโ€โ™‚ man climbing: light skin tone +๐Ÿง—๐Ÿผโ€โ™‚๏ธ man climbing: medium-light skin tone +๐Ÿง—๐Ÿผโ€โ™‚ man climbing: medium-light skin tone +๐Ÿง—๐Ÿฝโ€โ™‚๏ธ man climbing: medium skin tone +๐Ÿง—๐Ÿฝโ€โ™‚ man climbing: medium skin tone +๐Ÿง—๐Ÿพโ€โ™‚๏ธ man climbing: medium-dark skin tone +๐Ÿง—๐Ÿพโ€โ™‚ man climbing: medium-dark skin tone +๐Ÿง—๐Ÿฟโ€โ™‚๏ธ man climbing: dark skin tone +๐Ÿง—๐Ÿฟโ€โ™‚ man climbing: dark skin tone +๐Ÿง—โ€โ™€๏ธ woman climbing +๐Ÿง—โ€โ™€ woman climbing +๐Ÿง—๐Ÿปโ€โ™€๏ธ woman climbing: light skin tone +๐Ÿง—๐Ÿปโ€โ™€ woman climbing: light skin tone +๐Ÿง—๐Ÿผโ€โ™€๏ธ woman climbing: medium-light skin tone +๐Ÿง—๐Ÿผโ€โ™€ woman climbing: medium-light skin tone +๐Ÿง—๐Ÿฝโ€โ™€๏ธ woman climbing: medium skin tone +๐Ÿง—๐Ÿฝโ€โ™€ woman climbing: medium skin tone +๐Ÿง—๐Ÿพโ€โ™€๏ธ woman climbing: medium-dark skin tone +๐Ÿง—๐Ÿพโ€โ™€ woman climbing: medium-dark skin tone +๐Ÿง—๐Ÿฟโ€โ™€๏ธ woman climbing: dark skin tone +๐Ÿง—๐Ÿฟโ€โ™€ woman climbing: dark skin tone +๐Ÿคบ person fencing +๐Ÿ‡ horse racing +๐Ÿ‡๐Ÿป horse racing: light skin tone +๐Ÿ‡๐Ÿผ horse racing: medium-light skin tone +๐Ÿ‡๐Ÿฝ horse racing: medium skin tone +๐Ÿ‡๐Ÿพ horse racing: medium-dark skin tone +๐Ÿ‡๐Ÿฟ horse racing: dark skin tone +โ›ท๏ธ skier +โ›ท skier +๐Ÿ‚ snowboarder +๐Ÿ‚๐Ÿป snowboarder: light skin tone +๐Ÿ‚๐Ÿผ snowboarder: medium-light skin tone +๐Ÿ‚๐Ÿฝ snowboarder: medium skin tone +๐Ÿ‚๐Ÿพ snowboarder: medium-dark skin tone +๐Ÿ‚๐Ÿฟ snowboarder: dark skin tone +๐ŸŒ๏ธ person golfing +๐ŸŒ person golfing +๐ŸŒ๐Ÿป person golfing: light skin tone +๐ŸŒ๐Ÿผ person golfing: medium-light skin tone +๐ŸŒ๐Ÿฝ person golfing: medium skin tone +๐ŸŒ๐Ÿพ person golfing: medium-dark skin tone +๐ŸŒ๐Ÿฟ person golfing: dark skin tone +๐ŸŒ๏ธโ€โ™‚๏ธ man golfing +๐ŸŒโ€โ™‚๏ธ man golfing +๐ŸŒ๏ธโ€โ™‚ man golfing +๐ŸŒโ€โ™‚ man golfing +๐ŸŒ๐Ÿปโ€โ™‚๏ธ man golfing: light skin tone +๐ŸŒ๐Ÿปโ€โ™‚ man golfing: light skin tone +๐ŸŒ๐Ÿผโ€โ™‚๏ธ man golfing: medium-light skin tone +๐ŸŒ๐Ÿผโ€โ™‚ man golfing: medium-light skin tone +๐ŸŒ๐Ÿฝโ€โ™‚๏ธ man golfing: medium skin tone +๐ŸŒ๐Ÿฝโ€โ™‚ man golfing: medium skin tone +๐ŸŒ๐Ÿพโ€โ™‚๏ธ man golfing: medium-dark skin tone +๐ŸŒ๐Ÿพโ€โ™‚ man golfing: medium-dark skin tone +๐ŸŒ๐Ÿฟโ€โ™‚๏ธ man golfing: dark skin tone +๐ŸŒ๐Ÿฟโ€โ™‚ man golfing: dark skin tone +๐ŸŒ๏ธโ€โ™€๏ธ woman golfing +๐ŸŒโ€โ™€๏ธ woman golfing +๐ŸŒ๏ธโ€โ™€ woman golfing +๐ŸŒโ€โ™€ woman golfing +๐ŸŒ๐Ÿปโ€โ™€๏ธ woman golfing: light skin tone +๐ŸŒ๐Ÿปโ€โ™€ woman golfing: light skin tone +๐ŸŒ๐Ÿผโ€โ™€๏ธ woman golfing: medium-light skin tone +๐ŸŒ๐Ÿผโ€โ™€ woman golfing: medium-light skin tone +๐ŸŒ๐Ÿฝโ€โ™€๏ธ woman golfing: medium skin tone +๐ŸŒ๐Ÿฝโ€โ™€ woman golfing: medium skin tone +๐ŸŒ๐Ÿพโ€โ™€๏ธ woman golfing: medium-dark skin tone +๐ŸŒ๐Ÿพโ€โ™€ woman golfing: medium-dark skin tone +๐ŸŒ๐Ÿฟโ€โ™€๏ธ woman golfing: dark skin tone +๐ŸŒ๐Ÿฟโ€โ™€ woman golfing: dark skin tone +๐Ÿ„ person surfing +๐Ÿ„๐Ÿป person surfing: light skin tone +๐Ÿ„๐Ÿผ person surfing: medium-light skin tone +๐Ÿ„๐Ÿฝ person surfing: medium skin tone +๐Ÿ„๐Ÿพ person surfing: medium-dark skin tone +๐Ÿ„๐Ÿฟ person surfing: dark skin tone +๐Ÿ„โ€โ™‚๏ธ man surfing +๐Ÿ„โ€โ™‚ man surfing +๐Ÿ„๐Ÿปโ€โ™‚๏ธ man surfing: light skin tone +๐Ÿ„๐Ÿปโ€โ™‚ man surfing: light skin tone +๐Ÿ„๐Ÿผโ€โ™‚๏ธ man surfing: medium-light skin tone +๐Ÿ„๐Ÿผโ€โ™‚ man surfing: medium-light skin tone +๐Ÿ„๐Ÿฝโ€โ™‚๏ธ man surfing: medium skin tone +๐Ÿ„๐Ÿฝโ€โ™‚ man surfing: medium skin tone +๐Ÿ„๐Ÿพโ€โ™‚๏ธ man surfing: medium-dark skin tone +๐Ÿ„๐Ÿพโ€โ™‚ man surfing: medium-dark skin tone +๐Ÿ„๐Ÿฟโ€โ™‚๏ธ man surfing: dark skin tone +๐Ÿ„๐Ÿฟโ€โ™‚ man surfing: dark skin tone +๐Ÿ„โ€โ™€๏ธ woman surfing +๐Ÿ„โ€โ™€ woman surfing +๐Ÿ„๐Ÿปโ€โ™€๏ธ woman surfing: light skin tone +๐Ÿ„๐Ÿปโ€โ™€ woman surfing: light skin tone +๐Ÿ„๐Ÿผโ€โ™€๏ธ woman surfing: medium-light skin tone +๐Ÿ„๐Ÿผโ€โ™€ woman surfing: medium-light skin tone +๐Ÿ„๐Ÿฝโ€โ™€๏ธ woman surfing: medium skin tone +๐Ÿ„๐Ÿฝโ€โ™€ woman surfing: medium skin tone +๐Ÿ„๐Ÿพโ€โ™€๏ธ woman surfing: medium-dark skin tone +๐Ÿ„๐Ÿพโ€โ™€ woman surfing: medium-dark skin tone +๐Ÿ„๐Ÿฟโ€โ™€๏ธ woman surfing: dark skin tone +๐Ÿ„๐Ÿฟโ€โ™€ woman surfing: dark skin tone +๐Ÿšฃ person rowing boat +๐Ÿšฃ๐Ÿป person rowing boat: light skin tone +๐Ÿšฃ๐Ÿผ person rowing boat: medium-light skin tone +๐Ÿšฃ๐Ÿฝ person rowing boat: medium skin tone +๐Ÿšฃ๐Ÿพ person rowing boat: medium-dark skin tone +๐Ÿšฃ๐Ÿฟ person rowing boat: dark skin tone +๐Ÿšฃโ€โ™‚๏ธ man rowing boat +๐Ÿšฃโ€โ™‚ man rowing boat +๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ man rowing boat: light skin tone +๐Ÿšฃ๐Ÿปโ€โ™‚ man rowing boat: light skin tone +๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ man rowing boat: medium-light skin tone +๐Ÿšฃ๐Ÿผโ€โ™‚ man rowing boat: medium-light skin tone +๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ man rowing boat: medium skin tone +๐Ÿšฃ๐Ÿฝโ€โ™‚ man rowing boat: medium skin tone +๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ man rowing boat: medium-dark skin tone +๐Ÿšฃ๐Ÿพโ€โ™‚ man rowing boat: medium-dark skin tone +๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ man rowing boat: dark skin tone +๐Ÿšฃ๐Ÿฟโ€โ™‚ man rowing boat: dark skin tone +๐Ÿšฃโ€โ™€๏ธ woman rowing boat +๐Ÿšฃโ€โ™€ woman rowing boat +๐Ÿšฃ๐Ÿปโ€โ™€๏ธ woman rowing boat: light skin tone +๐Ÿšฃ๐Ÿปโ€โ™€ woman rowing boat: light skin tone +๐Ÿšฃ๐Ÿผโ€โ™€๏ธ woman rowing boat: medium-light skin tone +๐Ÿšฃ๐Ÿผโ€โ™€ woman rowing boat: medium-light skin tone +๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ woman rowing boat: medium skin tone +๐Ÿšฃ๐Ÿฝโ€โ™€ woman rowing boat: medium skin tone +๐Ÿšฃ๐Ÿพโ€โ™€๏ธ woman rowing boat: medium-dark skin tone +๐Ÿšฃ๐Ÿพโ€โ™€ woman rowing boat: medium-dark skin tone +๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ woman rowing boat: dark skin tone +๐Ÿšฃ๐Ÿฟโ€โ™€ woman rowing boat: dark skin tone +๐ŸŠ person swimming +๐ŸŠ๐Ÿป person swimming: light skin tone +๐ŸŠ๐Ÿผ person swimming: medium-light skin tone +๐ŸŠ๐Ÿฝ person swimming: medium skin tone +๐ŸŠ๐Ÿพ person swimming: medium-dark skin tone +๐ŸŠ๐Ÿฟ person swimming: dark skin tone +๐ŸŠโ€โ™‚๏ธ man swimming +๐ŸŠโ€โ™‚ man swimming +๐ŸŠ๐Ÿปโ€โ™‚๏ธ man swimming: light skin tone +๐ŸŠ๐Ÿปโ€โ™‚ man swimming: light skin tone +๐ŸŠ๐Ÿผโ€โ™‚๏ธ man swimming: medium-light skin tone +๐ŸŠ๐Ÿผโ€โ™‚ man swimming: medium-light skin tone +๐ŸŠ๐Ÿฝโ€โ™‚๏ธ man swimming: medium skin tone +๐ŸŠ๐Ÿฝโ€โ™‚ man swimming: medium skin tone +๐ŸŠ๐Ÿพโ€โ™‚๏ธ man swimming: medium-dark skin tone +๐ŸŠ๐Ÿพโ€โ™‚ man swimming: medium-dark skin tone +๐ŸŠ๐Ÿฟโ€โ™‚๏ธ man swimming: dark skin tone +๐ŸŠ๐Ÿฟโ€โ™‚ man swimming: dark skin tone +๐ŸŠโ€โ™€๏ธ woman swimming +๐ŸŠโ€โ™€ woman swimming +๐ŸŠ๐Ÿปโ€โ™€๏ธ woman swimming: light skin tone +๐ŸŠ๐Ÿปโ€โ™€ woman swimming: light skin tone +๐ŸŠ๐Ÿผโ€โ™€๏ธ woman swimming: medium-light skin tone +๐ŸŠ๐Ÿผโ€โ™€ woman swimming: medium-light skin tone +๐ŸŠ๐Ÿฝโ€โ™€๏ธ woman swimming: medium skin tone +๐ŸŠ๐Ÿฝโ€โ™€ woman swimming: medium skin tone +๐ŸŠ๐Ÿพโ€โ™€๏ธ woman swimming: medium-dark skin tone +๐ŸŠ๐Ÿพโ€โ™€ woman swimming: medium-dark skin tone +๐ŸŠ๐Ÿฟโ€โ™€๏ธ woman swimming: dark skin tone +๐ŸŠ๐Ÿฟโ€โ™€ woman swimming: dark skin tone +โ›น๏ธ person bouncing ball +โ›น person bouncing ball +โ›น๐Ÿป person bouncing ball: light skin tone +โ›น๐Ÿผ person bouncing ball: medium-light skin tone +โ›น๐Ÿฝ person bouncing ball: medium skin tone +โ›น๐Ÿพ person bouncing ball: medium-dark skin tone +โ›น๐Ÿฟ person bouncing ball: dark skin tone +โ›น๏ธโ€โ™‚๏ธ man bouncing ball +โ›นโ€โ™‚๏ธ man bouncing ball +โ›น๏ธโ€โ™‚ man bouncing ball +โ›นโ€โ™‚ man bouncing ball +โ›น๐Ÿปโ€โ™‚๏ธ man bouncing ball: light skin tone +โ›น๐Ÿปโ€โ™‚ man bouncing ball: light skin tone +โ›น๐Ÿผโ€โ™‚๏ธ man bouncing ball: medium-light skin tone +โ›น๐Ÿผโ€โ™‚ man bouncing ball: medium-light skin tone +โ›น๐Ÿฝโ€โ™‚๏ธ man bouncing ball: medium skin tone +โ›น๐Ÿฝโ€โ™‚ man bouncing ball: medium skin tone +โ›น๐Ÿพโ€โ™‚๏ธ man bouncing ball: medium-dark skin tone +โ›น๐Ÿพโ€โ™‚ man bouncing ball: medium-dark skin tone +โ›น๐Ÿฟโ€โ™‚๏ธ man bouncing ball: dark skin tone +โ›น๐Ÿฟโ€โ™‚ man bouncing ball: dark skin tone +โ›น๏ธโ€โ™€๏ธ woman bouncing ball +โ›นโ€โ™€๏ธ woman bouncing ball +โ›น๏ธโ€โ™€ woman bouncing ball +โ›นโ€โ™€ woman bouncing ball +โ›น๐Ÿปโ€โ™€๏ธ woman bouncing ball: light skin tone +โ›น๐Ÿปโ€โ™€ woman bouncing ball: light skin tone +โ›น๐Ÿผโ€โ™€๏ธ woman bouncing ball: medium-light skin tone +โ›น๐Ÿผโ€โ™€ woman bouncing ball: medium-light skin tone +โ›น๐Ÿฝโ€โ™€๏ธ woman bouncing ball: medium skin tone +โ›น๐Ÿฝโ€โ™€ woman bouncing ball: medium skin tone +โ›น๐Ÿพโ€โ™€๏ธ woman bouncing ball: medium-dark skin tone +โ›น๐Ÿพโ€โ™€ woman bouncing ball: medium-dark skin tone +โ›น๐Ÿฟโ€โ™€๏ธ woman bouncing ball: dark skin tone +โ›น๐Ÿฟโ€โ™€ woman bouncing ball: dark skin tone +๐Ÿ‹๏ธ person lifting weights +๐Ÿ‹ person lifting weights +๐Ÿ‹๐Ÿป person lifting weights: light skin tone +๐Ÿ‹๐Ÿผ person lifting weights: medium-light skin tone +๐Ÿ‹๐Ÿฝ person lifting weights: medium skin tone +๐Ÿ‹๐Ÿพ person lifting weights: medium-dark skin tone +๐Ÿ‹๐Ÿฟ person lifting weights: dark skin tone +๐Ÿ‹๏ธโ€โ™‚๏ธ man lifting weights +๐Ÿ‹โ€โ™‚๏ธ man lifting weights +๐Ÿ‹๏ธโ€โ™‚ man lifting weights +๐Ÿ‹โ€โ™‚ man lifting weights +๐Ÿ‹๐Ÿปโ€โ™‚๏ธ man lifting weights: light skin tone +๐Ÿ‹๐Ÿปโ€โ™‚ man lifting weights: light skin tone +๐Ÿ‹๐Ÿผโ€โ™‚๏ธ man lifting weights: medium-light skin tone +๐Ÿ‹๐Ÿผโ€โ™‚ man lifting weights: medium-light skin tone +๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ man lifting weights: medium skin tone +๐Ÿ‹๐Ÿฝโ€โ™‚ man lifting weights: medium skin tone +๐Ÿ‹๐Ÿพโ€โ™‚๏ธ man lifting weights: medium-dark skin tone +๐Ÿ‹๐Ÿพโ€โ™‚ man lifting weights: medium-dark skin tone +๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ man lifting weights: dark skin tone +๐Ÿ‹๐Ÿฟโ€โ™‚ man lifting weights: dark skin tone +๐Ÿ‹๏ธโ€โ™€๏ธ woman lifting weights +๐Ÿ‹โ€โ™€๏ธ woman lifting weights +๐Ÿ‹๏ธโ€โ™€ woman lifting weights +๐Ÿ‹โ€โ™€ woman lifting weights +๐Ÿ‹๐Ÿปโ€โ™€๏ธ woman lifting weights: light skin tone +๐Ÿ‹๐Ÿปโ€โ™€ woman lifting weights: light skin tone +๐Ÿ‹๐Ÿผโ€โ™€๏ธ woman lifting weights: medium-light skin tone +๐Ÿ‹๐Ÿผโ€โ™€ woman lifting weights: medium-light skin tone +๐Ÿ‹๐Ÿฝโ€โ™€๏ธ woman lifting weights: medium skin tone +๐Ÿ‹๐Ÿฝโ€โ™€ woman lifting weights: medium skin tone +๐Ÿ‹๐Ÿพโ€โ™€๏ธ woman lifting weights: medium-dark skin tone +๐Ÿ‹๐Ÿพโ€โ™€ woman lifting weights: medium-dark skin tone +๐Ÿ‹๐Ÿฟโ€โ™€๏ธ woman lifting weights: dark skin tone +๐Ÿ‹๐Ÿฟโ€โ™€ woman lifting weights: dark skin tone +๐Ÿšด person biking +๐Ÿšด๐Ÿป person biking: light skin tone +๐Ÿšด๐Ÿผ person biking: medium-light skin tone +๐Ÿšด๐Ÿฝ person biking: medium skin tone +๐Ÿšด๐Ÿพ person biking: medium-dark skin tone +๐Ÿšด๐Ÿฟ person biking: dark skin tone +๐Ÿšดโ€โ™‚๏ธ man biking +๐Ÿšดโ€โ™‚ man biking +๐Ÿšด๐Ÿปโ€โ™‚๏ธ man biking: light skin tone +๐Ÿšด๐Ÿปโ€โ™‚ man biking: light skin tone +๐Ÿšด๐Ÿผโ€โ™‚๏ธ man biking: medium-light skin tone +๐Ÿšด๐Ÿผโ€โ™‚ man biking: medium-light skin tone +๐Ÿšด๐Ÿฝโ€โ™‚๏ธ man biking: medium skin tone +๐Ÿšด๐Ÿฝโ€โ™‚ man biking: medium skin tone +๐Ÿšด๐Ÿพโ€โ™‚๏ธ man biking: medium-dark skin tone +๐Ÿšด๐Ÿพโ€โ™‚ man biking: medium-dark skin tone +๐Ÿšด๐Ÿฟโ€โ™‚๏ธ man biking: dark skin tone +๐Ÿšด๐Ÿฟโ€โ™‚ man biking: dark skin tone +๐Ÿšดโ€โ™€๏ธ woman biking +๐Ÿšดโ€โ™€ woman biking +๐Ÿšด๐Ÿปโ€โ™€๏ธ woman biking: light skin tone +๐Ÿšด๐Ÿปโ€โ™€ woman biking: light skin tone +๐Ÿšด๐Ÿผโ€โ™€๏ธ woman biking: medium-light skin tone +๐Ÿšด๐Ÿผโ€โ™€ woman biking: medium-light skin tone +๐Ÿšด๐Ÿฝโ€โ™€๏ธ woman biking: medium skin tone +๐Ÿšด๐Ÿฝโ€โ™€ woman biking: medium skin tone +๐Ÿšด๐Ÿพโ€โ™€๏ธ woman biking: medium-dark skin tone +๐Ÿšด๐Ÿพโ€โ™€ woman biking: medium-dark skin tone +๐Ÿšด๐Ÿฟโ€โ™€๏ธ woman biking: dark skin tone +๐Ÿšด๐Ÿฟโ€โ™€ woman biking: dark skin tone +๐Ÿšต person mountain biking +๐Ÿšต๐Ÿป person mountain biking: light skin tone +๐Ÿšต๐Ÿผ person mountain biking: medium-light skin tone +๐Ÿšต๐Ÿฝ person mountain biking: medium skin tone +๐Ÿšต๐Ÿพ person mountain biking: medium-dark skin tone +๐Ÿšต๐Ÿฟ person mountain biking: dark skin tone +๐Ÿšตโ€โ™‚๏ธ man mountain biking +๐Ÿšตโ€โ™‚ man mountain biking +๐Ÿšต๐Ÿปโ€โ™‚๏ธ man mountain biking: light skin tone +๐Ÿšต๐Ÿปโ€โ™‚ man mountain biking: light skin tone +๐Ÿšต๐Ÿผโ€โ™‚๏ธ man mountain biking: medium-light skin tone +๐Ÿšต๐Ÿผโ€โ™‚ man mountain biking: medium-light skin tone +๐Ÿšต๐Ÿฝโ€โ™‚๏ธ man mountain biking: medium skin tone +๐Ÿšต๐Ÿฝโ€โ™‚ man mountain biking: medium skin tone +๐Ÿšต๐Ÿพโ€โ™‚๏ธ man mountain biking: medium-dark skin tone +๐Ÿšต๐Ÿพโ€โ™‚ man mountain biking: medium-dark skin tone +๐Ÿšต๐Ÿฟโ€โ™‚๏ธ man mountain biking: dark skin tone +๐Ÿšต๐Ÿฟโ€โ™‚ man mountain biking: dark skin tone +๐Ÿšตโ€โ™€๏ธ woman mountain biking +๐Ÿšตโ€โ™€ woman mountain biking +๐Ÿšต๐Ÿปโ€โ™€๏ธ woman mountain biking: light skin tone +๐Ÿšต๐Ÿปโ€โ™€ woman mountain biking: light skin tone +๐Ÿšต๐Ÿผโ€โ™€๏ธ woman mountain biking: medium-light skin tone +๐Ÿšต๐Ÿผโ€โ™€ woman mountain biking: medium-light skin tone +๐Ÿšต๐Ÿฝโ€โ™€๏ธ woman mountain biking: medium skin tone +๐Ÿšต๐Ÿฝโ€โ™€ woman mountain biking: medium skin tone +๐Ÿšต๐Ÿพโ€โ™€๏ธ woman mountain biking: medium-dark skin tone +๐Ÿšต๐Ÿพโ€โ™€ woman mountain biking: medium-dark skin tone +๐Ÿšต๐Ÿฟโ€โ™€๏ธ woman mountain biking: dark skin tone +๐Ÿšต๐Ÿฟโ€โ™€ woman mountain biking: dark skin tone +๐Ÿคธ person cartwheeling +๐Ÿคธ๐Ÿป person cartwheeling: light skin tone +๐Ÿคธ๐Ÿผ person cartwheeling: medium-light skin tone +๐Ÿคธ๐Ÿฝ person cartwheeling: medium skin tone +๐Ÿคธ๐Ÿพ person cartwheeling: medium-dark skin tone +๐Ÿคธ๐Ÿฟ person cartwheeling: dark skin tone +๐Ÿคธโ€โ™‚๏ธ man cartwheeling +๐Ÿคธโ€โ™‚ man cartwheeling +๐Ÿคธ๐Ÿปโ€โ™‚๏ธ man cartwheeling: light skin tone +๐Ÿคธ๐Ÿปโ€โ™‚ man cartwheeling: light skin tone +๐Ÿคธ๐Ÿผโ€โ™‚๏ธ man cartwheeling: medium-light skin tone +๐Ÿคธ๐Ÿผโ€โ™‚ man cartwheeling: medium-light skin tone +๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ man cartwheeling: medium skin tone +๐Ÿคธ๐Ÿฝโ€โ™‚ man cartwheeling: medium skin tone +๐Ÿคธ๐Ÿพโ€โ™‚๏ธ man cartwheeling: medium-dark skin tone +๐Ÿคธ๐Ÿพโ€โ™‚ man cartwheeling: medium-dark skin tone +๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ man cartwheeling: dark skin tone +๐Ÿคธ๐Ÿฟโ€โ™‚ man cartwheeling: dark skin tone +๐Ÿคธโ€โ™€๏ธ woman cartwheeling +๐Ÿคธโ€โ™€ woman cartwheeling +๐Ÿคธ๐Ÿปโ€โ™€๏ธ woman cartwheeling: light skin tone +๐Ÿคธ๐Ÿปโ€โ™€ woman cartwheeling: light skin tone +๐Ÿคธ๐Ÿผโ€โ™€๏ธ woman cartwheeling: medium-light skin tone +๐Ÿคธ๐Ÿผโ€โ™€ woman cartwheeling: medium-light skin tone +๐Ÿคธ๐Ÿฝโ€โ™€๏ธ woman cartwheeling: medium skin tone +๐Ÿคธ๐Ÿฝโ€โ™€ woman cartwheeling: medium skin tone +๐Ÿคธ๐Ÿพโ€โ™€๏ธ woman cartwheeling: medium-dark skin tone +๐Ÿคธ๐Ÿพโ€โ™€ woman cartwheeling: medium-dark skin tone +๐Ÿคธ๐Ÿฟโ€โ™€๏ธ woman cartwheeling: dark skin tone +๐Ÿคธ๐Ÿฟโ€โ™€ woman cartwheeling: dark skin tone +๐Ÿคผ people wrestling +๐Ÿคผโ€โ™‚๏ธ men wrestling +๐Ÿคผโ€โ™‚ men wrestling +๐Ÿคผโ€โ™€๏ธ women wrestling +๐Ÿคผโ€โ™€ women wrestling +๐Ÿคฝ person playing water polo +๐Ÿคฝ๐Ÿป person playing water polo: light skin tone +๐Ÿคฝ๐Ÿผ person playing water polo: medium-light skin tone +๐Ÿคฝ๐Ÿฝ person playing water polo: medium skin tone +๐Ÿคฝ๐Ÿพ person playing water polo: medium-dark skin tone +๐Ÿคฝ๐Ÿฟ person playing water polo: dark skin tone +๐Ÿคฝโ€โ™‚๏ธ man playing water polo +๐Ÿคฝโ€โ™‚ man playing water polo +๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ man playing water polo: light skin tone +๐Ÿคฝ๐Ÿปโ€โ™‚ man playing water polo: light skin tone +๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ man playing water polo: medium-light skin tone +๐Ÿคฝ๐Ÿผโ€โ™‚ man playing water polo: medium-light skin tone +๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ man playing water polo: medium skin tone +๐Ÿคฝ๐Ÿฝโ€โ™‚ man playing water polo: medium skin tone +๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ man playing water polo: medium-dark skin tone +๐Ÿคฝ๐Ÿพโ€โ™‚ man playing water polo: medium-dark skin tone +๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ man playing water polo: dark skin tone +๐Ÿคฝ๐Ÿฟโ€โ™‚ man playing water polo: dark skin tone +๐Ÿคฝโ€โ™€๏ธ woman playing water polo +๐Ÿคฝโ€โ™€ woman playing water polo +๐Ÿคฝ๐Ÿปโ€โ™€๏ธ woman playing water polo: light skin tone +๐Ÿคฝ๐Ÿปโ€โ™€ woman playing water polo: light skin tone +๐Ÿคฝ๐Ÿผโ€โ™€๏ธ woman playing water polo: medium-light skin tone +๐Ÿคฝ๐Ÿผโ€โ™€ woman playing water polo: medium-light skin tone +๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ woman playing water polo: medium skin tone +๐Ÿคฝ๐Ÿฝโ€โ™€ woman playing water polo: medium skin tone +๐Ÿคฝ๐Ÿพโ€โ™€๏ธ woman playing water polo: medium-dark skin tone +๐Ÿคฝ๐Ÿพโ€โ™€ woman playing water polo: medium-dark skin tone +๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ woman playing water polo: dark skin tone +๐Ÿคฝ๐Ÿฟโ€โ™€ woman playing water polo: dark skin tone +๐Ÿคพ person playing handball +๐Ÿคพ๐Ÿป person playing handball: light skin tone +๐Ÿคพ๐Ÿผ person playing handball: medium-light skin tone +๐Ÿคพ๐Ÿฝ person playing handball: medium skin tone +๐Ÿคพ๐Ÿพ person playing handball: medium-dark skin tone +๐Ÿคพ๐Ÿฟ person playing handball: dark skin tone +๐Ÿคพโ€โ™‚๏ธ man playing handball +๐Ÿคพโ€โ™‚ man playing handball +๐Ÿคพ๐Ÿปโ€โ™‚๏ธ man playing handball: light skin tone +๐Ÿคพ๐Ÿปโ€โ™‚ man playing handball: light skin tone +๐Ÿคพ๐Ÿผโ€โ™‚๏ธ man playing handball: medium-light skin tone +๐Ÿคพ๐Ÿผโ€โ™‚ man playing handball: medium-light skin tone +๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ man playing handball: medium skin tone +๐Ÿคพ๐Ÿฝโ€โ™‚ man playing handball: medium skin tone +๐Ÿคพ๐Ÿพโ€โ™‚๏ธ man playing handball: medium-dark skin tone +๐Ÿคพ๐Ÿพโ€โ™‚ man playing handball: medium-dark skin tone +๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ man playing handball: dark skin tone +๐Ÿคพ๐Ÿฟโ€โ™‚ man playing handball: dark skin tone +๐Ÿคพโ€โ™€๏ธ woman playing handball +๐Ÿคพโ€โ™€ woman playing handball +๐Ÿคพ๐Ÿปโ€โ™€๏ธ woman playing handball: light skin tone +๐Ÿคพ๐Ÿปโ€โ™€ woman playing handball: light skin tone +๐Ÿคพ๐Ÿผโ€โ™€๏ธ woman playing handball: medium-light skin tone +๐Ÿคพ๐Ÿผโ€โ™€ woman playing handball: medium-light skin tone +๐Ÿคพ๐Ÿฝโ€โ™€๏ธ woman playing handball: medium skin tone +๐Ÿคพ๐Ÿฝโ€โ™€ woman playing handball: medium skin tone +๐Ÿคพ๐Ÿพโ€โ™€๏ธ woman playing handball: medium-dark skin tone +๐Ÿคพ๐Ÿพโ€โ™€ woman playing handball: medium-dark skin tone +๐Ÿคพ๐Ÿฟโ€โ™€๏ธ woman playing handball: dark skin tone +๐Ÿคพ๐Ÿฟโ€โ™€ woman playing handball: dark skin tone +๐Ÿคน person juggling +๐Ÿคน๐Ÿป person juggling: light skin tone +๐Ÿคน๐Ÿผ person juggling: medium-light skin tone +๐Ÿคน๐Ÿฝ person juggling: medium skin tone +๐Ÿคน๐Ÿพ person juggling: medium-dark skin tone +๐Ÿคน๐Ÿฟ person juggling: dark skin tone +๐Ÿคนโ€โ™‚๏ธ man juggling +๐Ÿคนโ€โ™‚ man juggling +๐Ÿคน๐Ÿปโ€โ™‚๏ธ man juggling: light skin tone +๐Ÿคน๐Ÿปโ€โ™‚ man juggling: light skin tone +๐Ÿคน๐Ÿผโ€โ™‚๏ธ man juggling: medium-light skin tone +๐Ÿคน๐Ÿผโ€โ™‚ man juggling: medium-light skin tone +๐Ÿคน๐Ÿฝโ€โ™‚๏ธ man juggling: medium skin tone +๐Ÿคน๐Ÿฝโ€โ™‚ man juggling: medium skin tone +๐Ÿคน๐Ÿพโ€โ™‚๏ธ man juggling: medium-dark skin tone +๐Ÿคน๐Ÿพโ€โ™‚ man juggling: medium-dark skin tone +๐Ÿคน๐Ÿฟโ€โ™‚๏ธ man juggling: dark skin tone +๐Ÿคน๐Ÿฟโ€โ™‚ man juggling: dark skin tone +๐Ÿคนโ€โ™€๏ธ woman juggling +๐Ÿคนโ€โ™€ woman juggling +๐Ÿคน๐Ÿปโ€โ™€๏ธ woman juggling: light skin tone +๐Ÿคน๐Ÿปโ€โ™€ woman juggling: light skin tone +๐Ÿคน๐Ÿผโ€โ™€๏ธ woman juggling: medium-light skin tone +๐Ÿคน๐Ÿผโ€โ™€ woman juggling: medium-light skin tone +๐Ÿคน๐Ÿฝโ€โ™€๏ธ woman juggling: medium skin tone +๐Ÿคน๐Ÿฝโ€โ™€ woman juggling: medium skin tone +๐Ÿคน๐Ÿพโ€โ™€๏ธ woman juggling: medium-dark skin tone +๐Ÿคน๐Ÿพโ€โ™€ woman juggling: medium-dark skin tone +๐Ÿคน๐Ÿฟโ€โ™€๏ธ woman juggling: dark skin tone +๐Ÿคน๐Ÿฟโ€โ™€ woman juggling: dark skin tone +๐Ÿง˜ person in lotus position +๐Ÿง˜๐Ÿป person in lotus position: light skin tone +๐Ÿง˜๐Ÿผ person in lotus position: medium-light skin tone +๐Ÿง˜๐Ÿฝ person in lotus position: medium skin tone +๐Ÿง˜๐Ÿพ person in lotus position: medium-dark skin tone +๐Ÿง˜๐Ÿฟ person in lotus position: dark skin tone +๐Ÿง˜โ€โ™‚๏ธ man in lotus position +๐Ÿง˜โ€โ™‚ man in lotus position +๐Ÿง˜๐Ÿปโ€โ™‚๏ธ man in lotus position: light skin tone +๐Ÿง˜๐Ÿปโ€โ™‚ man in lotus position: light skin tone +๐Ÿง˜๐Ÿผโ€โ™‚๏ธ man in lotus position: medium-light skin tone +๐Ÿง˜๐Ÿผโ€โ™‚ man in lotus position: medium-light skin tone +๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ man in lotus position: medium skin tone +๐Ÿง˜๐Ÿฝโ€โ™‚ man in lotus position: medium skin tone +๐Ÿง˜๐Ÿพโ€โ™‚๏ธ man in lotus position: medium-dark skin tone +๐Ÿง˜๐Ÿพโ€โ™‚ man in lotus position: medium-dark skin tone +๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ man in lotus position: dark skin tone +๐Ÿง˜๐Ÿฟโ€โ™‚ man in lotus position: dark skin tone +๐Ÿง˜โ€โ™€๏ธ woman in lotus position +๐Ÿง˜โ€โ™€ woman in lotus position +๐Ÿง˜๐Ÿปโ€โ™€๏ธ woman in lotus position: light skin tone +๐Ÿง˜๐Ÿปโ€โ™€ woman in lotus position: light skin tone +๐Ÿง˜๐Ÿผโ€โ™€๏ธ woman in lotus position: medium-light skin tone +๐Ÿง˜๐Ÿผโ€โ™€ woman in lotus position: medium-light skin tone +๐Ÿง˜๐Ÿฝโ€โ™€๏ธ woman in lotus position: medium skin tone +๐Ÿง˜๐Ÿฝโ€โ™€ woman in lotus position: medium skin tone +๐Ÿง˜๐Ÿพโ€โ™€๏ธ woman in lotus position: medium-dark skin tone +๐Ÿง˜๐Ÿพโ€โ™€ woman in lotus position: medium-dark skin tone +๐Ÿง˜๐Ÿฟโ€โ™€๏ธ woman in lotus position: dark skin tone +๐Ÿง˜๐Ÿฟโ€โ™€ woman in lotus position: dark skin tone +๐Ÿ›€ person taking bath +๐Ÿ›€๐Ÿป person taking bath: light skin tone +๐Ÿ›€๐Ÿผ person taking bath: medium-light skin tone +๐Ÿ›€๐Ÿฝ person taking bath: medium skin tone +๐Ÿ›€๐Ÿพ person taking bath: medium-dark skin tone +๐Ÿ›€๐Ÿฟ person taking bath: dark skin tone +๐Ÿ›Œ person in bed +๐Ÿ›Œ๐Ÿป person in bed: light skin tone +๐Ÿ›Œ๐Ÿผ person in bed: medium-light skin tone +๐Ÿ›Œ๐Ÿฝ person in bed: medium skin tone +๐Ÿ›Œ๐Ÿพ person in bed: medium-dark skin tone +๐Ÿ›Œ๐Ÿฟ person in bed: dark skin tone +๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘ people holding hands +๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: light skin tone +๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: light skin tone, medium-light skin tone +๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: light skin tone, medium skin tone +๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: light skin tone, dark skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: medium-light skin tone, light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: medium-light skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: medium-light skin tone, medium skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: medium-light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: medium-light skin tone, dark skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: medium skin tone, light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: medium skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: medium skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: medium skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: medium skin tone, dark skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: medium-dark skin tone, light skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: medium-dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: medium-dark skin tone, medium skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: medium-dark skin tone +๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: medium-dark skin tone, dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: dark skin tone, light skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: dark skin tone, medium skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: dark skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: dark skin tone +๐Ÿ‘ญ women holding hands +๐Ÿ‘ญ๐Ÿป women holding hands: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: medium-light skin tone, light skin tone +๐Ÿ‘ญ๐Ÿผ women holding hands: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: medium skin tone, medium-light skin tone +๐Ÿ‘ญ๐Ÿฝ women holding hands: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: medium-dark skin tone, medium skin tone +๐Ÿ‘ญ๐Ÿพ women holding hands: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: dark skin tone, medium-dark skin tone +๐Ÿ‘ญ๐Ÿฟ women holding hands: dark skin tone +๐Ÿ‘ซ woman and man holding hands +๐Ÿ‘ซ๐Ÿป woman and man holding hands: light skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: medium-light skin tone, light skin tone +๐Ÿ‘ซ๐Ÿผ woman and man holding hands: medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: medium skin tone, medium-light skin tone +๐Ÿ‘ซ๐Ÿฝ woman and man holding hands: medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: medium-dark skin tone, medium skin tone +๐Ÿ‘ซ๐Ÿพ woman and man holding hands: medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: dark skin tone, medium-dark skin tone +๐Ÿ‘ซ๐Ÿฟ woman and man holding hands: dark skin tone +๐Ÿ‘ฌ men holding hands +๐Ÿ‘ฌ๐Ÿป men holding hands: light skin tone +๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: light skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: medium-light skin tone, light skin tone +๐Ÿ‘ฌ๐Ÿผ men holding hands: medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: medium-light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: medium-light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: medium-light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: medium skin tone, light skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: medium skin tone, medium-light skin tone +๐Ÿ‘ฌ๐Ÿฝ men holding hands: medium skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: medium skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: medium skin tone, dark skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: medium-dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: medium-dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: medium-dark skin tone, medium skin tone +๐Ÿ‘ฌ๐Ÿพ men holding hands: medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: medium-dark skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: dark skin tone, medium-dark skin tone +๐Ÿ‘ฌ๐Ÿฟ men holding hands: dark skin tone +๐Ÿ’ kiss +๐Ÿ’๐Ÿป kiss: light skin tone +๐Ÿ’๐Ÿผ kiss: medium-light skin tone +๐Ÿ’๐Ÿฝ kiss: medium skin tone +๐Ÿ’๐Ÿพ kiss: medium-dark skin tone +๐Ÿ’๐Ÿฟ kiss: dark skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, light skin tone, medium-light skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, light skin tone, medium-light skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, light skin tone, medium skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, light skin tone, medium skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, light skin tone, dark skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, light skin tone, dark skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, medium-light skin tone, light skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, medium-light skin tone, light skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, medium-light skin tone, medium skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, medium-light skin tone, medium skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, medium-light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, medium-light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, medium-light skin tone, dark skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, medium-light skin tone, dark skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, medium skin tone, light skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, medium skin tone, light skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, medium skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, medium skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, medium skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, medium skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, medium skin tone, dark skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, medium skin tone, dark skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, medium-dark skin tone, light skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, medium-dark skin tone, light skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, medium-dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, medium-dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, medium-dark skin tone, medium skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, medium-dark skin tone, medium skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, medium-dark skin tone, dark skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, medium-dark skin tone, dark skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, dark skin tone, light skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, dark skin tone, light skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, dark skin tone, medium skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, dark skin tone, medium skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, dark skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ kiss: woman, man +๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ kiss: woman, man +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, dark skin tone +๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ kiss: man, man +๐Ÿ‘จโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ kiss: man, man +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, light skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, light skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, light skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, light skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, medium-light skin tone, light skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, medium-light skin tone, light skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, medium-light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, medium-light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, medium-light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, medium-light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, medium skin tone, light skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, medium skin tone, light skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, medium skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, medium skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, medium skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, medium skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, medium skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, medium skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, medium skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, medium skin tone, dark skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, medium-dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, medium-dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, medium-dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, medium-dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, medium-dark skin tone, dark skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, medium-dark skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: man, man, dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: man, man, dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: man, man, dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, dark skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: man, man, dark skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: man, man, dark skin tone +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ kiss: woman, woman +๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ kiss: woman, woman +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, dark skin tone +๐Ÿ’‘ couple with heart +๐Ÿ’‘๐Ÿป couple with heart: light skin tone +๐Ÿ’‘๐Ÿผ couple with heart: medium-light skin tone +๐Ÿ’‘๐Ÿฝ couple with heart: medium skin tone +๐Ÿ’‘๐Ÿพ couple with heart: medium-dark skin tone +๐Ÿ’‘๐Ÿฟ couple with heart: dark skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, light skin tone, medium-light skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, light skin tone, medium-light skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, light skin tone, medium skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, light skin tone, medium skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, light skin tone, dark skin tone +๐Ÿง‘๐Ÿปโ€โคโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, light skin tone, dark skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, medium-light skin tone, light skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿป couple with heart: person, person, medium-light skin tone, light skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, medium-light skin tone, medium skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, medium-light skin tone, medium skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, medium-light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, medium-light skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, medium-light skin tone, dark skin tone +๐Ÿง‘๐Ÿผโ€โคโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, medium-light skin tone, dark skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, medium skin tone, light skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿป couple with heart: person, person, medium skin tone, light skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, medium skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, medium skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, medium skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, medium skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, medium skin tone, dark skin tone +๐Ÿง‘๐Ÿฝโ€โคโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, medium skin tone, dark skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, medium-dark skin tone, light skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿป couple with heart: person, person, medium-dark skin tone, light skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, medium-dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, medium-dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, medium-dark skin tone, medium skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, medium-dark skin tone, medium skin tone +๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, medium-dark skin tone, dark skin tone +๐Ÿง‘๐Ÿพโ€โคโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, medium-dark skin tone, dark skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, dark skin tone, light skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿป couple with heart: person, person, dark skin tone, light skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, dark skin tone, medium-light skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, dark skin tone, medium skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, dark skin tone, medium skin tone +๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, dark skin tone, medium-dark skin tone +๐Ÿง‘๐Ÿฟโ€โคโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ couple with heart: woman, man +๐Ÿ‘ฉโ€โคโ€๐Ÿ‘จ couple with heart: woman, man +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, dark skin tone +๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ couple with heart: man, man +๐Ÿ‘จโ€โคโ€๐Ÿ‘จ couple with heart: man, man +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, light skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, light skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, light skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, light skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿปโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, medium-light skin tone, light skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, medium-light skin tone, light skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, medium-light skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, medium-light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, medium-light skin tone, medium skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, medium-light skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, medium-light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿผโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, medium-light skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, medium skin tone, light skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, medium skin tone, light skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, medium skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, medium skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, medium skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, medium skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, medium skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, medium skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, medium skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฝโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, medium skin tone, dark skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, medium-dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, medium-dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, medium-dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, medium-dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, medium-dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, medium-dark skin tone +๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, medium-dark skin tone, dark skin tone +๐Ÿ‘จ๐Ÿพโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, medium-dark skin tone, dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿป couple with heart: man, man, dark skin tone, light skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿผ couple with heart: man, man, dark skin tone, medium-light skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฝ couple with heart: man, man, dark skin tone, medium skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, dark skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿพ couple with heart: man, man, dark skin tone, medium-dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, dark skin tone +๐Ÿ‘จ๐Ÿฟโ€โคโ€๐Ÿ‘จ๐Ÿฟ couple with heart: man, man, dark skin tone +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ couple with heart: woman, woman +๐Ÿ‘ฉโ€โคโ€๐Ÿ‘ฉ couple with heart: woman, woman +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, light skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿปโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, medium-light skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, medium-light skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, medium-light skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿผโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, medium-light skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, medium skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, medium skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, medium skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, medium skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฝโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, medium skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, medium-dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, medium-dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿพโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, medium-dark skin tone, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, dark skin tone, light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, dark skin tone, medium-light skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, dark skin tone, medium skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, dark skin tone, medium-dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, dark skin tone +๐Ÿ‘ฉ๐Ÿฟโ€โคโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, dark skin tone +๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ family: man, woman, boy +๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง family: man, woman, girl +๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: man, woman, girl, boy +๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: man, woman, boy, boy +๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง family: man, woman, girl, girl +๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ family: man, man, boy +๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง family: man, man, girl +๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: man, man, girl, boy +๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: man, man, boy, boy +๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง family: man, man, girl, girl +๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ family: woman, woman, boy +๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง family: woman, woman, girl +๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: woman, woman, girl, boy +๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: woman, woman, boy, boy +๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง family: woman, woman, girl, girl +๐Ÿ‘จโ€๐Ÿ‘ฆ family: man, boy +๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: man, boy, boy +๐Ÿ‘จโ€๐Ÿ‘ง family: man, girl +๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: man, girl, boy +๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง family: man, girl, girl +๐Ÿ‘ฉโ€๐Ÿ‘ฆ family: woman, boy +๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: woman, boy, boy +๐Ÿ‘ฉโ€๐Ÿ‘ง family: woman, girl +๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: woman, girl, boy +๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง family: woman, girl, girl +๐Ÿ—ฃ๏ธ speaking head +๐Ÿ—ฃ speaking head +๐Ÿ‘ค bust in silhouette +๐Ÿ‘ฅ busts in silhouette +๐Ÿซ‚ people hugging +๐Ÿ‘ช family +๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’ family: adult, adult, child +๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ family: adult, adult, child, child +๐Ÿง‘โ€๐Ÿง’ family: adult, child +๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ family: adult, child, child +๐Ÿ‘ฃ footprints +๐Ÿซ† fingerprint +๐Ÿป light skin tone +๐Ÿผ medium-light skin tone +๐Ÿฝ medium skin tone +๐Ÿพ medium-dark skin tone +๐Ÿฟ dark skin tone +๐Ÿฆฐ red hair +๐Ÿฆฑ curly hair +๐Ÿฆณ white hair +๐Ÿฆฒ bald +๐Ÿต monkey face +๐Ÿ’ monkey +๐Ÿฆ gorilla +๐Ÿฆง orangutan +๐Ÿถ dog face +๐Ÿ• dog +๐Ÿฆฎ guide dog +๐Ÿ•โ€๐Ÿฆบ service dog +๐Ÿฉ poodle +๐Ÿบ wolf +๐ŸฆŠ fox +๐Ÿฆ raccoon +๐Ÿฑ cat face +๐Ÿˆ cat +๐Ÿˆโ€โฌ› black cat +๐Ÿฆ lion +๐Ÿฏ tiger face +๐Ÿ… tiger +๐Ÿ† leopard +๐Ÿด horse face +๐ŸซŽ moose +๐Ÿซ donkey +๐ŸŽ horse +๐Ÿฆ„ unicorn +๐Ÿฆ“ zebra +๐ŸฆŒ deer +๐Ÿฆฌ bison +๐Ÿฎ cow face +๐Ÿ‚ ox +๐Ÿƒ water buffalo +๐Ÿ„ cow +๐Ÿท pig face +๐Ÿ– pig +๐Ÿ— boar +๐Ÿฝ pig nose +๐Ÿ ram +๐Ÿ‘ ewe +๐Ÿ goat +๐Ÿช camel +๐Ÿซ two-hump camel +๐Ÿฆ™ llama +๐Ÿฆ’ giraffe +๐Ÿ˜ elephant +๐Ÿฆฃ mammoth +๐Ÿฆ rhinoceros +๐Ÿฆ› hippopotamus +๐Ÿญ mouse face +๐Ÿ mouse +๐Ÿ€ rat +๐Ÿน hamster +๐Ÿฐ rabbit face +๐Ÿ‡ rabbit +๐Ÿฟ๏ธ chipmunk +๐Ÿฟ chipmunk +๐Ÿฆซ beaver +๐Ÿฆ” hedgehog +๐Ÿฆ‡ bat +๐Ÿป bear +๐Ÿปโ€โ„๏ธ polar bear +๐Ÿปโ€โ„ polar bear +๐Ÿจ koala +๐Ÿผ panda +๐Ÿฆฅ sloth +๐Ÿฆฆ otter +๐Ÿฆจ skunk +๐Ÿฆ˜ kangaroo +๐Ÿฆก badger +๐Ÿพ paw prints +๐Ÿฆƒ turkey +๐Ÿ” chicken +๐Ÿ“ rooster +๐Ÿฃ hatching chick +๐Ÿค baby chick +๐Ÿฅ front-facing baby chick +๐Ÿฆ bird +๐Ÿง penguin +๐Ÿ•Š๏ธ dove +๐Ÿ•Š dove +๐Ÿฆ… eagle +๐Ÿฆ† duck +๐Ÿฆข swan +๐Ÿฆ‰ owl +๐Ÿฆค dodo +๐Ÿชถ feather +๐Ÿฆฉ flamingo +๐Ÿฆš peacock +๐Ÿฆœ parrot +๐Ÿชฝ wing +๐Ÿฆโ€โฌ› black bird +๐Ÿชฟ goose +๐Ÿฆโ€๐Ÿ”ฅ phoenix +๐Ÿธ frog +๐ŸŠ crocodile +๐Ÿข turtle +๐ŸฆŽ lizard +๐Ÿ snake +๐Ÿฒ dragon face +๐Ÿ‰ dragon +๐Ÿฆ• sauropod +๐Ÿฆ– T-Rex +๐Ÿณ spouting whale +๐Ÿ‹ whale +๐Ÿฌ dolphin +๐Ÿฆญ seal +๐ŸŸ fish +๐Ÿ  tropical fish +๐Ÿก blowfish +๐Ÿฆˆ shark +๐Ÿ™ octopus +๐Ÿš spiral shell +๐Ÿชธ coral +๐Ÿชผ jellyfish +๐Ÿฆ€ crab +๐Ÿฆž lobster +๐Ÿฆ shrimp +๐Ÿฆ‘ squid +๐Ÿฆช oyster +๐ŸŒ snail +๐Ÿฆ‹ butterfly +๐Ÿ› bug +๐Ÿœ ant +๐Ÿ honeybee +๐Ÿชฒ beetle +๐Ÿž lady beetle +๐Ÿฆ— cricket +๐Ÿชณ cockroach +๐Ÿ•ท๏ธ spider +๐Ÿ•ท spider +๐Ÿ•ธ๏ธ spider web +๐Ÿ•ธ spider web +๐Ÿฆ‚ scorpion +๐ŸฆŸ mosquito +๐Ÿชฐ fly +๐Ÿชฑ worm +๐Ÿฆ  microbe +๐Ÿ’ bouquet +๐ŸŒธ cherry blossom +๐Ÿ’ฎ white flower +๐Ÿชท lotus +๐Ÿต๏ธ rosette +๐Ÿต rosette +๐ŸŒน rose +๐Ÿฅ€ wilted flower +๐ŸŒบ hibiscus +๐ŸŒป sunflower +๐ŸŒผ blossom +๐ŸŒท tulip +๐Ÿชป hyacinth +๐ŸŒฑ seedling +๐Ÿชด potted plant +๐ŸŒฒ evergreen tree +๐ŸŒณ deciduous tree +๐ŸŒด palm tree +๐ŸŒต cactus +๐ŸŒพ sheaf of rice +๐ŸŒฟ herb +โ˜˜๏ธ shamrock +โ˜˜ shamrock +๐Ÿ€ four leaf clover +๐Ÿ maple leaf +๐Ÿ‚ fallen leaf +๐Ÿƒ leaf fluttering in wind +๐Ÿชน empty nest +๐Ÿชบ nest with eggs +๐Ÿ„ mushroom +๐Ÿชพ leafless tree +๐Ÿ‡ grapes +๐Ÿˆ melon +๐Ÿ‰ watermelon +๐ŸŠ tangerine +๐Ÿ‹ lemon +๐Ÿ‹โ€๐ŸŸฉ lime +๐ŸŒ banana +๐Ÿ pineapple +๐Ÿฅญ mango +๐ŸŽ red apple +๐Ÿ green apple +๐Ÿ pear +๐Ÿ‘ peach +๐Ÿ’ cherries +๐Ÿ“ strawberry +๐Ÿซ blueberries +๐Ÿฅ kiwi fruit +๐Ÿ… tomato +๐Ÿซ’ olive +๐Ÿฅฅ coconut +๐Ÿฅ‘ avocado +๐Ÿ† eggplant +๐Ÿฅ” potato +๐Ÿฅ• carrot +๐ŸŒฝ ear of corn +๐ŸŒถ๏ธ hot pepper +๐ŸŒถ hot pepper +๐Ÿซ‘ bell pepper +๐Ÿฅ’ cucumber +๐Ÿฅฌ leafy green +๐Ÿฅฆ broccoli +๐Ÿง„ garlic +๐Ÿง… onion +๐Ÿฅœ peanuts +๐Ÿซ˜ beans +๐ŸŒฐ chestnut +๐Ÿซš ginger root +๐Ÿซ› pea pod +๐Ÿ„โ€๐ŸŸซ brown mushroom +๐Ÿซœ root vegetable +๐Ÿž bread +๐Ÿฅ croissant +๐Ÿฅ– baguette bread +๐Ÿซ“ flatbread +๐Ÿฅจ pretzel +๐Ÿฅฏ bagel +๐Ÿฅž pancakes +๐Ÿง‡ waffle +๐Ÿง€ cheese wedge +๐Ÿ– meat on bone +๐Ÿ— poultry leg +๐Ÿฅฉ cut of meat +๐Ÿฅ“ bacon +๐Ÿ” hamburger +๐ŸŸ french fries +๐Ÿ• pizza +๐ŸŒญ hot dog +๐Ÿฅช sandwich +๐ŸŒฎ taco +๐ŸŒฏ burrito +๐Ÿซ” tamale +๐Ÿฅ™ stuffed flatbread +๐Ÿง† falafel +๐Ÿฅš egg +๐Ÿณ cooking +๐Ÿฅ˜ shallow pan of food +๐Ÿฒ pot of food +๐Ÿซ• fondue +๐Ÿฅฃ bowl with spoon +๐Ÿฅ— green salad +๐Ÿฟ popcorn +๐Ÿงˆ butter +๐Ÿง‚ salt +๐Ÿฅซ canned food +๐Ÿฑ bento box +๐Ÿ˜ rice cracker +๐Ÿ™ rice ball +๐Ÿš cooked rice +๐Ÿ› curry rice +๐Ÿœ steaming bowl +๐Ÿ spaghetti +๐Ÿ  roasted sweet potato +๐Ÿข oden +๐Ÿฃ sushi +๐Ÿค fried shrimp +๐Ÿฅ fish cake with swirl +๐Ÿฅฎ moon cake +๐Ÿก dango +๐ŸฅŸ dumpling +๐Ÿฅ  fortune cookie +๐Ÿฅก takeout box +๐Ÿฆ soft ice cream +๐Ÿง shaved ice +๐Ÿจ ice cream +๐Ÿฉ doughnut +๐Ÿช cookie +๐ŸŽ‚ birthday cake +๐Ÿฐ shortcake +๐Ÿง cupcake +๐Ÿฅง pie +๐Ÿซ chocolate bar +๐Ÿฌ candy +๐Ÿญ lollipop +๐Ÿฎ custard +๐Ÿฏ honey pot +๐Ÿผ baby bottle +๐Ÿฅ› glass of milk +โ˜• hot beverage +๐Ÿซ– teapot +๐Ÿต teacup without handle +๐Ÿถ sake +๐Ÿพ bottle with popping cork +๐Ÿท wine glass +๐Ÿธ cocktail glass +๐Ÿน tropical drink +๐Ÿบ beer mug +๐Ÿป clinking beer mugs +๐Ÿฅ‚ clinking glasses +๐Ÿฅƒ tumbler glass +๐Ÿซ— pouring liquid +๐Ÿฅค cup with straw +๐Ÿง‹ bubble tea +๐Ÿงƒ beverage box +๐Ÿง‰ mate +๐ŸงŠ ice +๐Ÿฅข chopsticks +๐Ÿฝ๏ธ fork and knife with plate +๐Ÿฝ fork and knife with plate +๐Ÿด fork and knife +๐Ÿฅ„ spoon +๐Ÿ”ช kitchen knife +๐Ÿซ™ jar +๐Ÿบ amphora +๐ŸŒ globe showing Europe-Africa +๐ŸŒŽ globe showing Americas +๐ŸŒ globe showing Asia-Australia +๐ŸŒ globe with meridians +๐Ÿ—บ๏ธ world map +๐Ÿ—บ world map +๐Ÿ—พ map of Japan +๐Ÿงญ compass +๐Ÿ”๏ธ snow-capped mountain +๐Ÿ” snow-capped mountain +โ›ฐ๏ธ mountain +โ›ฐ mountain +๐ŸŒ‹ volcano +๐Ÿ—ป mount fuji +๐Ÿ•๏ธ camping +๐Ÿ• camping +๐Ÿ–๏ธ beach with umbrella +๐Ÿ– beach with umbrella +๐Ÿœ๏ธ desert +๐Ÿœ desert +๐Ÿ๏ธ desert island +๐Ÿ desert island +๐Ÿž๏ธ national park +๐Ÿž national park +๐ŸŸ๏ธ stadium +๐ŸŸ stadium +๐Ÿ›๏ธ classical building +๐Ÿ› classical building +๐Ÿ—๏ธ building construction +๐Ÿ— building construction +๐Ÿงฑ brick +๐Ÿชจ rock +๐Ÿชต wood +๐Ÿ›– hut +๐Ÿ˜๏ธ houses +๐Ÿ˜ houses +๐Ÿš๏ธ derelict house +๐Ÿš derelict house +๐Ÿ  house +๐Ÿก house with garden +๐Ÿข office building +๐Ÿฃ Japanese post office +๐Ÿค post office +๐Ÿฅ hospital +๐Ÿฆ bank +๐Ÿจ hotel +๐Ÿฉ love hotel +๐Ÿช convenience store +๐Ÿซ school +๐Ÿฌ department store +๐Ÿญ factory +๐Ÿฏ Japanese castle +๐Ÿฐ castle +๐Ÿ’’ wedding +๐Ÿ—ผ Tokyo tower +๐Ÿ—ฝ Statue of Liberty +โ›ช church +๐Ÿ•Œ mosque +๐Ÿ›• hindu temple +๐Ÿ• synagogue +โ›ฉ๏ธ shinto shrine +โ›ฉ shinto shrine +๐Ÿ•‹ kaaba +โ›ฒ fountain +โ›บ tent +๐ŸŒ foggy +๐ŸŒƒ night with stars +๐Ÿ™๏ธ cityscape +๐Ÿ™ cityscape +๐ŸŒ„ sunrise over mountains +๐ŸŒ… sunrise +๐ŸŒ† cityscape at dusk +๐ŸŒ‡ sunset +๐ŸŒ‰ bridge at night +โ™จ๏ธ hot springs +โ™จ hot springs +๐ŸŽ  carousel horse +๐Ÿ› playground slide +๐ŸŽก ferris wheel +๐ŸŽข roller coaster +๐Ÿ’ˆ barber pole +๐ŸŽช circus tentnd +๐Ÿš‚ locomotive +๐Ÿšƒ railway car +๐Ÿš„ high-speed train +๐Ÿš… bullet train +๐Ÿš† train +๐Ÿš‡ metro +๐Ÿšˆ light rail +๐Ÿš‰ station +๐ŸšŠ tram +๐Ÿš monorail +๐Ÿšž mountain railway +๐Ÿš‹ tram car +๐ŸšŒ bus +๐Ÿš oncoming bus +๐ŸšŽ trolleybus +๐Ÿš minibus +๐Ÿš‘ ambulance +๐Ÿš’ fire engine +๐Ÿš“ police car +๐Ÿš” oncoming police car +๐Ÿš• taxi +๐Ÿš– oncoming taxi +๐Ÿš— automobile +๐Ÿš˜ oncoming automobile +๐Ÿš™ sport utility vehicle +๐Ÿ›ป pickup truck +๐Ÿšš delivery truck +๐Ÿš› articulated lorry +๐Ÿšœ tractor +๐ŸŽ๏ธ racing car +๐ŸŽ racing car +๐Ÿ๏ธ motorcycle +๐Ÿ motorcycle +๐Ÿ›ต motor scooter +๐Ÿฆฝ manual wheelchair +๐Ÿฆผ motorized wheelchair +๐Ÿ›บ auto rickshaw +๐Ÿšฒ bicycle +๐Ÿ›ด kick scooter +๐Ÿ›น skateboard +๐Ÿ›ผ roller skate +๐Ÿš bus stop +๐Ÿ›ฃ๏ธ motorway +๐Ÿ›ฃ motorway +๐Ÿ›ค๏ธ railway track +๐Ÿ›ค railway track +๐Ÿ›ข๏ธ oil drum +๐Ÿ›ข oil drum +โ›ฝ fuel pump +๐Ÿ›ž wheel +๐Ÿšจ police car light +๐Ÿšฅ horizontal traffic light +๐Ÿšฆ vertical traffic light +๐Ÿ›‘ stop sign +๐Ÿšง constructionr +โš“ anchor +๐Ÿ›Ÿ ring buoy +โ›ต sailboat +๐Ÿ›ถ canoe +๐Ÿšค speedboat +๐Ÿ›ณ๏ธ passenger ship +๐Ÿ›ณ passenger ship +โ›ด๏ธ ferry +โ›ด ferry +๐Ÿ›ฅ๏ธ motor boat +๐Ÿ›ฅ motor boat +๐Ÿšข ship +โœˆ๏ธ airplane +โœˆ airplane +๐Ÿ›ฉ๏ธ small airplane +๐Ÿ›ฉ small airplane +๐Ÿ›ซ airplane departure +๐Ÿ›ฌ airplane arrival +๐Ÿช‚ parachute +๐Ÿ’บ seat +๐Ÿš helicopter +๐ŸšŸ suspension railway +๐Ÿš  mountain cableway +๐Ÿšก aerial tramway +๐Ÿ›ฐ๏ธ satellite +๐Ÿ›ฐ satellite +๐Ÿš€ rocket +๐Ÿ›ธ flying saucer +๐Ÿ›Ž๏ธ bellhop bell +๐Ÿ›Ž bellhop bell +๐Ÿงณ luggage +โŒ› hourglass done +โณ hourglass not done +โŒš watch +โฐ alarm clock +โฑ๏ธ stopwatch +โฑ stopwatch +โฒ๏ธ timer clock +โฒ timer clock +๐Ÿ•ฐ๏ธ mantelpiece clock +๐Ÿ•ฐ mantelpiece clock +๐Ÿ•› twelve oโ€™clock +๐Ÿ•ง twelve-thirty +๐Ÿ• one oโ€™clock +๐Ÿ•œ one-thirty +๐Ÿ•‘ two oโ€™clock +๐Ÿ• two-thirty +๐Ÿ•’ three oโ€™clock +๐Ÿ•ž three-thirty +๐Ÿ•“ four oโ€™clock +๐Ÿ•Ÿ four-thirty +๐Ÿ•” five oโ€™clock +๐Ÿ•  five-thirty +๐Ÿ•• six oโ€™clock +๐Ÿ•ก six-thirty +๐Ÿ•– seven oโ€™clock +๐Ÿ•ข seven-thirty +๐Ÿ•— eight oโ€™clock +๐Ÿ•ฃ eight-thirty +๐Ÿ•˜ nine oโ€™clock +๐Ÿ•ค nine-thirty +๐Ÿ•™ ten oโ€™clock +๐Ÿ•ฅ ten-thirty +๐Ÿ•š eleven oโ€™clock +๐Ÿ•ฆ eleven-thirty +๐ŸŒ‘ new moon +๐ŸŒ’ waxing crescent moon +๐ŸŒ“ first quarter moon +๐ŸŒ” waxing gibbous moon +๐ŸŒ• full moon +๐ŸŒ– waning gibbous moon +๐ŸŒ— last quarter moon +๐ŸŒ˜ waning crescent moon +๐ŸŒ™ crescent moon +๐ŸŒš new moon face +๐ŸŒ› first quarter moon face +๐ŸŒœ last quarter moon face +๐ŸŒก๏ธ thermometer +๐ŸŒก thermometer +โ˜€๏ธ sun +โ˜€ sun +๐ŸŒ full moon face +๐ŸŒž sun with face +๐Ÿช ringed planet +โญ star +๐ŸŒŸ glowing star +๐ŸŒ  shooting star +๐ŸŒŒ milky way +โ˜๏ธ cloud +โ˜ cloud +โ›… sun behind cloud +โ›ˆ๏ธ cloud with lightning and rain +โ›ˆ cloud with lightning and rain +๐ŸŒค๏ธ sun behind small cloud +๐ŸŒค sun behind small cloud +๐ŸŒฅ๏ธ sun behind large cloud +๐ŸŒฅ sun behind large cloud +๐ŸŒฆ๏ธ sun behind rain cloud +๐ŸŒฆ sun behind rain cloud +๐ŸŒง๏ธ cloud with rain +๐ŸŒง cloud with rain +๐ŸŒจ๏ธ cloud with snow +๐ŸŒจ cloud with snow +๐ŸŒฉ๏ธ cloud with lightning +๐ŸŒฉ cloud with lightning +๐ŸŒช๏ธ tornado +๐ŸŒช tornado +๐ŸŒซ๏ธ fog +๐ŸŒซ fog +๐ŸŒฌ๏ธ wind face +๐ŸŒฌ wind face +๐ŸŒ€ cyclone +๐ŸŒˆ rainbow +๐ŸŒ‚ closed umbrella +โ˜‚๏ธ umbrella +โ˜‚ umbrella +โ˜” umbrella with rain drops +โ›ฑ๏ธ umbrella on ground +โ›ฑ umbrella on ground +โšก high voltage +โ„๏ธ snowflake +โ„ snowflake +โ˜ƒ๏ธ snowman +โ˜ƒ snowman +โ›„ snowman without snow +โ˜„๏ธ comet +โ˜„ comet +๐Ÿ”ฅ fire +๐Ÿ’ง droplet +๐ŸŒŠ water wave +๐ŸŽƒ jack-o-lantern +๐ŸŽ„ Christmas tree +๐ŸŽ† fireworks +๐ŸŽ‡ sparkler +๐Ÿงจ firecracker +โœจ sparkles +๐ŸŽˆ balloon +๐ŸŽ‰ party popper +๐ŸŽŠ confetti ball +๐ŸŽ‹ tanabata tree +๐ŸŽ pine decoration +๐ŸŽŽ Japanese dolls +๐ŸŽ carp streamer +๐ŸŽ wind chime +๐ŸŽ‘ moon viewing ceremony +๐Ÿงง red envelope +๐ŸŽ€ ribbon +๐ŸŽ wrapped gift +๐ŸŽ—๏ธ reminder ribbon +๐ŸŽ— reminder ribbon +๐ŸŽŸ๏ธ admission tickets +๐ŸŽŸ admission tickets +๐ŸŽซ ticket +๐ŸŽ–๏ธ military medal +๐ŸŽ– military medal +๐Ÿ† trophy +๐Ÿ… sports medal +๐Ÿฅ‡ 1st place medal +๐Ÿฅˆ 2nd place medal +๐Ÿฅ‰ 3rd place medal +โšฝ soccer ball +โšพ baseball +๐ŸฅŽ softball +๐Ÿ€ basketball +๐Ÿ volleyball +๐Ÿˆ american football +๐Ÿ‰ rugby football +๐ŸŽพ tennis +๐Ÿฅ flying disc +๐ŸŽณ bowling +๐Ÿ cricket game +๐Ÿ‘ field hockey +๐Ÿ’ ice hockey +๐Ÿฅ lacrosse +๐Ÿ“ ping pong +๐Ÿธ badminton +๐ŸฅŠ boxing glove +๐Ÿฅ‹ martial arts uniform +๐Ÿฅ… goal net +โ›ณ flag in hole +โ›ธ๏ธ ice skate +โ›ธ ice skate +๐ŸŽฃ fishing pole +๐Ÿคฟ diving mask +๐ŸŽฝ running shirt +๐ŸŽฟ skis +๐Ÿ›ท sled +๐ŸฅŒ curling stonee +๐ŸŽฏ bullseye +๐Ÿช€ yo-yo +๐Ÿช kite +๐Ÿ”ซ water pistol +๐ŸŽฑ pool 8 ball +๐Ÿ”ฎ crystal ball +๐Ÿช„ magic wand +๐ŸŽฎ video game +๐Ÿ•น๏ธ joystick +๐Ÿ•น joystick +๐ŸŽฐ slot machine +๐ŸŽฒ game die +๐Ÿงฉ puzzle piece +๐Ÿงธ teddy bear +๐Ÿช… piรฑata +๐Ÿชฉ mirror ball +๐Ÿช† nesting dolls +โ™ ๏ธ spade suit +โ™  spade suit +โ™ฅ๏ธ heart suit +โ™ฅ heart suit +โ™ฆ๏ธ diamond suit +โ™ฆ diamond suit +โ™ฃ๏ธ club suit +โ™ฃ club suit +โ™Ÿ๏ธ chess pawn +โ™Ÿ chess pawn +๐Ÿƒ joker +๐Ÿ€„ mahjong red dragon +๐ŸŽด flower playing cards +๐ŸŽญ performing arts +๐Ÿ–ผ๏ธ framed picture +๐Ÿ–ผ framed picture +๐ŸŽจ artist palette +๐Ÿงต thread +๐Ÿชก sewing needle +๐Ÿงถ yarn +๐Ÿชข knot +๐Ÿ‘“ glasses +๐Ÿ•ถ๏ธ sunglasses +๐Ÿ•ถ sunglasses +๐Ÿฅฝ goggles +๐Ÿฅผ lab coat +๐Ÿฆบ safety vest +๐Ÿ‘” necktie +๐Ÿ‘• t-shirt +๐Ÿ‘– jeans +๐Ÿงฃ scarf +๐Ÿงค gloves +๐Ÿงฅ coat +๐Ÿงฆ socks +๐Ÿ‘— dress +๐Ÿ‘˜ kimono +๐Ÿฅป sari +๐Ÿฉฑ one-piece swimsuit +๐Ÿฉฒ briefs +๐Ÿฉณ shorts +๐Ÿ‘™ bikini +๐Ÿ‘š womanโ€™s clothes +๐Ÿชญ folding hand fan +๐Ÿ‘› purse +๐Ÿ‘œ handbag +๐Ÿ‘ clutch bag +๐Ÿ›๏ธ shopping bags +๐Ÿ› shopping bags +๐ŸŽ’ backpack +๐Ÿฉด thong sandal +๐Ÿ‘ž manโ€™s shoe +๐Ÿ‘Ÿ running shoe +๐Ÿฅพ hiking boot +๐Ÿฅฟ flat shoe +๐Ÿ‘  high-heeled shoe +๐Ÿ‘ก womanโ€™s sandal +๐Ÿฉฐ ballet shoes +๐Ÿ‘ข womanโ€™s boot +๐Ÿชฎ hair pick +๐Ÿ‘‘ crown +๐Ÿ‘’ womanโ€™s hat +๐ŸŽฉ top hat +๐ŸŽ“ graduation cap +๐Ÿงข billed cap +๐Ÿช– military helmet +โ›‘๏ธ rescue workerโ€™s helmet +โ›‘ rescue workerโ€™s helmet +๐Ÿ“ฟ prayer beads +๐Ÿ’„ lipstick +๐Ÿ’ ring +๐Ÿ’Ž gem stone +๐Ÿ”‡ muted speaker +๐Ÿ”ˆ speaker low volume +๐Ÿ”‰ speaker medium volume +๐Ÿ”Š speaker high volume +๐Ÿ“ข loudspeaker +๐Ÿ“ฃ megaphone +๐Ÿ“ฏ postal horn +๐Ÿ”” bell +๐Ÿ”• bell with slash +๐ŸŽผ musical score +๐ŸŽต musical note +๐ŸŽถ musical notes +๐ŸŽ™๏ธ studio microphone +๐ŸŽ™ studio microphone +๐ŸŽš๏ธ level slider +๐ŸŽš level slider +๐ŸŽ›๏ธ control knobs +๐ŸŽ› control knobs +๐ŸŽค microphone +๐ŸŽง headphone +๐Ÿ“ป radio +๐ŸŽท saxophone +๐Ÿช— accordion +๐ŸŽธ guitar +๐ŸŽน musical keyboard +๐ŸŽบ trumpet +๐ŸŽป violin +๐Ÿช• banjo +๐Ÿฅ drum +๐Ÿช˜ long drum +๐Ÿช‡ maracas +๐Ÿชˆ flute +๐Ÿช‰ harp +๐Ÿ“ฑ mobile phone +๐Ÿ“ฒ mobile phone with arrow +โ˜Ž๏ธ telephone +โ˜Ž telephone +๐Ÿ“ž telephone receiver +๐Ÿ“Ÿ pager +๐Ÿ“  fax machine +๐Ÿ”‹ battery +๐Ÿชซ low battery +๐Ÿ”Œ electric plug +๐Ÿ’ป laptop +๐Ÿ–ฅ๏ธ desktop computer +๐Ÿ–ฅ desktop computer +๐Ÿ–จ๏ธ printer +๐Ÿ–จ printer +โŒจ๏ธ keyboard +โŒจ keyboard +๐Ÿ–ฑ๏ธ computer mouse +๐Ÿ–ฑ computer mouse +๐Ÿ–ฒ๏ธ trackball +๐Ÿ–ฒ trackball +๐Ÿ’ฝ computer disk +๐Ÿ’พ floppy disk +๐Ÿ’ฟ optical disk +๐Ÿ“€ dvd +๐Ÿงฎ abacus +๐ŸŽฅ movie camera +๐ŸŽž๏ธ film frames +๐ŸŽž film frames +๐Ÿ“ฝ๏ธ film projector +๐Ÿ“ฝ film projector +๐ŸŽฌ clapper board +๐Ÿ“บ television +๐Ÿ“ท camera +๐Ÿ“ธ camera with flash +๐Ÿ“น video camera +๐Ÿ“ผ videocassette +๐Ÿ” magnifying glass tilted left +๐Ÿ”Ž magnifying glass tilted right +๐Ÿ•ฏ๏ธ candle +๐Ÿ•ฏ candle +๐Ÿ’ก light bulb +๐Ÿ”ฆ flashlight +๐Ÿฎ red paper lantern +๐Ÿช” diya lamp +๐Ÿ“” notebook with decorative cover +๐Ÿ“• closed book +๐Ÿ“– open book +๐Ÿ“— green book +๐Ÿ“˜ blue book +๐Ÿ“™ orange book +๐Ÿ“š books +๐Ÿ““ notebook +๐Ÿ“’ ledger +๐Ÿ“ƒ page with curl +๐Ÿ“œ scroll +๐Ÿ“„ page facing up +๐Ÿ“ฐ newspaper +๐Ÿ—ž๏ธ rolled-up newspaper +๐Ÿ—ž rolled-up newspaper +๐Ÿ“‘ bookmark tabs +๐Ÿ”– bookmark +๐Ÿท๏ธ label +๐Ÿท label +๐Ÿ’ฐ money bag +๐Ÿช™ coin +๐Ÿ’ด yen banknote +๐Ÿ’ต dollar banknote +๐Ÿ’ถ euro banknote +๐Ÿ’ท pound banknote +๐Ÿ’ธ money with wings +๐Ÿ’ณ credit card +๐Ÿงพ receipt +๐Ÿ’น chart increasing with yen +โœ‰๏ธ envelope +โœ‰ envelope +๐Ÿ“ง e-mail +๐Ÿ“จ incoming envelope +๐Ÿ“ฉ envelope with arrow +๐Ÿ“ค outbox tray +๐Ÿ“ฅ inbox tray +๐Ÿ“ฆ package +๐Ÿ“ซ closed mailbox with raised flag +๐Ÿ“ช closed mailbox with lowered flag +๐Ÿ“ฌ open mailbox with raised flag +๐Ÿ“ญ open mailbox with lowered flag +๐Ÿ“ฎ postbox +๐Ÿ—ณ๏ธ ballot box with ballot +๐Ÿ—ณ ballot box with ballot +โœ๏ธ pencil +โœ pencil +โœ’๏ธ black nib +โœ’ black nib +๐Ÿ–‹๏ธ fountain pen +๐Ÿ–‹ fountain pen +๐Ÿ–Š๏ธ pen +๐Ÿ–Š pen +๐Ÿ–Œ๏ธ paintbrush +๐Ÿ–Œ paintbrush +๐Ÿ–๏ธ crayon +๐Ÿ– crayon +๐Ÿ“ memo +๐Ÿ’ผ briefcase +๐Ÿ“ file folder +๐Ÿ“‚ open file folder +๐Ÿ—‚๏ธ card index dividers +๐Ÿ—‚ card index dividers +๐Ÿ“… calendar +๐Ÿ“† tear-off calendar +๐Ÿ—’๏ธ spiral notepad +๐Ÿ—’ spiral notepad +๐Ÿ—“๏ธ spiral calendar +๐Ÿ—“ spiral calendar +๐Ÿ“‡ card index +๐Ÿ“ˆ chart increasing +๐Ÿ“‰ chart decreasing +๐Ÿ“Š bar chart +๐Ÿ“‹ clipboard +๐Ÿ“Œ pushpin +๐Ÿ“ round pushpin +๐Ÿ“Ž paperclip +๐Ÿ–‡๏ธ linked paperclips +๐Ÿ–‡ linked paperclips +๐Ÿ“ straight ruler +๐Ÿ“ triangular ruler +โœ‚๏ธ scissors +โœ‚ scissors +๐Ÿ—ƒ๏ธ card file box +๐Ÿ—ƒ card file box +๐Ÿ—„๏ธ file cabinet +๐Ÿ—„ file cabinet +๐Ÿ—‘๏ธ wastebasket +๐Ÿ—‘ wastebasket +๐Ÿ”’ locked +๐Ÿ”“ unlocked +๐Ÿ” locked with pen +๐Ÿ” locked with key +๐Ÿ”‘ key +๐Ÿ—๏ธ old key +๐Ÿ— old key +๐Ÿ”จ hammer +๐Ÿช“ axe +โ›๏ธ pick +โ› pick +โš’๏ธ hammer and pick +โš’ hammer and pick +๐Ÿ› ๏ธ hammer and wrench +๐Ÿ›  hammer and wrench +๐Ÿ—ก๏ธ dagger +๐Ÿ—ก dagger +โš”๏ธ crossed swords +โš” crossed swords +๐Ÿ’ฃ bomb +๐Ÿชƒ boomerang +๐Ÿน bow and arrow +๐Ÿ›ก๏ธ shield +๐Ÿ›ก shield +๐Ÿชš carpentry saw +๐Ÿ”ง wrench +๐Ÿช› screwdriver +๐Ÿ”ฉ nut and bolt +โš™๏ธ gear +โš™ gear +๐Ÿ—œ๏ธ clamp +๐Ÿ—œ clamp +โš–๏ธ balance scale +โš– balance scale +๐Ÿฆฏ white cane +๐Ÿ”— link +โ›“๏ธโ€๐Ÿ’ฅ broken chain +โ›“โ€๐Ÿ’ฅ broken chain +โ›“๏ธ chains +โ›“ chains +๐Ÿช hook +๐Ÿงฐ toolbox +๐Ÿงฒ magnet +๐Ÿชœ ladder +๐Ÿช shovel +โš—๏ธ alembic +โš— alembic +๐Ÿงช test tube +๐Ÿงซ petri dish +๐Ÿงฌ dna +๐Ÿ”ฌ microscope +๐Ÿ”ญ telescope +๐Ÿ“ก satellite antenna +๐Ÿ’‰ syringe +๐Ÿฉธ drop of blood +๐Ÿ’Š pill +๐Ÿฉน adhesive bandage +๐Ÿฉผ crutch +๐Ÿฉบ stethoscope +๐Ÿฉป x-ray +๐Ÿšช door +๐Ÿ›— elevator +๐Ÿชž mirror +๐ŸชŸ window +๐Ÿ›๏ธ bed +๐Ÿ› bed +๐Ÿ›‹๏ธ couch and lamp +๐Ÿ›‹ couch and lamp +๐Ÿช‘ chair +๐Ÿšฝ toilet +๐Ÿช  plunger +๐Ÿšฟ shower +๐Ÿ› bathtub +๐Ÿชค mouse trap +๐Ÿช’ razor +๐Ÿงด lotion bottle +๐Ÿงท safety pin +๐Ÿงน broom +๐Ÿงบ basket +๐Ÿงป roll of paper +๐Ÿชฃ bucket +๐Ÿงผ soap +๐Ÿซง bubbles +๐Ÿชฅ toothbrush +๐Ÿงฝ sponge +๐Ÿงฏ fire extinguisher +๐Ÿ›’ shopping cart +๐Ÿšฌ cigarette +โšฐ๏ธ coffin +โšฐ coffin +๐Ÿชฆ headstone +โšฑ๏ธ funeral urn +โšฑ funeral urn +๐Ÿงฟ nazar amulet +๐Ÿชฌ hamsa +๐Ÿ—ฟ moai +๐Ÿชง placard +๐Ÿชช identification card +๐Ÿง ATM sign +๐Ÿšฎ litter in bin sign +๐Ÿšฐ potable water +โ™ฟ wheelchair symbol +๐Ÿšน menโ€™s room +๐Ÿšบ womenโ€™s room +๐Ÿšป restroom +๐Ÿšผ baby symbol +๐Ÿšพ water closet +๐Ÿ›‚ passport control +๐Ÿ›ƒ customs +๐Ÿ›„ baggage claim +๐Ÿ›… left luggage +โš ๏ธ warning +โš  warning +๐Ÿšธ children crossing +โ›” no entry +๐Ÿšซ prohibited +๐Ÿšณ no bicycles +๐Ÿšญ no smoking +๐Ÿšฏ no littering +๐Ÿšฑ non-potable water +๐Ÿšท no pedestrians +๐Ÿ“ต no mobile phones +๐Ÿ”ž no one under eighteen +โ˜ข๏ธ radioactive +โ˜ข radioactive +โ˜ฃ๏ธ biohazard +โ˜ฃ biohazard +โฌ†๏ธ up arrow +โฌ† up arrow +โ†—๏ธ up-right arrow +โ†— up-right arrow +โžก๏ธ right arrow +โžก right arrow +โ†˜๏ธ down-right arrow +โ†˜ down-right arrow +โฌ‡๏ธ down arrow +โฌ‡ down arrow +โ†™๏ธ down-left arrow +โ†™ down-left arrow +โฌ…๏ธ left arrow +โฌ… left arrow +โ†–๏ธ up-left arrow +โ†– up-left arrow +โ†•๏ธ up-down arrow +โ†• up-down arrow +โ†”๏ธ left-right arrow +โ†” left-right arrow +โ†ฉ๏ธ right arrow curving left +โ†ฉ right arrow curving left +โ†ช๏ธ left arrow curving right +โ†ช left arrow curving right +โคด๏ธ right arrow curving up +โคด right arrow curving up +โคต๏ธ right arrow curving down +โคต right arrow curving down +๐Ÿ”ƒ clockwise vertical arrows +๐Ÿ”„ counterclockwise arrows button +๐Ÿ”™ BACK arrow +๐Ÿ”š END arrow +๐Ÿ”› ON! arrow +๐Ÿ”œ SOON arrow +๐Ÿ” TOP arrow +๐Ÿ› place of worship +โš›๏ธ atom symbol +โš› atom symbol +๐Ÿ•‰๏ธ om +๐Ÿ•‰ om +โœก๏ธ star of David +โœก star of David +โ˜ธ๏ธ wheel of dharma +โ˜ธ wheel of dharma +โ˜ฏ๏ธ yin yang +โ˜ฏ yin yang +โœ๏ธ latin cross +โœ latin cross +โ˜ฆ๏ธ orthodox cross +โ˜ฆ orthodox cross +โ˜ช๏ธ star and crescent +โ˜ช star and crescent +โ˜ฎ๏ธ peace symbol +โ˜ฎ peace symbol +๐Ÿ•Ž menorah +๐Ÿ”ฏ dotted six-pointed star +๐Ÿชฏ khanda +โ™ˆ Aries +โ™‰ Taurus +โ™Š Gemini +โ™‹ Cancer +โ™Œ Leo +โ™ Virgo +โ™Ž Libra +โ™ Scorpio +โ™ Sagittarius +โ™‘ Capricorn +โ™’ Aquarius +โ™“ Pisces +โ›Ž Ophiuchus +๐Ÿ”€ shuffle tracks button +๐Ÿ” repeat button +๐Ÿ”‚ repeat single button +โ–ถ๏ธ play button +โ–ถ play button +โฉ fast-forward button +โญ๏ธ next track button +โญ next track button +โฏ๏ธ play or pause button +โฏ play or pause button +โ—€๏ธ reverse button +โ—€ reverse button +โช fast reverse button +โฎ๏ธ last track button +โฎ last track button +๐Ÿ”ผ upwards button +โซ fast up button +๐Ÿ”ฝ downwards button +โฌ fast down button +โธ๏ธ pause button +โธ pause button +โน๏ธ stop button +โน stop button +โบ๏ธ record button +โบ record button +โ๏ธ eject button +โ eject button +๐ŸŽฆ cinema +๐Ÿ”… dim button +๐Ÿ”† bright button +๐Ÿ“ถ antenna bars +๐Ÿ›œ wireless +๐Ÿ“ณ vibration mode +๐Ÿ“ด mobile phone off +โ™€๏ธ female sign +โ™€ female sign +โ™‚๏ธ male sign +โ™‚ male sign +โšง๏ธ transgender symbol +โšง transgender symbol +โœ–๏ธ multiply +โœ– multiply +โž• plus +โž– minus +โž— divide +๐ŸŸฐ heavy equals sign +โ™พ๏ธ infinity +โ™พ infinity +โ€ผ๏ธ double exclamation mark +โ€ผ double exclamation mark +โ‰๏ธ exclamation question mark +โ‰ exclamation question mark +โ“ red question mark +โ” white question mark +โ• white exclamation mark +โ— red exclamation mark +ใ€ฐ๏ธ wavy dash +ใ€ฐ wavy dash +๐Ÿ’ฑ currency exchange +๐Ÿ’ฒ heavy dollar sign +โš•๏ธ medical symbol +โš• medical symbol +โ™ป๏ธ recycling symbol +โ™ป recycling symbol +โšœ๏ธ fleur-de-lis +โšœ fleur-de-lis +๐Ÿ”ฑ trident emblem +๐Ÿ“› name badge +๐Ÿ”ฐ Japanese symbol for beginner +โญ• hollow red circle +โœ… check mark button +โ˜‘๏ธ check box with check +โ˜‘ check box with check +โœ”๏ธ check mark +โœ” check mark +โŒ cross mark +โŽ cross mark button +โžฐ curly loop +โžฟ double curly loop +ใ€ฝ๏ธ part alternation mark +ใ€ฝ part alternation mark +โœณ๏ธ eight-spoked asterisk +โœณ eight-spoked asterisk +โœด๏ธ eight-pointed star +โœด eight-pointed star +โ‡๏ธ sparkle +โ‡ sparkle +ยฉ๏ธ copyright +ยฉ copyright +ยฎ๏ธ registered +ยฎ registered +โ„ข๏ธ trade mark +โ„ข trade mark +๐ŸซŸ splatter +#๏ธโƒฃ keycap: # +#โƒฃ keycap: # +*๏ธโƒฃ keycap: * +*โƒฃ keycap: * +0๏ธโƒฃ keycap: 0 +0โƒฃ keycap: 0 +1๏ธโƒฃ keycap: 1 +1โƒฃ keycap: 1 +2๏ธโƒฃ keycap: 2 +2โƒฃ keycap: 2 +3๏ธโƒฃ keycap: 3 +3โƒฃ keycap: 3 +4๏ธโƒฃ keycap: 4 +4โƒฃ keycap: 4 +5๏ธโƒฃ keycap: 5 +5โƒฃ keycap: 5 +6๏ธโƒฃ keycap: 6 +6โƒฃ keycap: 6 +7๏ธโƒฃ keycap: 7 +7โƒฃ keycap: 7 +8๏ธโƒฃ keycap: 8 +8โƒฃ keycap: 8 +9๏ธโƒฃ keycap: 9 +9โƒฃ keycap: 9 +๐Ÿ”Ÿ keycap: 10 +๐Ÿ”  input latin uppercase +๐Ÿ”ก input latin lowercase +๐Ÿ”ข input numbers +๐Ÿ”ฃ input symbols +๐Ÿ”ค input latin letters +๐Ÿ…ฐ๏ธ A button (blood type) +๐Ÿ…ฐ A button (blood type) +๐Ÿ†Ž AB button (blood type) +๐Ÿ…ฑ๏ธ B button (blood type) +๐Ÿ…ฑ B button (blood type) +๐Ÿ†‘ CL button +๐Ÿ†’ COOL button +๐Ÿ†“ FREE button +โ„น๏ธ information +โ„น information +๐Ÿ†” ID button +โ“‚๏ธ circled M +โ“‚ circled M +๐Ÿ†• NEW button +๐Ÿ†– NG button +๐Ÿ…พ๏ธ O button (blood type) +๐Ÿ…พ O button (blood type) +๐Ÿ†— OK button +๐Ÿ…ฟ๏ธ P button +๐Ÿ…ฟ P button +๐Ÿ†˜ SOS button +๐Ÿ†™ UP! button +๐Ÿ†š VS button +๐Ÿˆ Japanese โ€œhereโ€ button +๐Ÿˆ‚๏ธ Japanese โ€œservice chargeโ€ button +๐Ÿˆ‚ Japanese โ€œservice chargeโ€ button +๐Ÿˆท๏ธ Japanese โ€œmonthly amountโ€ button +๐Ÿˆท Japanese โ€œmonthly amountโ€ button +๐Ÿˆถ Japanese โ€œnot free of chargeโ€ button +๐Ÿˆฏ Japanese โ€œreservedโ€ button +๐Ÿ‰ Japanese โ€œbargainโ€ button +๐Ÿˆน Japanese โ€œdiscountโ€ button +๐Ÿˆš Japanese โ€œfree of chargeโ€ button +๐Ÿˆฒ Japanese โ€œprohibitedโ€ button +๐Ÿ‰‘ Japanese โ€œacceptableโ€ button +๐Ÿˆธ Japanese โ€œapplicationโ€ button +๐Ÿˆด Japanese โ€œpassing gradeโ€ button +๐Ÿˆณ Japanese โ€œvacancyโ€ button +ใŠ—๏ธ Japanese โ€œcongratulationsโ€ button +ใŠ— Japanese โ€œcongratulationsโ€ button +ใŠ™๏ธ Japanese โ€œsecretโ€ button +ใŠ™ Japanese โ€œsecretโ€ button +๐Ÿˆบ Japanese โ€œopen for businessโ€ button +๐Ÿˆต Japanese โ€œno vacancyโ€ button +๐Ÿ”ด red circle +๐ŸŸ  orange circle +๐ŸŸก yellow circle +๐ŸŸข green circle +๐Ÿ”ต blue circle +๐ŸŸฃ purple circle +๐ŸŸค brown circle +โšซ black circle +โšช white circle +๐ŸŸฅ red square +๐ŸŸง orange square +๐ŸŸจ yellow square +๐ŸŸฉ green square +๐ŸŸฆ blue square +๐ŸŸช purple square +๐ŸŸซ brown square +โฌ› black large square +โฌœ white large square +โ—ผ๏ธ black medium square +โ—ผ black medium square +โ—ป๏ธ white medium square +โ—ป white medium square +โ—พ black medium-small square +โ—ฝ white medium-small square +โ–ช๏ธ black small square +โ–ช black small square +โ–ซ๏ธ white small square +โ–ซ white small square +๐Ÿ”ถ large orange diamond +๐Ÿ”ท large blue diamond +๐Ÿ”ธ small orange diamond +๐Ÿ”น small blue diamond +๐Ÿ”บ red triangle pointed up +๐Ÿ”ป red triangle pointed down +๐Ÿ’  diamond with a dot +๐Ÿ”˜ radio button +๐Ÿ”ณ white square button +๐Ÿ”ฒ black square button +๐Ÿ chequered flag +๐Ÿšฉ triangular flag +๐ŸŽŒ crossed flags +๐Ÿด black flag +๐Ÿณ๏ธ white flag +๐Ÿณ white flag +๐Ÿณ๏ธโ€๐ŸŒˆ rainbow flag +๐Ÿณโ€๐ŸŒˆ rainbow flag +๐Ÿณ๏ธโ€โšง๏ธ transgender flag +๐Ÿณโ€โšง๏ธ transgender flag +๐Ÿณ๏ธโ€โšง transgender flag +๐Ÿณโ€โšง transgender flag +๐Ÿดโ€โ˜ ๏ธ pirate flag +๐Ÿดโ€โ˜  pirate flag +๐Ÿ‡ฆ๐Ÿ‡จ flag: Ascension Island +๐Ÿ‡ฆ๐Ÿ‡ฉ flag: Andorra +๐Ÿ‡ฆ๐Ÿ‡ช flag: United Arab Emirates +๐Ÿ‡ฆ๐Ÿ‡ซ flag: Afghanistan +๐Ÿ‡ฆ๐Ÿ‡ฌ flag: Antigua & Barbuda +๐Ÿ‡ฆ๐Ÿ‡ฎ flag: Anguilla +๐Ÿ‡ฆ๐Ÿ‡ฑ flag: Albania +๐Ÿ‡ฆ๐Ÿ‡ฒ flag: Armenia +๐Ÿ‡ฆ๐Ÿ‡ด flag: Angola +๐Ÿ‡ฆ๐Ÿ‡ถ flag: Antarctica +๐Ÿ‡ฆ๐Ÿ‡ท flag: Argentina +๐Ÿ‡ฆ๐Ÿ‡ธ flag: American Samoa +๐Ÿ‡ฆ๐Ÿ‡น flag: Austria +๐Ÿ‡ฆ๐Ÿ‡บ flag: Australia +๐Ÿ‡ฆ๐Ÿ‡ผ flag: Aruba +๐Ÿ‡ฆ๐Ÿ‡ฝ flag: ร…land Islands +๐Ÿ‡ฆ๐Ÿ‡ฟ flag: Azerbaijan +๐Ÿ‡ง๐Ÿ‡ฆ flag: Bosnia & Herzegovina +๐Ÿ‡ง๐Ÿ‡ง flag: Barbados +๐Ÿ‡ง๐Ÿ‡ฉ flag: Bangladesh +๐Ÿ‡ง๐Ÿ‡ช flag: Belgium +๐Ÿ‡ง๐Ÿ‡ซ flag: Burkina Faso +๐Ÿ‡ง๐Ÿ‡ฌ flag: Bulgaria +๐Ÿ‡ง๐Ÿ‡ญ flag: Bahrain +๐Ÿ‡ง๐Ÿ‡ฎ flag: Burundi +๐Ÿ‡ง๐Ÿ‡ฏ flag: Benin +๐Ÿ‡ง๐Ÿ‡ฑ flag: St. Barthรฉlemy +๐Ÿ‡ง๐Ÿ‡ฒ flag: Bermuda +๐Ÿ‡ง๐Ÿ‡ณ flag: Brunei +๐Ÿ‡ง๐Ÿ‡ด flag: Bolivia +๐Ÿ‡ง๐Ÿ‡ถ flag: Caribbean Netherlands +๐Ÿ‡ง๐Ÿ‡ท flag: Brazil +๐Ÿ‡ง๐Ÿ‡ธ flag: Bahamas +๐Ÿ‡ง๐Ÿ‡น flag: Bhutan +๐Ÿ‡ง๐Ÿ‡ป flag: Bouvet Island +๐Ÿ‡ง๐Ÿ‡ผ flag: Botswana +๐Ÿ‡ง๐Ÿ‡พ flag: Belarus +๐Ÿ‡ง๐Ÿ‡ฟ flag: Belize +๐Ÿ‡จ๐Ÿ‡ฆ flag: Canada +๐Ÿ‡จ๐Ÿ‡จ flag: Cocos (Keeling) Islands +๐Ÿ‡จ๐Ÿ‡ฉ flag: Congo - Kinshasa +๐Ÿ‡จ๐Ÿ‡ซ flag: Central African Republic +๐Ÿ‡จ๐Ÿ‡ฌ flag: Congo - Brazzaville +๐Ÿ‡จ๐Ÿ‡ญ flag: Switzerland +๐Ÿ‡จ๐Ÿ‡ฎ flag: Cรดte dโ€™Ivoire +๐Ÿ‡จ๐Ÿ‡ฐ flag: Cook Islands +๐Ÿ‡จ๐Ÿ‡ฑ flag: Chile +๐Ÿ‡จ๐Ÿ‡ฒ flag: Cameroon +๐Ÿ‡จ๐Ÿ‡ณ flag: China +๐Ÿ‡จ๐Ÿ‡ด flag: Colombia +๐Ÿ‡จ๐Ÿ‡ต flag: Clipperton Island +๐Ÿ‡จ๐Ÿ‡ถ flag: Sark +๐Ÿ‡จ๐Ÿ‡ท flag: Costa Rica +๐Ÿ‡จ๐Ÿ‡บ flag: Cuba +๐Ÿ‡จ๐Ÿ‡ป flag: Cape Verde +๐Ÿ‡จ๐Ÿ‡ผ flag: Curaรงao +๐Ÿ‡จ๐Ÿ‡ฝ flag: Christmas Island +๐Ÿ‡จ๐Ÿ‡พ flag: Cyprus +๐Ÿ‡จ๐Ÿ‡ฟ flag: Czechia +๐Ÿ‡ฉ๐Ÿ‡ช flag: Germany +๐Ÿ‡ฉ๐Ÿ‡ฌ flag: Diego Garcia +๐Ÿ‡ฉ๐Ÿ‡ฏ flag: Djibouti +๐Ÿ‡ฉ๐Ÿ‡ฐ flag: Denmark +๐Ÿ‡ฉ๐Ÿ‡ฒ flag: Dominica +๐Ÿ‡ฉ๐Ÿ‡ด flag: Dominican Republic +๐Ÿ‡ฉ๐Ÿ‡ฟ flag: Algeria +๐Ÿ‡ช๐Ÿ‡ฆ flag: Ceuta & Melilla +๐Ÿ‡ช๐Ÿ‡จ flag: Ecuador +๐Ÿ‡ช๐Ÿ‡ช flag: Estonia +๐Ÿ‡ช๐Ÿ‡ฌ flag: Egypt +๐Ÿ‡ช๐Ÿ‡ญ flag: Western Sahara +๐Ÿ‡ช๐Ÿ‡ท flag: Eritrea +๐Ÿ‡ช๐Ÿ‡ธ flag: Spain +๐Ÿ‡ช๐Ÿ‡น flag: Ethiopia +๐Ÿ‡ช๐Ÿ‡บ flag: European Union +๐Ÿ‡ซ๐Ÿ‡ฎ flag: Finland +๐Ÿ‡ซ๐Ÿ‡ฏ flag: Fiji +๐Ÿ‡ซ๐Ÿ‡ฐ flag: Falkland Islands +๐Ÿ‡ซ๐Ÿ‡ฒ flag: Micronesia +๐Ÿ‡ซ๐Ÿ‡ด flag: Faroe Islands +๐Ÿ‡ซ๐Ÿ‡ท flag: France +๐Ÿ‡ฌ๐Ÿ‡ฆ flag: Gabon +๐Ÿ‡ฌ๐Ÿ‡ง flag: United Kingdom +๐Ÿ‡ฌ๐Ÿ‡ฉ flag: Grenada +๐Ÿ‡ฌ๐Ÿ‡ช flag: Georgia +๐Ÿ‡ฌ๐Ÿ‡ซ flag: French Guiana +๐Ÿ‡ฌ๐Ÿ‡ฌ flag: Guernsey +๐Ÿ‡ฌ๐Ÿ‡ญ flag: Ghana +๐Ÿ‡ฌ๐Ÿ‡ฎ flag: Gibraltar +๐Ÿ‡ฌ๐Ÿ‡ฑ flag: Greenland +๐Ÿ‡ฌ๐Ÿ‡ฒ flag: Gambia +๐Ÿ‡ฌ๐Ÿ‡ณ flag: Guinea +๐Ÿ‡ฌ๐Ÿ‡ต flag: Guadeloupe +๐Ÿ‡ฌ๐Ÿ‡ถ flag: Equatorial Guinea +๐Ÿ‡ฌ๐Ÿ‡ท flag: Greece +๐Ÿ‡ฌ๐Ÿ‡ธ flag: South Georgia & South Sandwich Islands +๐Ÿ‡ฌ๐Ÿ‡น flag: Guatemala +๐Ÿ‡ฌ๐Ÿ‡บ flag: Guam +๐Ÿ‡ฌ๐Ÿ‡ผ flag: Guinea-Bissau +๐Ÿ‡ฌ๐Ÿ‡พ flag: Guyana +๐Ÿ‡ญ๐Ÿ‡ฐ flag: Hong Kong SAR China +๐Ÿ‡ญ๐Ÿ‡ฒ flag: Heard & McDonald Islands +๐Ÿ‡ญ๐Ÿ‡ณ flag: Honduras +๐Ÿ‡ญ๐Ÿ‡ท flag: Croatia +๐Ÿ‡ญ๐Ÿ‡น flag: Haiti +๐Ÿ‡ญ๐Ÿ‡บ flag: Hungary +๐Ÿ‡ฎ๐Ÿ‡จ flag: Canary Islands +๐Ÿ‡ฎ๐Ÿ‡ฉ flag: Indonesia +๐Ÿ‡ฎ๐Ÿ‡ช flag: Ireland +๐Ÿ‡ฎ๐Ÿ‡ฑ flag: Israel +๐Ÿ‡ฎ๐Ÿ‡ฒ flag: Isle of Man +๐Ÿ‡ฎ๐Ÿ‡ณ flag: India +๐Ÿ‡ฎ๐Ÿ‡ด flag: British Indian Ocean Territory +๐Ÿ‡ฎ๐Ÿ‡ถ flag: Iraq +๐Ÿ‡ฎ๐Ÿ‡ท flag: Iran +๐Ÿ‡ฎ๐Ÿ‡ธ flag: Iceland +๐Ÿ‡ฎ๐Ÿ‡น flag: Italy +๐Ÿ‡ฏ๐Ÿ‡ช flag: Jersey +๐Ÿ‡ฏ๐Ÿ‡ฒ flag: Jamaica +๐Ÿ‡ฏ๐Ÿ‡ด flag: Jordan +๐Ÿ‡ฏ๐Ÿ‡ต flag: Japan +๐Ÿ‡ฐ๐Ÿ‡ช flag: Kenya +๐Ÿ‡ฐ๐Ÿ‡ฌ flag: Kyrgyzstan +๐Ÿ‡ฐ๐Ÿ‡ญ flag: Cambodia +๐Ÿ‡ฐ๐Ÿ‡ฎ flag: Kiribati +๐Ÿ‡ฐ๐Ÿ‡ฒ flag: Comoros +๐Ÿ‡ฐ๐Ÿ‡ณ flag: St. Kitts & Nevis +๐Ÿ‡ฐ๐Ÿ‡ต flag: North Korea +๐Ÿ‡ฐ๐Ÿ‡ท flag: South Korea +๐Ÿ‡ฐ๐Ÿ‡ผ flag: Kuwait +๐Ÿ‡ฐ๐Ÿ‡พ flag: Cayman Islands +๐Ÿ‡ฐ๐Ÿ‡ฟ flag: Kazakhstan +๐Ÿ‡ฑ๐Ÿ‡ฆ flag: Laos +๐Ÿ‡ฑ๐Ÿ‡ง flag: Lebanon +๐Ÿ‡ฑ๐Ÿ‡จ flag: St. Lucia +๐Ÿ‡ฑ๐Ÿ‡ฎ flag: Liechtenstein +๐Ÿ‡ฑ๐Ÿ‡ฐ flag: Sri Lanka +๐Ÿ‡ฑ๐Ÿ‡ท flag: Liberia +๐Ÿ‡ฑ๐Ÿ‡ธ flag: Lesotho +๐Ÿ‡ฑ๐Ÿ‡น flag: Lithuania +๐Ÿ‡ฑ๐Ÿ‡บ flag: Luxembourg +๐Ÿ‡ฑ๐Ÿ‡ป flag: Latvia +๐Ÿ‡ฑ๐Ÿ‡พ flag: Libya +๐Ÿ‡ฒ๐Ÿ‡ฆ flag: Morocco +๐Ÿ‡ฒ๐Ÿ‡จ flag: Monaco +๐Ÿ‡ฒ๐Ÿ‡ฉ flag: Moldova +๐Ÿ‡ฒ๐Ÿ‡ช flag: Montenegro +๐Ÿ‡ฒ๐Ÿ‡ซ flag: St. Martin +๐Ÿ‡ฒ๐Ÿ‡ฌ flag: Madagascar +๐Ÿ‡ฒ๐Ÿ‡ญ flag: Marshall Islands +๐Ÿ‡ฒ๐Ÿ‡ฐ flag: North Macedonia +๐Ÿ‡ฒ๐Ÿ‡ฑ flag: Mali +๐Ÿ‡ฒ๐Ÿ‡ฒ flag: Myanmar (Burma) +๐Ÿ‡ฒ๐Ÿ‡ณ flag: Mongolia +๐Ÿ‡ฒ๐Ÿ‡ด flag: Macao SAR China +๐Ÿ‡ฒ๐Ÿ‡ต flag: Northern Mariana Islands +๐Ÿ‡ฒ๐Ÿ‡ถ flag: Martinique +๐Ÿ‡ฒ๐Ÿ‡ท flag: Mauritania +๐Ÿ‡ฒ๐Ÿ‡ธ flag: Montserrat +๐Ÿ‡ฒ๐Ÿ‡น flag: Malta +๐Ÿ‡ฒ๐Ÿ‡บ flag: Mauritius +๐Ÿ‡ฒ๐Ÿ‡ป flag: Maldives +๐Ÿ‡ฒ๐Ÿ‡ผ flag: Malawi +๐Ÿ‡ฒ๐Ÿ‡ฝ flag: Mexico +๐Ÿ‡ฒ๐Ÿ‡พ flag: Malaysia +๐Ÿ‡ฒ๐Ÿ‡ฟ flag: Mozambique +๐Ÿ‡ณ๐Ÿ‡ฆ flag: Namibia +๐Ÿ‡ณ๐Ÿ‡จ flag: New Caledonia +๐Ÿ‡ณ๐Ÿ‡ช flag: Niger +๐Ÿ‡ณ๐Ÿ‡ซ flag: Norfolk Island +๐Ÿ‡ณ๐Ÿ‡ฌ flag: Nigeria +๐Ÿ‡ณ๐Ÿ‡ฎ flag: Nicaragua +๐Ÿ‡ณ๐Ÿ‡ฑ flag: Netherlands +๐Ÿ‡ณ๐Ÿ‡ด flag: Norway +๐Ÿ‡ณ๐Ÿ‡ต flag: Nepal +๐Ÿ‡ณ๐Ÿ‡ท flag: Nauru +๐Ÿ‡ณ๐Ÿ‡บ flag: Niue +๐Ÿ‡ณ๐Ÿ‡ฟ flag: New Zealand +๐Ÿ‡ด๐Ÿ‡ฒ flag: Oman +๐Ÿ‡ต๐Ÿ‡ฆ flag: Panama +๐Ÿ‡ต๐Ÿ‡ช flag: Peru +๐Ÿ‡ต๐Ÿ‡ซ flag: French Polynesia +๐Ÿ‡ต๐Ÿ‡ฌ flag: Papua New Guinea +๐Ÿ‡ต๐Ÿ‡ญ flag: Philippines +๐Ÿ‡ต๐Ÿ‡ฐ flag: Pakistan +๐Ÿ‡ต๐Ÿ‡ฑ flag: Poland +๐Ÿ‡ต๐Ÿ‡ฒ flag: St. Pierre & Miquelon +๐Ÿ‡ต๐Ÿ‡ณ flag: Pitcairn Islands +๐Ÿ‡ต๐Ÿ‡ท flag: Puerto Rico +๐Ÿ‡ต๐Ÿ‡ธ flag: Palestinian Territories +๐Ÿ‡ต๐Ÿ‡น flag: Portugal +๐Ÿ‡ต๐Ÿ‡ผ flag: Palau +๐Ÿ‡ต๐Ÿ‡พ flag: Paraguay +๐Ÿ‡ถ๐Ÿ‡ฆ flag: Qatar +๐Ÿ‡ท๐Ÿ‡ช flag: Rรฉunion +๐Ÿ‡ท๐Ÿ‡ด flag: Romania +๐Ÿ‡ท๐Ÿ‡ธ flag: Serbia +๐Ÿ‡ท๐Ÿ‡บ flag: Russia +๐Ÿ‡ท๐Ÿ‡ผ flag: Rwanda +๐Ÿ‡ธ๐Ÿ‡ฆ flag: Saudi Arabia +๐Ÿ‡ธ๐Ÿ‡ง flag: Solomon Islands +๐Ÿ‡ธ๐Ÿ‡จ flag: Seychelles +๐Ÿ‡ธ๐Ÿ‡ฉ flag: Sudan +๐Ÿ‡ธ๐Ÿ‡ช flag: Sweden +๐Ÿ‡ธ๐Ÿ‡ฌ flag: Singapore +๐Ÿ‡ธ๐Ÿ‡ญ flag: St. Helena +๐Ÿ‡ธ๐Ÿ‡ฎ flag: Slovenia +๐Ÿ‡ธ๐Ÿ‡ฏ flag: Svalbard & Jan Mayen +๐Ÿ‡ธ๐Ÿ‡ฐ flag: Slovakia +๐Ÿ‡ธ๐Ÿ‡ฑ flag: Sierra Leone +๐Ÿ‡ธ๐Ÿ‡ฒ flag: San Marino +๐Ÿ‡ธ๐Ÿ‡ณ flag: Senegal +๐Ÿ‡ธ๐Ÿ‡ด flag: Somalia +๐Ÿ‡ธ๐Ÿ‡ท flag: Suriname +๐Ÿ‡ธ๐Ÿ‡ธ flag: South Sudan +๐Ÿ‡ธ๐Ÿ‡น flag: Sรฃo Tomรฉ & Prรญncipe +๐Ÿ‡ธ๐Ÿ‡ป flag: El Salvador +๐Ÿ‡ธ๐Ÿ‡ฝ flag: Sint Maarten +๐Ÿ‡ธ๐Ÿ‡พ flag: Syria +๐Ÿ‡ธ๐Ÿ‡ฟ flag: Eswatini +๐Ÿ‡น๐Ÿ‡ฆ flag: Tristan da Cunha +๐Ÿ‡น๐Ÿ‡จ flag: Turks & Caicos Islands +๐Ÿ‡น๐Ÿ‡ฉ flag: Chad +๐Ÿ‡น๐Ÿ‡ซ flag: French Southern Territories +๐Ÿ‡น๐Ÿ‡ฌ flag: Togo +๐Ÿ‡น๐Ÿ‡ญ flag: Thailand +๐Ÿ‡น๐Ÿ‡ฏ flag: Tajikistan +๐Ÿ‡น๐Ÿ‡ฐ flag: Tokelau +๐Ÿ‡น๐Ÿ‡ฑ flag: Timor-Leste +๐Ÿ‡น๐Ÿ‡ฒ flag: Turkmenistan +๐Ÿ‡น๐Ÿ‡ณ flag: Tunisia +๐Ÿ‡น๐Ÿ‡ด flag: Tonga +๐Ÿ‡น๐Ÿ‡ท flag: Tรผrkiye +๐Ÿ‡น๐Ÿ‡น flag: Trinidad & Tobago +๐Ÿ‡น๐Ÿ‡ป flag: Tuvalu +๐Ÿ‡น๐Ÿ‡ผ flag: Taiwan +๐Ÿ‡น๐Ÿ‡ฟ flag: Tanzania +๐Ÿ‡บ๐Ÿ‡ฆ flag: Ukraine +๐Ÿ‡บ๐Ÿ‡ฌ flag: Uganda +๐Ÿ‡บ๐Ÿ‡ฒ flag: U.S. Outlying Islands +๐Ÿ‡บ๐Ÿ‡ณ flag: United Nations +๐Ÿ‡บ๐Ÿ‡ธ flag: United States +๐Ÿ‡บ๐Ÿ‡พ flag: Uruguay +๐Ÿ‡บ๐Ÿ‡ฟ flag: Uzbekistan +๐Ÿ‡ป๐Ÿ‡ฆ flag: Vatican City +๐Ÿ‡ป๐Ÿ‡จ flag: St. Vincent & Grenadines +๐Ÿ‡ป๐Ÿ‡ช flag: Venezuela +๐Ÿ‡ป๐Ÿ‡ฌ flag: British Virgin Islands +๐Ÿ‡ป๐Ÿ‡ฎ flag: U.S. Virgin Islands +๐Ÿ‡ป๐Ÿ‡ณ flag: Vietnam +๐Ÿ‡ป๐Ÿ‡บ flag: Vanuatu +๐Ÿ‡ผ๐Ÿ‡ซ flag: Wallis & Futuna +๐Ÿ‡ผ๐Ÿ‡ธ flag: Samoa +๐Ÿ‡ฝ๐Ÿ‡ฐ flag: Kosovo +๐Ÿ‡พ๐Ÿ‡ช flag: Yemen +๐Ÿ‡พ๐Ÿ‡น flag: Mayotte +๐Ÿ‡ฟ๐Ÿ‡ฆ flag: South Africa +๐Ÿ‡ฟ๐Ÿ‡ฒ flag: Zambia +๐Ÿ‡ฟ๐Ÿ‡ผ flag: Zimbabwe +๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ flag: England +๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ flag: Scotland +๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ flag: Wales \ No newline at end of file diff --git a/config/rofi/config-emoji.rasi b/config/rofi/config-emoji.rasi index 0f98892f..aa407999 100644 --- a/config/rofi/config-emoji.rasi +++ b/config/rofi/config-emoji.rasi @@ -6,13 +6,13 @@ /* ---- Mainbox ---- */ mainbox { children: - [ "inputbar", "listview"]; + [ "inputbar", "message", "listview"]; } /* ---- Entry ---- */ entry { width: 37%; - placeholder: " ๐Ÿ’ซ Search / Choose Emoji's **note** ๐Ÿ‘€ Click or Return to choose | Ctrl V to Paste"; + placeholder: " ๐Ÿ’ซ Search / Choose Emoji's"; horizontal-align: 0.0; } diff --git a/config/rofi/config-search.rasi b/config/rofi/config-search.rasi index 733d9b9a..d0d8357e 100644 --- a/config/rofi/config-search.rasi +++ b/config/rofi/config-search.rasi @@ -6,6 +6,7 @@ /* ---- Window ---- */ window { width: 40%; + //orientation: horizontal; height: inherit; y-offset: 10px; location: north; @@ -16,9 +17,9 @@ window { /* ---- Entry ---- */ entry { + expand: true; placeholder: " ๐Ÿ”Ž Google Search"; horizontal-align: 0.5; padding: 15px; - border: 0px; - border-radius: 12px; + border-radius: inherit; } -- cgit v1.2.3 From 6b7409c7ce93e0f36fd70cf9563a2aed17298d7e Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 14 Feb 2025 10:44:41 +0900 Subject: updated copy.sh and hardware cursors settings --- config/hypr/UserConfigs/UserSettings.conf | 2 +- copy.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'config') diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index f5bfcf7e..d488751c 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -112,7 +112,7 @@ render { cursor { sync_gsettings_theme = true - no_hardware_cursors = 2 + no_hardware_cursors = false enable_hyprcursor = true warp_on_change_workspace = 2 no_warps = true diff --git a/copy.sh b/copy.sh index c78ee06c..fd2df15b 100755 --- a/copy.sh +++ b/copy.sh @@ -69,7 +69,7 @@ if lspci -k | grep -A 2 -E "(VGA|3D)" | grep -iq nvidia; then sed -i '/env = __GLX_VENDOR_LIBRARY_NAME,nvidia/s/^#//' config/hypr/UserConfigs/ENVariables.conf sed -i '/env = NVD_BACKEND,direct/s/^#//' config/hypr/UserConfigs/ENVariables.conf # enabling no hardware cursors if nvidia detected - sed -i 's/^\([[:space:]]*no_hardware_cursors[[:space:]]*=[[:space:]]*\)2/\1true/' config/hypr/UserConfigs/UserSettings.conf + sed -i 's/^\([[:space:]]*no_hardware_cursors[[:space:]]*=[[:space:]]*\)false/\1true/' config/hypr/UserConfigs/UserSettings.conf # disabling explicit sync for nvidia for now (Hyprland 0.42.0) #sed -i 's/ explicit_sync = 2/ explicit_sync = 0/' config/hypr/UserConfigs/UserSettings.conf fi @@ -78,7 +78,7 @@ fi if hostnamectl | grep -q 'Chassis: vm'; then echo "${INFO} System is running in a virtual machine. Setting up proper env's and configs" 2>&1 | tee -a "$LOG" || true # enabling proper ENV's for Virtual Environment which should help - sed -i 's/^\([[:space:]]*no_hardware_cursors[[:space:]]*=[[:space:]]*\)2/\1true/' config/hypr/UserConfigs/UserSettings.conf + sed -i 's/^\([[:space:]]*no_hardware_cursors[[:space:]]*=[[:space:]]*\)false/\1true/' config/hypr/UserConfigs/UserSettings.conf sed -i '/env = WLR_RENDERER_ALLOW_SOFTWARE,1/s/^#//' config/hypr/UserConfigs/ENVariables.conf #sed -i '/env = LIBGL_ALWAYS_SOFTWARE,1/s/^#//' config/hypr/UserConfigs/ENVariables.conf sed -i '/monitor = Virtual-1, 1920x1080@60,auto,1/s/^#//' config/hypr/UserConfigs/Monitors.conf -- cgit v1.2.3 From c324edc48b7d6a6eaf65b3bb9fc3d46d65f4b3d8 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 14 Feb 2025 11:39:37 +0900 Subject: minor update rofi-emoji --- config/hypr/scripts/RofiEmoji.sh | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'config') diff --git a/config/hypr/scripts/RofiEmoji.sh b/config/hypr/scripts/RofiEmoji.sh index 50c22706..2e5aaabb 100755 --- a/config/hypr/scripts/RofiEmoji.sh +++ b/config/hypr/scripts/RofiEmoji.sh @@ -13,13 +13,13 @@ fi sed '1,/^# # DATA # #$/d' "$0" | \ rofi -i -dmenu -mesg "$msg" -config $rofi_theme | \ -awk -F'\t' '{print $1}' | \ +awk '{print $1}' | \ +head -n 1 | \ tr -d '\n' | \ wl-copy exit - # # DATA # # ๐Ÿ˜€ grinning face ๐Ÿ˜ƒ grinning face with big eyes @@ -4740,7 +4740,7 @@ exit ๐Ÿˆš Japanese โ€œfree of chargeโ€ button ๐Ÿˆฒ Japanese โ€œprohibitedโ€ button ๐Ÿ‰‘ Japanese โ€œacceptableโ€ button -๐Ÿˆธ Japanese โ€œapplicationโ€ button +๐Ÿˆธ Japanese โ€œapplicationโ€ button ๐Ÿˆด Japanese โ€œpassing gradeโ€ button ๐Ÿˆณ Japanese โ€œvacancyโ€ button ใŠ—๏ธ Japanese โ€œcongratulationsโ€ button @@ -4790,14 +4790,10 @@ exit ๐Ÿ chequered flag ๐Ÿšฉ triangular flag ๐ŸŽŒ crossed flags -๐Ÿด black flag +๐Ÿด black flag ๐Ÿณ๏ธ white flag ๐Ÿณ white flag -๐Ÿณ๏ธโ€๐ŸŒˆ rainbow flag -๐Ÿณโ€๐ŸŒˆ rainbow flag -๐Ÿณ๏ธโ€โšง๏ธ transgender flag -๐Ÿณโ€โšง๏ธ transgender flag -๐Ÿณ๏ธโ€โšง transgender flag +๐Ÿณ๏ธโ€๐ŸŒˆ rainbow flag ๐Ÿณโ€โšง transgender flag ๐Ÿดโ€โ˜ ๏ธ pirate flag ๐Ÿดโ€โ˜  pirate flag @@ -4909,7 +4905,7 @@ exit ๐Ÿ‡ญ๐Ÿ‡บ flag: Hungary ๐Ÿ‡ฎ๐Ÿ‡จ flag: Canary Islands ๐Ÿ‡ฎ๐Ÿ‡ฉ flag: Indonesia -๐Ÿ‡ฎ๐Ÿ‡ช flag: Ireland +๐Ÿ‡ฎ๐Ÿ‡ช flag: Ireland ๐Ÿ‡ฎ๐Ÿ‡ฑ flag: Israel ๐Ÿ‡ฎ๐Ÿ‡ฒ flag: Isle of Man ๐Ÿ‡ฎ๐Ÿ‡ณ flag: India @@ -4917,7 +4913,7 @@ exit ๐Ÿ‡ฎ๐Ÿ‡ถ flag: Iraq ๐Ÿ‡ฎ๐Ÿ‡ท flag: Iran ๐Ÿ‡ฎ๐Ÿ‡ธ flag: Iceland -๐Ÿ‡ฎ๐Ÿ‡น flag: Italy +๐Ÿ‡ฎ๐Ÿ‡น flag: Italy ๐Ÿ‡ฏ ๐Ÿ‡ฏ๐Ÿ‡ช flag: Jersey ๐Ÿ‡ฏ๐Ÿ‡ฒ flag: Jamaica ๐Ÿ‡ฏ๐Ÿ‡ด flag: Jordan @@ -4973,7 +4969,7 @@ exit ๐Ÿ‡ณ๐Ÿ‡ซ flag: Norfolk Island ๐Ÿ‡ณ๐Ÿ‡ฌ flag: Nigeria ๐Ÿ‡ณ๐Ÿ‡ฎ flag: Nicaragua -๐Ÿ‡ณ๐Ÿ‡ฑ flag: Netherlands +๐Ÿ‡ณ๐Ÿ‡ฑ flag: Netherlands ๐Ÿ‡ณ๐Ÿ‡ด flag: Norway ๐Ÿ‡ณ๐Ÿ‡ต flag: Nepal ๐Ÿ‡ณ๐Ÿ‡ท flag: Nauru -- cgit v1.2.3 From 02c9626c1da104fbcdf32b4b11896e3b9f650531 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 14 Feb 2025 12:18:52 +0900 Subject: updated keybinds --- config/hypr/scripts/KeyBinds.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'config') diff --git a/config/hypr/scripts/KeyBinds.sh b/config/hypr/scripts/KeyBinds.sh index ffa53281..639dd3a1 100755 --- a/config/hypr/scripts/KeyBinds.sh +++ b/config/hypr/scripts/KeyBinds.sh @@ -13,16 +13,16 @@ fi # Define the config files KEYBINDS_CONF="$HOME/.config/hypr/configs/Keybinds.conf" USER_KEYBINDS_CONF="$HOME/.config/hypr/UserConfigs/UserKeybinds.conf" -LAPTOP_CONF="$HOME/.config/hypr/UserConfigs/Laptop.conf" +LAPTOP_CONF="$HOME/.config/hypr/UserConfigs/Laptops.conf" rofi_theme="$HOME/.config/rofi/config-keybinds.rasi" msg='โ˜ฃ๏ธ NOTE โ˜ฃ๏ธ: Clicking with Mouse or Pressing ENTER will have NO function' # Combine the contents of the keybinds files and filter for keybinds -KEYBINDS=$(cat "$KEYBINDS_CONF" "$USER_KEYBINDS_CONF" | grep -E '^(bind|bindl|binde|bindm)') +KEYBINDS=$(cat "$KEYBINDS_CONF" "$USER_KEYBINDS_CONF" | grep -E '^bind') # Check if Laptop.conf exists and add its keybinds if present if [[ -f "$LAPTOP_CONF" ]]; then - LAPTOP_BINDS=$(grep -E '^(bind|bindl|binde|bindm)' "$LAPTOP_CONF") + LAPTOP_BINDS=$(grep -E '^bind' "$LAPTOP_CONF") KEYBINDS+=$'\n'"$LAPTOP_BINDS" fi @@ -32,5 +32,5 @@ if [[ -z "$KEYBINDS" ]]; then exit 1 fi -# Ensure the message is being passed correctly +# Use rofi to display the keybinds echo "$KEYBINDS" | rofi -dmenu -i -config "$rofi_theme" -mesg "$msg" -- cgit v1.2.3 From c9e787096336f0436e06c49a30fd2a51823b32a6 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 14 Feb 2025 14:39:08 +0900 Subject: Introduction of KooL's hyprland dots notification update --- config/hypr/scripts/KooLsDotsUpdate.sh | 63 ++++++++++++++++++++++++++++++++++ config/hypr/scripts/RofiEmoji.sh | 1 - copy.sh | 31 ++++++++++++----- 3 files changed, 85 insertions(+), 10 deletions(-) create mode 100755 config/hypr/scripts/KooLsDotsUpdate.sh (limited to 'config') diff --git a/config/hypr/scripts/KooLsDotsUpdate.sh b/config/hypr/scripts/KooLsDotsUpdate.sh new file mode 100755 index 00000000..e6275c10 --- /dev/null +++ b/config/hypr/scripts/KooLsDotsUpdate.sh @@ -0,0 +1,63 @@ +#!/bin/bash +# /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## +# simple bash script to check if KooL Hyprland Dots update is available by comparing local version and github version + +# Local Paths +local_dir="$HOME/.config/hypr" +iDIR="$HOME/.config/swaync/images/ja.png" +local_version=$(ls $local_dir/v* 2>/dev/null | sort -V | tail -n 1 | sed 's/.*v\(.*\)/\1/') +notification_timeout="60s" +KooL_Dots_DIR="$HOME/Hyprland-Dots" + +# exit if cannot find local version +if [ -z "$local_version" ]; then + exit 1 +fi + +# GitHub URL pointing to versioned files +github_url="https://github.com/JaKooLit/Hyprland-Dots/tree/main/config/hypr/" + +# Fetch the latest version from GitHub directly +github_version=$(curl -s $github_url | grep -o 'v[0-9]\+\.[0-9]\+\.[0-9]\+' | sort -V | tail -n 1 | sed 's/v//') + +# Exit if we can't find the GitHub version +if [ -z "$github_version" ]; then + exit 1 +fi + +# Compare the local version with the GitHub version +if [ "$(echo -e "$github_version\n$local_version" | sort -V | tail -n 1)" = "$github_version" ]; then + notify_cmd_base="notify-send -t 10000 -A action1=Update -A action2=NO -h string:x-canonical-private-synchronous:shot-notify" + notify_cmd_shot="${notify_cmd_base} -i $iDIR" + + response=$(timeout $notification_timeout $notify_cmd_shot "KooL Hyprland" "Update available! Update now?") + # exit when timeout reached + if [ $? -eq 124 ]; then + exit 0 + fi + + case "$response" in + "action1") + if [ -d $KooL_Dots_DIR ]; then + kitty -e bash -c " + cd $KooL_Dots_DIR && + git stash && + git pull && + ./copy.sh + " + else + kitty -e bash -c " + git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git $KooL_Dots_DIR && + cd $KooL_Dots_DIR && + chmod +x copy.sh && + ./copy.sh + " + fi + ;; + "action2") + exit 0 + ;; + esac +else + exit 0 +fi diff --git a/config/hypr/scripts/RofiEmoji.sh b/config/hypr/scripts/RofiEmoji.sh index 2e5aaabb..a7141588 100755 --- a/config/hypr/scripts/RofiEmoji.sh +++ b/config/hypr/scripts/RofiEmoji.sh @@ -1,6 +1,5 @@ #!/bin/bash # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## -# Rofi Emoticons. Not my own. Cant remember the source # Variables rofi_theme="~/.config/rofi/config-emoji.rasi" diff --git a/copy.sh b/copy.sh index fd2df15b..0a549d44 100755 --- a/copy.sh +++ b/copy.sh @@ -403,8 +403,22 @@ while true; do echo "${ERROR} Invalid choice. Please enter y for yes or n for no." fi done +printf "\n%.0s" {1..1} - +# Ask whether to have update notification +while true; do + read -p "$CAT Do you want to ${YELLOW}enable${RESE} ${SKY_BLUE}KooL Hyprland Dots available update notification? (y/n)${RESET}: " update + # Convert the answer to lowercase for comparison + answer=$(echo "$update" | tr '[:upper:]' '[:lower:]') + if [[ "$answer" == "y" ]]; then + break + elif [[ "$answer" == "n" ]]; then + sed -i 's|^exec-once = $HOME/.config/hypr/KooLsDotsUpdate.sh|#exec-once = $HOME/.config/hypr/KooLsDotsUpdate.sh|' config/hypr/hyprland.conf + echo "Update notification disabled" + else + echo "${ERROR} Invalid choice. Please enter y for yes or n for no." + fi +done printf "\n%.0s" {1..1} # Check if the user wants to disable Rainbow borders @@ -422,7 +436,7 @@ if [[ "$border_choice" =~ ^[Yy]$ ]]; then else echo "${NOTE} No changes made. Rainbow borders remain enabled." 2>&1 | tee -a "$LOG" fi -printf "\n" +printf "\n%.0s" {1..1} set -e @@ -498,7 +512,6 @@ for DIR2 in $DIRS; do fi fi done - printf "\n%.0s" {1..1} printf "${INFO} - Copying dotfiles ${SKY_BLUE}second${RESET} part\n" @@ -553,7 +566,7 @@ for DIR_NAME in $DIR; do fi done -printf "\n%.0s" {1..2} +printf "\n%.0s" {1..1} # Restoring UserConfigs and UserScripts DIRH="hypr" @@ -604,7 +617,7 @@ if [ -d "$BACKUP_DIR_PATH" ]; then done fi -printf "\n%.0s" {1..2} +printf "\n%.0s" {1..1} # Restoring previous UserScripts DIRSH="hypr" @@ -692,7 +705,7 @@ rm -rf "$HOME/.config/waybar/configs/[TOP] Default$config_remove" \ "$HOME/.config/waybar/configs/[TOP] Default$config_remove (old v3)" \ "$HOME/.config/waybar/configs/[TOP] Default$config_remove (old v4)" 2>&1 | tee -a "$LOG" || true -printf "\n%.0s" {1..2} +printf "\n%.0s" {1..1} # for SDDM (sequoia_2) sddm_sequioa="/usr/share/sddm/themes/sequoia_2" @@ -817,15 +830,15 @@ cleanup_backups # symlinks for waybar style ln -sf "$waybar_style" "$HOME/.config/waybar/style.css" && \ -printf "\n%.0s" {1..2} +printf "\n%.0s" {1..1} # initialize wallust to avoid config error on hyprland wallust run -s $wallpaper 2>&1 | tee -a "$LOG" printf "\n%.0s" {1..2} printf "${OK} GREAT! KooL's Hyprland-Dots is now Loaded & Ready !!! " -printf "\n%.0s" {1..2} +printf "\n%.0s" {1..1} printf "${INFO} However, it is ${MAGENTA}HIGHLY SUGGESTED${RESET} to logout and re-login or better reboot to avoid any issues" -printf "\n%.0s" {1..2} +printf "\n%.0s" {1..1} printf "${SKY_BLUE}Thank you${RESET} for using ${MAGENTA}KooL's Hyprland Configuration${RESET}... ${YELLOW}ENJOY!!!${RESET}" printf "\n%.0s" {1..3} \ No newline at end of file -- cgit v1.2.3 From f9a295fc4f95a6c4b442fbb2b05ea45fbf8c0409 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 14 Feb 2025 15:02:24 +0900 Subject: updated some notes and add a branch. Making it easier to implement for ubuntu --- config/hypr/scripts/KooLsDotsUpdate.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'config') diff --git a/config/hypr/scripts/KooLsDotsUpdate.sh b/config/hypr/scripts/KooLsDotsUpdate.sh index e6275c10..8baf2b3a 100755 --- a/config/hypr/scripts/KooLsDotsUpdate.sh +++ b/config/hypr/scripts/KooLsDotsUpdate.sh @@ -1,6 +1,8 @@ #!/bin/bash # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## # simple bash script to check if KooL Hyprland Dots update is available by comparing local version and github version +# it utilizes curl and also has a default time of 60s if users dont do anything +# will only ran once you logged into your system. It will not continously pinging the KooL github # Local Paths local_dir="$HOME/.config/hypr" @@ -14,8 +16,9 @@ if [ -z "$local_version" ]; then exit 1 fi -# GitHub URL pointing to versioned files -github_url="https://github.com/JaKooLit/Hyprland-Dots/tree/main/config/hypr/" +# KooL's Dots GitHub URL +branch="main" +github_url="https://github.com/JaKooLit/Hyprland-Dots/tree/$branch/config/hypr/" # Fetch the latest version from GitHub directly github_version=$(curl -s $github_url | grep -o 'v[0-9]\+\.[0-9]\+\.[0-9]\+' | sort -V | tail -n 1 | sed 's/v//') -- cgit v1.2.3 From 86ec85bfb60459fe51afbc0b572d9c1f3a74ed2c Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 14 Feb 2025 18:00:14 +0900 Subject: updated.....updated notification is via waybar added to swaync group --- config/hypr/scripts/KooLsDotsUpdate.sh | 36 ++++++++++++---------- config/waybar/ModulesCustom | 7 +++++ config/waybar/ModulesGroups | 12 ++++++++ config/waybar/configs/[BOT & Left] SouthWest | 2 +- config/waybar/configs/[BOT & Right] SouthEast | 2 +- config/waybar/configs/[BOT] Camellia | 2 +- config/waybar/configs/[BOT] Chrysanthemum | 2 +- config/waybar/configs/[BOT] Default | 2 +- config/waybar/configs/[BOT] Default Laptop | 2 +- config/waybar/configs/[BOT] Gardenia | 2 +- config/waybar/configs/[BOT] Peony | 2 +- config/waybar/configs/[BOT] Simple | 2 +- config/waybar/configs/[BOT] Sleek | 2 +- config/waybar/configs/[Left] WestWing | 2 +- config/waybar/configs/[Right] EastWing | 2 +- config/waybar/configs/[TOP & BOT] SummitSplit | 2 +- config/waybar/configs/[TOP & Left] NorthWest | 2 +- config/waybar/configs/[TOP & Right] NorthEast | 2 +- config/waybar/configs/[TOP] 0-Ja-0 | 2 +- config/waybar/configs/[TOP] Camellia | 2 +- config/waybar/configs/[TOP] Chrysanthemum | 2 +- config/waybar/configs/[TOP] Default | 2 +- config/waybar/configs/[TOP] Default (old v1) | 2 +- config/waybar/configs/[TOP] Default (old v2) | 2 +- config/waybar/configs/[TOP] Default (old v3) | 2 +- config/waybar/configs/[TOP] Default (old v4) | 2 +- config/waybar/configs/[TOP] Default Laptop | 2 +- .../waybar/configs/[TOP] Default Laptop (old v1) | 2 +- .../waybar/configs/[TOP] Default Laptop (old v2) | 2 +- .../waybar/configs/[TOP] Default Laptop (old v3) | 2 +- .../waybar/configs/[TOP] Default Laptop (old v4) | 2 +- config/waybar/configs/[TOP] Everforest | 2 +- config/waybar/configs/[TOP] Gardenia | 2 +- config/waybar/configs/[TOP] Minimal - Long | 2 +- config/waybar/configs/[TOP] Minimal - Short | 2 +- config/waybar/configs/[TOP] Peony | 2 +- config/waybar/configs/[TOP] Simple | 2 +- config/waybar/configs/[TOP] Sleek | 2 +- config/waybar/style/[Black & White] Monochrome.css | 1 + config/waybar/style/[Catppuccin] Frappe.css | 1 + config/waybar/style/[Catppuccin] Latte.css | 1 + config/waybar/style/[Catppuccin] Mocha.css | 1 + config/waybar/style/[Colored] Chroma Glow.css | 1 + config/waybar/style/[Colored] Translucent.css | 1 + config/waybar/style/[Colorful] Aurora Blossom.css | 1 + config/waybar/style/[Colorful] Aurora.css | 1 + config/waybar/style/[Colorful] Oglo Chicklets.css | 1 + .../waybar/style/[Colorful] Rainbow Spectrum.css | 1 + config/waybar/style/[Dark] Golden Eclipse.css | 1 + config/waybar/style/[Dark] Golden Noir.css | 1 + config/waybar/style/[Dark] Half-Moon.css | 1 + .../style/[Dark] Latte-Wallust combined v2.css | 1 + .../waybar/style/[Dark] Latte-Wallust combined.css | 1 + config/waybar/style/[Dark] Purpl.css | 1 + .../waybar/style/[Dark] Wallust Obsidian Edge.css | 1 + config/waybar/style/[Extra] Crimson.css | 1 + config/waybar/style/[Extra] EverForest.css | 1 + config/waybar/style/[Extra] Mauve.css | 1 + .../[Extra] Modern-Combined - Transparent.css | 1 + config/waybar/style/[Extra] Modern-Combined.css | 1 + config/waybar/style/[Extra] Rose Pine.css | 1 + config/waybar/style/[Extra] Simple Pink.css | 1 + .../waybar/style/[Light] Monochrome Contrast.css | 1 + config/waybar/style/[Light] Obsidian Glow.css | 1 + config/waybar/style/[Rainbow] RGB Bordered.css | 1 + config/waybar/style/[Retro] Simple Style.css | 1 + .../waybar/style/[Transparent] Crystal Clear.css | 1 + .../waybar/style/[WALLUST] ML4W-modern-mixed.css | 1 + config/waybar/style/[WALLUST] ML4W-modern.css | 1 + .../[Wallust Bordered] Chroma Fusion Edge.css | 1 + .../style/[Wallust Bordered] Chroma Simple.css | 1 + .../style/[Wallust Transparent] Crystal Clear.css | 1 + config/waybar/style/[Wallust] Box type.css | 1 + config/waybar/style/[Wallust] Chroma Edge.css | 1 + config/waybar/style/[Wallust] Chroma Fusion.css | 1 + config/waybar/style/[Wallust] Chroma Tally.css | 1 + config/waybar/style/[Wallust] Colored.css | 1 + config/waybar/style/[Wallust] Simple.css | 1 + copy.sh | 16 ---------- 79 files changed, 114 insertions(+), 67 deletions(-) (limited to 'config') diff --git a/config/hypr/scripts/KooLsDotsUpdate.sh b/config/hypr/scripts/KooLsDotsUpdate.sh index 8baf2b3a..067f42ae 100755 --- a/config/hypr/scripts/KooLsDotsUpdate.sh +++ b/config/hypr/scripts/KooLsDotsUpdate.sh @@ -1,47 +1,49 @@ #!/bin/bash # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## -# simple bash script to check if KooL Hyprland Dots update is available by comparing local version and github version -# it utilizes curl and also has a default time of 60s if users dont do anything -# will only ran once you logged into your system. It will not continously pinging the KooL github +# simple bash script to check if update is available by comparing local version and github version # Local Paths local_dir="$HOME/.config/hypr" iDIR="$HOME/.config/swaync/images/ja.png" local_version=$(ls $local_dir/v* 2>/dev/null | sort -V | tail -n 1 | sed 's/.*v\(.*\)/\1/') -notification_timeout="60s" KooL_Dots_DIR="$HOME/Hyprland-Dots" # exit if cannot find local version if [ -z "$local_version" ]; then + notify-send -i $iDIR "ERROR "!?!?!!"" "Unable to find KooL's dots version . exiting.... " exit 1 fi -# KooL's Dots GitHub URL +# GitHub URL - KooL's dots branch="main" github_url="https://github.com/JaKooLit/Hyprland-Dots/tree/$branch/config/hypr/" -# Fetch the latest version from GitHub directly +# Fetch the version from GitHub URL - KooL's dots github_version=$(curl -s $github_url | grep -o 'v[0-9]\+\.[0-9]\+\.[0-9]\+' | sort -V | tail -n 1 | sed 's/v//') -# Exit if we can't find the GitHub version +# Cant find GitHub URL - KooL's dots version if [ -z "$github_version" ]; then exit 1 fi -# Compare the local version with the GitHub version -if [ "$(echo -e "$github_version\n$local_version" | sort -V | tail -n 1)" = "$github_version" ]; then +# Comparing local and github versions +if [ "$(echo -e "$github_version\n$local_version" | sort -V | head -n 1)" = "$github_version" ]; then + notify-send -i $iDIR "KooL Hyprland" "No update available" + exit 0 +else + # update available notify_cmd_base="notify-send -t 10000 -A action1=Update -A action2=NO -h string:x-canonical-private-synchronous:shot-notify" notify_cmd_shot="${notify_cmd_base} -i $iDIR" - response=$(timeout $notification_timeout $notify_cmd_shot "KooL Hyprland" "Update available! Update now?") - # exit when timeout reached - if [ $? -eq 124 ]; then - exit 0 - fi + response=$($notify_cmd_shot "KooL Hyprland" "Update available! Update now?") case "$response" in "action1") if [ -d $KooL_Dots_DIR ]; then + if ! command -v kitty &> /dev/null; then + notify-send -i $iDIR "Need Kitty" "Kitty terminal not found. Please install Kitty terminal." + exit 1 + fi kitty -e bash -c " cd $KooL_Dots_DIR && git stash && @@ -49,6 +51,10 @@ if [ "$(echo -e "$github_version\n$local_version" | sort -V | tail -n 1)" = "$gi ./copy.sh " else + if ! command -v kitty &> /dev/null; then + notify-send -i $iDIR "Need Kitty" "Kitty terminal not found. Please install Kitty terminal." + exit 1 + fi kitty -e bash -c " git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git $KooL_Dots_DIR && cd $KooL_Dots_DIR && @@ -61,6 +67,4 @@ if [ "$(echo -e "$github_version\n$local_version" | sort -V | tail -n 1)" = "$gi exit 0 ;; esac -else - exit 0 fi diff --git a/config/waybar/ModulesCustom b/config/waybar/ModulesCustom index 9d0e804a..fe00d254 100644 --- a/config/waybar/ModulesCustom +++ b/config/waybar/ModulesCustom @@ -62,6 +62,13 @@ "tooltip-format": "Left Click: Quick Tips\nRight Click: Keybinds", }, +"custom/dot_update": { + "format": " ๓ฐˆ ", + "on-click": "$HOME/.config/hypr/scripts/KooLsDotsUpdate.sh", + "tooltip": true, + "tooltip-format": "Check KooL Dots update\nIf available", +}, + // Hypridle inhibitor "custom/hypridle": { "format": "๓ฑซ— ", diff --git a/config/waybar/ModulesGroups b/config/waybar/ModulesGroups index 923f6a30..6bc7cea4 100644 --- a/config/waybar/ModulesGroups +++ b/config/waybar/ModulesGroups @@ -94,4 +94,16 @@ "custom/keyboard", ] }, +"group/notify": { + "orientation": "inherit", + "drawer": { + "transition-duration": 500, + "children-class": "custom/swaync", + "transition-left-to-right": false + }, + "modules": [ + "custom/swaync", + "custom/dot_update", + ] +}, } \ No newline at end of file diff --git a/config/waybar/configs/[BOT & Left] SouthWest b/config/waybar/configs/[BOT & Left] SouthWest index adaaca6f..283b79c6 100644 --- a/config/waybar/configs/[BOT & Left] SouthWest +++ b/config/waybar/configs/[BOT & Left] SouthWest @@ -79,7 +79,7 @@ "modules-right": [ "mpris", - "custom/swaync", + "group/notify", "tray", "custom/light_dark", ], diff --git a/config/waybar/configs/[BOT & Right] SouthEast b/config/waybar/configs/[BOT & Right] SouthEast index e78e1edb..fbfa5122 100644 --- a/config/waybar/configs/[BOT & Right] SouthEast +++ b/config/waybar/configs/[BOT & Right] SouthEast @@ -79,7 +79,7 @@ "modules-right": [ "mpris", - "custom/swaync", + "group/notify", "tray", "custom/light_dark", ], diff --git a/config/waybar/configs/[BOT] Camellia b/config/waybar/configs/[BOT] Camellia index 67e8c193..10b6d233 100644 --- a/config/waybar/configs/[BOT] Camellia +++ b/config/waybar/configs/[BOT] Camellia @@ -29,7 +29,7 @@ "hyprland/workspaces#cam", "custom/separator#line", "mpris", - "custom/swaync", + "group/notify", "tray", "wlr/taskbar"], diff --git a/config/waybar/configs/[BOT] Chrysanthemum b/config/waybar/configs/[BOT] Chrysanthemum index 2aa45feb..9c09885f 100644 --- a/config/waybar/configs/[BOT] Chrysanthemum +++ b/config/waybar/configs/[BOT] Chrysanthemum @@ -27,7 +27,7 @@ "clock#5", "mpris", "tray", - "custom/swaync" + "group/notify" ], "modules-center": ["hyprland/workspaces"], diff --git a/config/waybar/configs/[BOT] Default b/config/waybar/configs/[BOT] Default index 39490f85..15f467c2 100644 --- a/config/waybar/configs/[BOT] Default +++ b/config/waybar/configs/[BOT] Default @@ -32,7 +32,7 @@ "modules-center": [ "group/app_drawer", "custom/separator#blank", - "custom/swaync", + "group/notify", "custom/separator#dot-line", "hyprland/workspaces#rw", "clock", diff --git a/config/waybar/configs/[BOT] Default Laptop b/config/waybar/configs/[BOT] Default Laptop index ea95e6c6..d1db65ba 100644 --- a/config/waybar/configs/[BOT] Default Laptop +++ b/config/waybar/configs/[BOT] Default Laptop @@ -32,7 +32,7 @@ "modules-center": [ "group/app_drawer", "custom/separator#blank", - "custom/swaync", + "group/notify", "custom/separator#dot-line", "hyprland/workspaces#rw", "clock", diff --git a/config/waybar/configs/[BOT] Gardenia b/config/waybar/configs/[BOT] Gardenia index fa9cbab0..f550537d 100644 --- a/config/waybar/configs/[BOT] Gardenia +++ b/config/waybar/configs/[BOT] Gardenia @@ -28,7 +28,7 @@ "clock#5", "mpris", "tray", - "custom/swaync" + "group/notify" ], "modules-center": ["hyprland/workspaces#kanji"], diff --git a/config/waybar/configs/[BOT] Peony b/config/waybar/configs/[BOT] Peony index a7f13bdd..9e3fc5b2 100644 --- a/config/waybar/configs/[BOT] Peony +++ b/config/waybar/configs/[BOT] Peony @@ -27,7 +27,7 @@ "modules-left": [ "hyprland/workspaces#roman", "mpris", - "custom/swaync", + "group/notify", "tray" ], diff --git a/config/waybar/configs/[BOT] Simple b/config/waybar/configs/[BOT] Simple index 46003460..cf265c9b 100644 --- a/config/waybar/configs/[BOT] Simple +++ b/config/waybar/configs/[BOT] Simple @@ -28,7 +28,7 @@ "modules-center": [ "clock#2", - "custom/swaync", + "group/notify", ], "modules-right": [ diff --git a/config/waybar/configs/[BOT] Sleek b/config/waybar/configs/[BOT] Sleek index 6bce5dd2..dc6014ac 100644 --- a/config/waybar/configs/[BOT] Sleek +++ b/config/waybar/configs/[BOT] Sleek @@ -30,7 +30,7 @@ "custom/separator#blank", "clock", "custom/separator#blank", - "custom/swaync" + "group/notify" ], "modules-right": [ diff --git a/config/waybar/configs/[Left] WestWing b/config/waybar/configs/[Left] WestWing index 7b0b87c2..0c4218c3 100644 --- a/config/waybar/configs/[Left] WestWing +++ b/config/waybar/configs/[Left] WestWing @@ -33,7 +33,7 @@ "modules-right": [ "mpris", "tray", - "custom/swaync", + "group/notify", "backlight#vertical", "pulseaudio#microphone_vertical", "pulseaudio#vertical", diff --git a/config/waybar/configs/[Right] EastWing b/config/waybar/configs/[Right] EastWing index c3303c61..dac579a9 100644 --- a/config/waybar/configs/[Right] EastWing +++ b/config/waybar/configs/[Right] EastWing @@ -33,7 +33,7 @@ "modules-right": [ "mpris", "tray", - "custom/swaync", + "group/notify", "backlight#vertical", "pulseaudio#microphone_vertical", "pulseaudio#vertical", diff --git a/config/waybar/configs/[TOP & BOT] SummitSplit b/config/waybar/configs/[TOP & BOT] SummitSplit index 023ac1b8..e88683a0 100644 --- a/config/waybar/configs/[TOP & BOT] SummitSplit +++ b/config/waybar/configs/[TOP & BOT] SummitSplit @@ -79,7 +79,7 @@ "modules-right": [ "hyprland/window", "tray", - "custom/swaync", + "group/notify", "mpris", "keyboard-state", "pulseaudio", diff --git a/config/waybar/configs/[TOP & Left] NorthWest b/config/waybar/configs/[TOP & Left] NorthWest index 18ce0b5d..bd57b1ee 100644 --- a/config/waybar/configs/[TOP & Left] NorthWest +++ b/config/waybar/configs/[TOP & Left] NorthWest @@ -75,7 +75,7 @@ "modules-right": [ "mpris", - "custom/swaync", + "group/notify", "tray", "custom/light_dark", ], diff --git a/config/waybar/configs/[TOP & Right] NorthEast b/config/waybar/configs/[TOP & Right] NorthEast index ebd97aef..a14be3c5 100644 --- a/config/waybar/configs/[TOP & Right] NorthEast +++ b/config/waybar/configs/[TOP & Right] NorthEast @@ -76,7 +76,7 @@ "modules-right": [ "mpris", - "custom/swaync", + "group/notify", "tray", "custom/light_dark", ], diff --git a/config/waybar/configs/[TOP] 0-Ja-0 b/config/waybar/configs/[TOP] 0-Ja-0 index b5c7a62f..1ca3d6ea 100644 --- a/config/waybar/configs/[TOP] 0-Ja-0 +++ b/config/waybar/configs/[TOP] 0-Ja-0 @@ -36,7 +36,7 @@ "custom/separator#dot-line", "hyprland/workspaces#rw", "custom/separator#dot-line", - "custom/swaync", + "group/notify", ], "modules-right": [ diff --git a/config/waybar/configs/[TOP] Camellia b/config/waybar/configs/[TOP] Camellia index e13256c9..4feff466 100644 --- a/config/waybar/configs/[TOP] Camellia +++ b/config/waybar/configs/[TOP] Camellia @@ -29,7 +29,7 @@ "hyprland/workspaces#cam", "custom/separator#line", "mpris", - "custom/swaync", + "group/notify", "tray", "wlr/taskbar"], diff --git a/config/waybar/configs/[TOP] Chrysanthemum b/config/waybar/configs/[TOP] Chrysanthemum index 06a7bbcf..6a67ee09 100644 --- a/config/waybar/configs/[TOP] Chrysanthemum +++ b/config/waybar/configs/[TOP] Chrysanthemum @@ -27,7 +27,7 @@ "clock#5", "mpris", "tray", - "custom/swaync" + "group/notify" ], "modules-center": ["hyprland/workspaces"], diff --git a/config/waybar/configs/[TOP] Default b/config/waybar/configs/[TOP] Default index 9d7c68a8..0ee772bd 100644 --- a/config/waybar/configs/[TOP] Default +++ b/config/waybar/configs/[TOP] Default @@ -32,7 +32,7 @@ "modules-center": [ "group/app_drawer", "custom/separator#blank", - "custom/swaync", + "group/notify", "custom/separator#dot-line", "hyprland/workspaces#rw", "clock", diff --git a/config/waybar/configs/[TOP] Default (old v1) b/config/waybar/configs/[TOP] Default (old v1) index 96396a88..81eec78e 100644 --- a/config/waybar/configs/[TOP] Default (old v1) +++ b/config/waybar/configs/[TOP] Default (old v1) @@ -52,7 +52,7 @@ "modules-right": [ "network#speed", "custom/separator#dot-line", - "custom/swaync", + "group/notify", "tray", "mpris", "custom/separator#dot-line", diff --git a/config/waybar/configs/[TOP] Default (old v2) b/config/waybar/configs/[TOP] Default (old v2) index 4b5e8941..39281a62 100644 --- a/config/waybar/configs/[TOP] Default (old v2) +++ b/config/waybar/configs/[TOP] Default (old v2) @@ -30,7 +30,7 @@ ], "modules-center": [ - "custom/swaync", + "group/notify", "custom/cava_mviz", "custom/separator#dot-line", "clock", diff --git a/config/waybar/configs/[TOP] Default (old v3) b/config/waybar/configs/[TOP] Default (old v3) index 70da4482..ebb663c9 100644 --- a/config/waybar/configs/[TOP] Default (old v3) +++ b/config/waybar/configs/[TOP] Default (old v3) @@ -32,7 +32,7 @@ ], "modules-center": [ - "custom/swaync", + "group/notify", "custom/cava_mviz", "custom/separator#dot-line", "clock", diff --git a/config/waybar/configs/[TOP] Default (old v4) b/config/waybar/configs/[TOP] Default (old v4) index 0b6010aa..9a06a610 100644 --- a/config/waybar/configs/[TOP] Default (old v4) +++ b/config/waybar/configs/[TOP] Default (old v4) @@ -29,7 +29,7 @@ ], "modules-center": [ - "custom/swaync", + "group/notify", "custom/cava_mviz", "custom/separator#dot-line", "clock", diff --git a/config/waybar/configs/[TOP] Default Laptop b/config/waybar/configs/[TOP] Default Laptop index 7fe3f413..9056b125 100644 --- a/config/waybar/configs/[TOP] Default Laptop +++ b/config/waybar/configs/[TOP] Default Laptop @@ -32,7 +32,7 @@ "modules-center": [ "group/app_drawer", "custom/separator#blank", - "custom/swaync", + "group/notify", "custom/separator#dot-line", "hyprland/workspaces#rw", "clock", diff --git a/config/waybar/configs/[TOP] Default Laptop (old v1) b/config/waybar/configs/[TOP] Default Laptop (old v1) index 91139573..7154d5da 100644 --- a/config/waybar/configs/[TOP] Default Laptop (old v1) +++ b/config/waybar/configs/[TOP] Default Laptop (old v1) @@ -52,7 +52,7 @@ "modules-right": [ "network#speed", "custom/separator#dot-line", - "custom/swaync", + "group/notify", "tray", "mpris", "custom/separator#dot-line", diff --git a/config/waybar/configs/[TOP] Default Laptop (old v2) b/config/waybar/configs/[TOP] Default Laptop (old v2) index c7056247..5d6f9373 100644 --- a/config/waybar/configs/[TOP] Default Laptop (old v2) +++ b/config/waybar/configs/[TOP] Default Laptop (old v2) @@ -33,7 +33,7 @@ ], "modules-center": [ - "custom/swaync", + "group/notify", "custom/cava_mviz", "custom/separator#dot-line", "clock", diff --git a/config/waybar/configs/[TOP] Default Laptop (old v3) b/config/waybar/configs/[TOP] Default Laptop (old v3) index 541b9493..a0189b03 100644 --- a/config/waybar/configs/[TOP] Default Laptop (old v3) +++ b/config/waybar/configs/[TOP] Default Laptop (old v3) @@ -33,7 +33,7 @@ ], "modules-center": [ - "custom/swaync", + "group/notify", "custom/cava_mviz", "custom/separator#dot-line", "clock", diff --git a/config/waybar/configs/[TOP] Default Laptop (old v4) b/config/waybar/configs/[TOP] Default Laptop (old v4) index be97970c..9fb30882 100644 --- a/config/waybar/configs/[TOP] Default Laptop (old v4) +++ b/config/waybar/configs/[TOP] Default Laptop (old v4) @@ -31,7 +31,7 @@ ], "modules-center": [ - "custom/swaync", + "group/notify", "custom/cava_mviz", "custom/separator#dot-line", "clock", diff --git a/config/waybar/configs/[TOP] Everforest b/config/waybar/configs/[TOP] Everforest index 0db338a0..6663425b 100644 --- a/config/waybar/configs/[TOP] Everforest +++ b/config/waybar/configs/[TOP] Everforest @@ -27,7 +27,7 @@ "hyprland/workspaces#rw", "custom/separator#blank_2", // "mpris", - "custom/swaync", + "group/notify", "tray", ], "modules-center": [ diff --git a/config/waybar/configs/[TOP] Gardenia b/config/waybar/configs/[TOP] Gardenia index 36b6fa1b..02380c3c 100644 --- a/config/waybar/configs/[TOP] Gardenia +++ b/config/waybar/configs/[TOP] Gardenia @@ -28,7 +28,7 @@ "clock#5", "mpris", "tray", - "custom/swaync" + "group/notify" ], "modules-center": ["hyprland/workspaces#kanji"], diff --git a/config/waybar/configs/[TOP] Minimal - Long b/config/waybar/configs/[TOP] Minimal - Long index 6347a498..704fa56e 100644 --- a/config/waybar/configs/[TOP] Minimal - Long +++ b/config/waybar/configs/[TOP] Minimal - Long @@ -27,7 +27,7 @@ "hyprland/workspaces#pacman", "custom/separator#blank_2", "mpris", - "custom/swaync", + "group/notify", "tray", ], "modules-center": [ diff --git a/config/waybar/configs/[TOP] Minimal - Short b/config/waybar/configs/[TOP] Minimal - Short index a0eeba39..b025c07a 100644 --- a/config/waybar/configs/[TOP] Minimal - Short +++ b/config/waybar/configs/[TOP] Minimal - Short @@ -26,7 +26,7 @@ "modules-right": [ "custom/menu", "tray", - "custom/swaync", + "group/notify", "mpris", "network", "bluetooth", diff --git a/config/waybar/configs/[TOP] Peony b/config/waybar/configs/[TOP] Peony index f9f63acd..4935f763 100644 --- a/config/waybar/configs/[TOP] Peony +++ b/config/waybar/configs/[TOP] Peony @@ -27,7 +27,7 @@ "modules-left": [ "hyprland/workspaces#roman", "mpris", - "custom/swaync", + "group/notify", "tray" ], diff --git a/config/waybar/configs/[TOP] Simple b/config/waybar/configs/[TOP] Simple index e00c32ea..759fd8bd 100644 --- a/config/waybar/configs/[TOP] Simple +++ b/config/waybar/configs/[TOP] Simple @@ -28,7 +28,7 @@ "modules-center": [ "clock#2", - "custom/swaync", + "group/notify", ], "modules-right": [ diff --git a/config/waybar/configs/[TOP] Sleek b/config/waybar/configs/[TOP] Sleek index 0dc9057e..671264b8 100644 --- a/config/waybar/configs/[TOP] Sleek +++ b/config/waybar/configs/[TOP] Sleek @@ -29,7 +29,7 @@ "custom/separator#blank", "clock#3", "custom/separator#blank", - "custom/swaync" + "group/notify" ], "modules-right": [ diff --git a/config/waybar/style/[Black & White] Monochrome.css b/config/waybar/style/[Black & White] Monochrome.css index d2ba6c71..eabf631c 100644 --- a/config/waybar/style/[Black & White] Monochrome.css +++ b/config/waybar/style/[Black & White] Monochrome.css @@ -130,6 +130,7 @@ tooltip label{ #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Catppuccin] Frappe.css b/config/waybar/style/[Catppuccin] Frappe.css index 0c4662ef..cfe93a7b 100644 --- a/config/waybar/style/[Catppuccin] Frappe.css +++ b/config/waybar/style/[Catppuccin] Frappe.css @@ -94,6 +94,7 @@ window#waybar.hidden { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Catppuccin] Latte.css b/config/waybar/style/[Catppuccin] Latte.css index 03858dd9..255b8d1d 100644 --- a/config/waybar/style/[Catppuccin] Latte.css +++ b/config/waybar/style/[Catppuccin] Latte.css @@ -93,6 +93,7 @@ window#waybar.hidden { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Catppuccin] Mocha.css b/config/waybar/style/[Catppuccin] Mocha.css index bbeb427d..2cdff7d4 100644 --- a/config/waybar/style/[Catppuccin] Mocha.css +++ b/config/waybar/style/[Catppuccin] Mocha.css @@ -116,6 +116,7 @@ window#waybar.empty #window { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Colored] Chroma Glow.css b/config/waybar/style/[Colored] Chroma Glow.css index 199c6b93..f92823cc 100644 --- a/config/waybar/style/[Colored] Chroma Glow.css +++ b/config/waybar/style/[Colored] Chroma Glow.css @@ -117,6 +117,7 @@ tooltip label{ #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Colored] Translucent.css b/config/waybar/style/[Colored] Translucent.css index 39aa8686..a6f4dffa 100644 --- a/config/waybar/style/[Colored] Translucent.css +++ b/config/waybar/style/[Colored] Translucent.css @@ -118,6 +118,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Colorful] Aurora Blossom.css b/config/waybar/style/[Colorful] Aurora Blossom.css index 2dc23e73..d0307391 100644 --- a/config/waybar/style/[Colorful] Aurora Blossom.css +++ b/config/waybar/style/[Colorful] Aurora Blossom.css @@ -109,6 +109,7 @@ tooltip label{ #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Colorful] Aurora.css b/config/waybar/style/[Colorful] Aurora.css index d560a3a4..3fda7750 100644 --- a/config/waybar/style/[Colorful] Aurora.css +++ b/config/waybar/style/[Colorful] Aurora.css @@ -98,6 +98,7 @@ tooltip label{ #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Colorful] Oglo Chicklets.css b/config/waybar/style/[Colorful] Oglo Chicklets.css index 79cbd3ad..4aaadc50 100644 --- a/config/waybar/style/[Colorful] Oglo Chicklets.css +++ b/config/waybar/style/[Colorful] Oglo Chicklets.css @@ -83,6 +83,7 @@ button.active { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Colorful] Rainbow Spectrum.css b/config/waybar/style/[Colorful] Rainbow Spectrum.css index 34cc54ca..7afd24ce 100644 --- a/config/waybar/style/[Colorful] Rainbow Spectrum.css +++ b/config/waybar/style/[Colorful] Rainbow Spectrum.css @@ -101,6 +101,7 @@ tooltip label{ #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Dark] Golden Eclipse.css b/config/waybar/style/[Dark] Golden Eclipse.css index e782996e..03ec27ee 100644 --- a/config/waybar/style/[Dark] Golden Eclipse.css +++ b/config/waybar/style/[Dark] Golden Eclipse.css @@ -57,6 +57,7 @@ window#waybar.hidden { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Dark] Golden Noir.css b/config/waybar/style/[Dark] Golden Noir.css index 9f6cab76..5bb3fb46 100644 --- a/config/waybar/style/[Dark] Golden Noir.css +++ b/config/waybar/style/[Dark] Golden Noir.css @@ -121,6 +121,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Dark] Half-Moon.css b/config/waybar/style/[Dark] Half-Moon.css index 6a51743c..ab89c048 100644 --- a/config/waybar/style/[Dark] Half-Moon.css +++ b/config/waybar/style/[Dark] Half-Moon.css @@ -122,6 +122,7 @@ color: #F3F4F5; } #custom-light_dark, +#custom-dot_update, #custom-swaync, #custom-hypridle, #idle_inhibitor, diff --git a/config/waybar/style/[Dark] Latte-Wallust combined v2.css b/config/waybar/style/[Dark] Latte-Wallust combined v2.css index 61128602..4f8baf60 100644 --- a/config/waybar/style/[Dark] Latte-Wallust combined v2.css +++ b/config/waybar/style/[Dark] Latte-Wallust combined v2.css @@ -135,6 +135,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Dark] Latte-Wallust combined.css b/config/waybar/style/[Dark] Latte-Wallust combined.css index 2e082f3e..6b367ef1 100644 --- a/config/waybar/style/[Dark] Latte-Wallust combined.css +++ b/config/waybar/style/[Dark] Latte-Wallust combined.css @@ -140,6 +140,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Dark] Purpl.css b/config/waybar/style/[Dark] Purpl.css index 87e747ae..6857f0f9 100644 --- a/config/waybar/style/[Dark] Purpl.css +++ b/config/waybar/style/[Dark] Purpl.css @@ -125,6 +125,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Dark] Wallust Obsidian Edge.css b/config/waybar/style/[Dark] Wallust Obsidian Edge.css index 1d260053..9f11d12a 100644 --- a/config/waybar/style/[Dark] Wallust Obsidian Edge.css +++ b/config/waybar/style/[Dark] Wallust Obsidian Edge.css @@ -111,6 +111,7 @@ tooltip label { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Extra] Crimson.css b/config/waybar/style/[Extra] Crimson.css index b6c5ba71..d208cd13 100644 --- a/config/waybar/style/[Extra] Crimson.css +++ b/config/waybar/style/[Extra] Crimson.css @@ -109,6 +109,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Extra] EverForest.css b/config/waybar/style/[Extra] EverForest.css index 01eea8e4..7e45de90 100644 --- a/config/waybar/style/[Extra] EverForest.css +++ b/config/waybar/style/[Extra] EverForest.css @@ -289,6 +289,7 @@ window#waybar.hidden { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Extra] Mauve.css b/config/waybar/style/[Extra] Mauve.css index 858f7ddd..03be00fe 100644 --- a/config/waybar/style/[Extra] Mauve.css +++ b/config/waybar/style/[Extra] Mauve.css @@ -128,6 +128,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Extra] Modern-Combined - Transparent.css b/config/waybar/style/[Extra] Modern-Combined - Transparent.css index 57cb5687..ecbe9eed 100644 --- a/config/waybar/style/[Extra] Modern-Combined - Transparent.css +++ b/config/waybar/style/[Extra] Modern-Combined - Transparent.css @@ -142,6 +142,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Extra] Modern-Combined.css b/config/waybar/style/[Extra] Modern-Combined.css index 5354a51a..8b7349f1 100644 --- a/config/waybar/style/[Extra] Modern-Combined.css +++ b/config/waybar/style/[Extra] Modern-Combined.css @@ -145,6 +145,7 @@ tooltip { #custom-backlight, #custom-browser, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Extra] Rose Pine.css b/config/waybar/style/[Extra] Rose Pine.css index 85467280..7fec7e5f 100644 --- a/config/waybar/style/[Extra] Rose Pine.css +++ b/config/waybar/style/[Extra] Rose Pine.css @@ -129,6 +129,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Extra] Simple Pink.css b/config/waybar/style/[Extra] Simple Pink.css index 9da88542..e3c78c1f 100644 --- a/config/waybar/style/[Extra] Simple Pink.css +++ b/config/waybar/style/[Extra] Simple Pink.css @@ -121,6 +121,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Light] Monochrome Contrast.css b/config/waybar/style/[Light] Monochrome Contrast.css index 24d53904..e9e4141c 100644 --- a/config/waybar/style/[Light] Monochrome Contrast.css +++ b/config/waybar/style/[Light] Monochrome Contrast.css @@ -110,6 +110,7 @@ tooltip label{ #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Light] Obsidian Glow.css b/config/waybar/style/[Light] Obsidian Glow.css index 76413bab..3141a372 100644 --- a/config/waybar/style/[Light] Obsidian Glow.css +++ b/config/waybar/style/[Light] Obsidian Glow.css @@ -97,6 +97,7 @@ tooltip label { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Rainbow] RGB Bordered.css b/config/waybar/style/[Rainbow] RGB Bordered.css index b0a239d6..653e8410 100644 --- a/config/waybar/style/[Rainbow] RGB Bordered.css +++ b/config/waybar/style/[Rainbow] RGB Bordered.css @@ -117,6 +117,7 @@ window#waybar.empty #window { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Retro] Simple Style.css b/config/waybar/style/[Retro] Simple Style.css index 866c87db..3bd2d08a 100644 --- a/config/waybar/style/[Retro] Simple Style.css +++ b/config/waybar/style/[Retro] Simple Style.css @@ -71,6 +71,7 @@ window#waybar { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Transparent] Crystal Clear.css b/config/waybar/style/[Transparent] Crystal Clear.css index 8866b57a..1c88aff4 100644 --- a/config/waybar/style/[Transparent] Crystal Clear.css +++ b/config/waybar/style/[Transparent] Crystal Clear.css @@ -92,6 +92,7 @@ window#waybar.empty #window { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[WALLUST] ML4W-modern-mixed.css b/config/waybar/style/[WALLUST] ML4W-modern-mixed.css index d43b7401..e7b72bf8 100644 --- a/config/waybar/style/[WALLUST] ML4W-modern-mixed.css +++ b/config/waybar/style/[WALLUST] ML4W-modern-mixed.css @@ -142,6 +142,7 @@ window#waybar.empty #window { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[WALLUST] ML4W-modern.css b/config/waybar/style/[WALLUST] ML4W-modern.css index b7f54fa4..b6ddfc22 100644 --- a/config/waybar/style/[WALLUST] ML4W-modern.css +++ b/config/waybar/style/[WALLUST] ML4W-modern.css @@ -149,6 +149,7 @@ window#waybar.empty #window { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css b/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css index df80a321..633d56b7 100644 --- a/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css +++ b/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css @@ -81,6 +81,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust Bordered] Chroma Simple.css b/config/waybar/style/[Wallust Bordered] Chroma Simple.css index f520d0f4..29b482df 100644 --- a/config/waybar/style/[Wallust Bordered] Chroma Simple.css +++ b/config/waybar/style/[Wallust Bordered] Chroma Simple.css @@ -106,6 +106,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust Transparent] Crystal Clear.css b/config/waybar/style/[Wallust Transparent] Crystal Clear.css index 981f57a7..b6fd4271 100644 --- a/config/waybar/style/[Wallust Transparent] Crystal Clear.css +++ b/config/waybar/style/[Wallust Transparent] Crystal Clear.css @@ -125,6 +125,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust] Box type.css b/config/waybar/style/[Wallust] Box type.css index c831f51b..4325c4d6 100644 --- a/config/waybar/style/[Wallust] Box type.css +++ b/config/waybar/style/[Wallust] Box type.css @@ -106,6 +106,7 @@ window#waybar.empty #window { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust] Chroma Edge.css b/config/waybar/style/[Wallust] Chroma Edge.css index e9c386c4..487e8837 100644 --- a/config/waybar/style/[Wallust] Chroma Edge.css +++ b/config/waybar/style/[Wallust] Chroma Edge.css @@ -109,6 +109,7 @@ tooltip label{ #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust] Chroma Fusion.css b/config/waybar/style/[Wallust] Chroma Fusion.css index 8e1e936b..0fa8cd04 100644 --- a/config/waybar/style/[Wallust] Chroma Fusion.css +++ b/config/waybar/style/[Wallust] Chroma Fusion.css @@ -82,6 +82,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust] Chroma Tally.css b/config/waybar/style/[Wallust] Chroma Tally.css index 4013484e..08946225 100644 --- a/config/waybar/style/[Wallust] Chroma Tally.css +++ b/config/waybar/style/[Wallust] Chroma Tally.css @@ -93,6 +93,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust] Colored.css b/config/waybar/style/[Wallust] Colored.css index e00a80d9..967cd6b3 100644 --- a/config/waybar/style/[Wallust] Colored.css +++ b/config/waybar/style/[Wallust] Colored.css @@ -134,6 +134,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/config/waybar/style/[Wallust] Simple.css b/config/waybar/style/[Wallust] Simple.css index baeb3584..fe1a41ae 100644 --- a/config/waybar/style/[Wallust] Simple.css +++ b/config/waybar/style/[Wallust] Simple.css @@ -113,6 +113,7 @@ tooltip { #custom-browser, #custom-cava_mviz, #custom-cycle_wall, +#custom-dot_update, #custom-file_manager, #custom-keybinds, #custom-keyboard, diff --git a/copy.sh b/copy.sh index 0a549d44..26d2fef6 100755 --- a/copy.sh +++ b/copy.sh @@ -405,22 +405,6 @@ while true; do done printf "\n%.0s" {1..1} -# Ask whether to have update notification -while true; do - read -p "$CAT Do you want to ${YELLOW}enable${RESE} ${SKY_BLUE}KooL Hyprland Dots available update notification? (y/n)${RESET}: " update - # Convert the answer to lowercase for comparison - answer=$(echo "$update" | tr '[:upper:]' '[:lower:]') - if [[ "$answer" == "y" ]]; then - break - elif [[ "$answer" == "n" ]]; then - sed -i 's|^exec-once = $HOME/.config/hypr/KooLsDotsUpdate.sh|#exec-once = $HOME/.config/hypr/KooLsDotsUpdate.sh|' config/hypr/hyprland.conf - echo "Update notification disabled" - else - echo "${ERROR} Invalid choice. Please enter y for yes or n for no." - fi -done -printf "\n%.0s" {1..1} - # Check if the user wants to disable Rainbow borders echo "${NOTE} ${SKY_BLUE}By default, Rainbow Borders animation is enabled" echo "${WARN} However, this uses a bit more CPU and Memory resources." -- cgit v1.2.3 From b5dc4f9991df5ef5f5e8c4e191a863d8aeb4cdaf Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 15 Feb 2025 00:42:41 +0900 Subject: updated rofi configs. Added CTRL SHIFT R to launch modified rofi-theme-selector --- assets/rofi/themes/KooL_style-10-Fancy-v2.rasi | 166 +++++++++++++++ .../themes/KooL_style-11-Win11-list-light.rasi | 15 +- assets/rofi/themes/KooL_style-12-TOP-Docu.rasi | 149 ++++++++++++++ assets/rofi/themes/KooL_style-2-Dark.rasi | 10 +- assets/rofi/themes/KooL_style-2-Light.rasi | 8 +- config/hypr/UserConfigs/UserKeybinds.conf | 1 + config/hypr/scripts/RofiThemeSelector-modified.sh | 226 +++++++++++++++++++++ 7 files changed, 562 insertions(+), 13 deletions(-) create mode 100644 assets/rofi/themes/KooL_style-10-Fancy-v2.rasi create mode 100644 assets/rofi/themes/KooL_style-12-TOP-Docu.rasi create mode 100755 config/hypr/scripts/RofiThemeSelector-modified.sh (limited to 'config') diff --git a/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi b/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi new file mode 100644 index 00000000..845cc5f2 --- /dev/null +++ b/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi @@ -0,0 +1,166 @@ +/** + * Edited by: Dave Davenport + * User: Rasi + * Copyright: Rasmus Steinke + */ + +/* global settings and color variables */ +* { + blue: #A7c6E2; + blue-trans: #A7c6e2aa; + darkblue: #005F87; + green: #00330088; + black: #000000; + grey: #444444; + orange: #FFD391; + dark-orange: #FFA664; + light-grey: #F5F5F5; + medium-grey: #D0D0D0; + dark-grey: #002B36; + urgent: #D75F00; + active: #005F87; + transparent: #000000aa; + spacing: 0em; + padding: 0px; + background-color: white; + line-style: "none"; +} + +prompt-box { + background-color : transparent; +} + +prompt { + background-color : transparent; + text-color : white; +} + +window { + border : 2px; + border-radius : 12px; + border-color : black; + background-color : transparent; + color : @grey; +} +mainbox { + background-color : @blue-trans; + color : @grey; + spacing : 0%; +} + +listview { + // Looks. + border-radius : 10px; + border : 5px; + padding : 20px; + margin : 20px 30px 30px 30px; + background-color : @orange; + // Enable scrollbar + scrollbar : false; + scrollbar-width : 5px; + fixed-height : true; + reverse : false; + color : #000000; + spacing : 0.3em; +} +scrollbar { + color: @black; + background-color: @blue; + padding: 1px; +} +element { + border: 0px; + padding: 0px; + margin: 0px; + spacing: 0.5em; + color: @black; + background-color: @blue; + children: [ element-icon, element-text ]; +} + +element normal.normal { + color: @black; + background-color: @orange; +} +element normal.urgent { + color: @urgent; + background-color: @light-grey; +} +element normal.active { + color: @active; + background-color: @light-grey; +} +element selected.normal { + border-radius: 0px; + color: @black; + background-color: @dark-orange; +} +element selected.urgent { + color: @light-grey; + background-color: @urgent; +} +element selected.active { + color: @light-grey; + background-color: @active; +} +element alternate.normal { + color: @black; + background-color: @orange; +} +element alternate.urgent { + color: @urgent; + background-color: @medium-grey; +} +element alternate.active { + color: @active; + background-color: @medium-grey; +} +inputbar { + spacing : 5px; + background-color : #88003300; + border : 0px 0px 2px 0px; + border-radius : 0px; + padding : 5px 10px 5px 35px; + background-color : #00330088; + color : @black; + end : false; +} + +separator { + background-color : @blue; + color : #00000000; +} +prompt normal.normal { + background-color : #00000000; + color : #ffffff; + padding : 0px; +} +entry normal.normal { + background-color : #00000000; + color : #ffffff; + padding : 0px; +} +case-indicator normal.normal { + background-color : #00000000; + color : #ffffff; + padding : 0px; +} + +message { + margin : 30px; + padding : 20px 30px 20px 20px; + padding : 20px ; + border-radius : 10px; + border : 5px; +} + +prompt-colon { + spacing : 0; + enabled : false; +} + +element-text, element-icon { + background-color : inherit; + text-color : inherit; + foreground-color : inherit; +} diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi index 0e2600f1..e6437b29 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -6,14 +6,14 @@ /* ---- Configuration ---- */ configuration { - dpi: 1; + dpi: 1; show-icons: true; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; } -/*****----- Global Properties -----*****/ +/*****----- Global Properties -----*****/ * { bg0 : #ffffff80; bg1 : #f9f9f9bf; @@ -81,7 +81,6 @@ entry { placeholder-color : @fg1; } - listview { columns : 2; spacing : 8px; @@ -133,9 +132,9 @@ error-message { } textbox { - padding : 10px; - background-color : @bg0; - text-color : @fg0; - vertical-align : 0.5; - horizontal-align : 0.5; + padding : 10px; + background-color : @bg0; + text-color : @fg0; + vertical-align : 0.5; + horizontal-align : 0.5; } diff --git a/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi b/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi new file mode 100644 index 00000000..3e80c81a --- /dev/null +++ b/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi @@ -0,0 +1,149 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 12 - TOP - Docu */ +/* Credit to DaveDavenport. I have only some few things changed */ + +/** + * ROFI Documentation theme. + * User: Qball + * Copyright: Dave Davenport + */ + +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "Apps"; + display-run: "Run"; + display-filebrowser: "Files"; + display-window: "Windows"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Global Properties ---- */ +* { + background-color: transparent; + text-color: white; +} +entry { + border: 2px 0px; + border-color: darkgrey; + background-color: grey; + padding: 4px; + placeholder: "๐Ÿ”Ž Search"; + placeholder-color: darkgrey; + cursor: text; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; + +} +inputbar { + spacing: 0; + children: [ icon-keyboard, entry, mode-switcher ]; +} + +mode-switcher { + spacing: 10px; + border: 2px; + border-radius: 0px 4px 4px 0px; + border-color: darkgrey; + background-color: darkgrey; +} + +button { + padding: 0px 60px 0px 60px; + background-color: grey; + border-color: darkgrey; + cursor: pointer; +} + +button selected { + background-color: white/20%; + text-color: black; +} + +icon-keyboard { + border: 2px 0px 2px 2px; + border-radius: 4px 0px 0px 4px; + border-color: darkgrey; + background-color: grey; + padding: 0px 10px 0px 10px; + expand: false; + size: 1.2em; + filename: "keyboard"; +} + +window { + anchor: north; + location: north; + width: 100%; + background-color: black / 50%; + padding: 1em; + border-color: black; + border: 0em 0.2em 0.2em; + chilren: [ inputbar, message, listview ]; +} + +mainbox { + spacing: 1em; +} + + +listview { + lines: 4; + columns: 6; + spacing: 1em; + fixed-columns: true; +} + +element { + orientation: vertical; + border: 2px; + border-radius: 4px ; + border-color: darkgrey; + background-color: grey; + cursor: pointer; + padding: 4px; +} + +element selected { + background-color: white/20%; + text-color: black; +} + + +element-icon { + cursor: inherit; +} + +element-text { + horizontal-align: 0.5; + cursor: inherit; +} + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + margin: 10px; + padding: 12px; + border-radius: 10px; + background-color: black / 50%; + text-color: white; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: black / 50%; + text-color: white; +} \ No newline at end of file diff --git a/assets/rofi/themes/KooL_style-2-Dark.rasi b/assets/rofi/themes/KooL_style-2-Dark.rasi index 1925203b..5c8381f7 100644 --- a/assets/rofi/themes/KooL_style-2-Dark.rasi +++ b/assets/rofi/themes/KooL_style-2-Dark.rasi @@ -3,7 +3,7 @@ /* Source: https://github.com/adi1090x/rofi */ -/*****----- Configuration -----*****/ +/* ****----- Configuration -----**** */ configuration { modi: "drun,filebrowser,window"; show-icons: true; @@ -11,14 +11,18 @@ configuration { display-run: "RUN"; display-filebrowser: "FILES"; display-window: "WINDOW"; - drun-display-format: "{name}\n[({generic})]"; - window-format: "Class : {c}\nWorkspace : {w}"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; } +/*****----- Global Properties -----*****/ +* { + +} /*****-- Elements Font Size -----*****/ element-text { font: "JetBrainsMono Nerd Font SemiBold 12"; diff --git a/assets/rofi/themes/KooL_style-2-Light.rasi b/assets/rofi/themes/KooL_style-2-Light.rasi index 118b6e54..08b58d15 100644 --- a/assets/rofi/themes/KooL_style-2-Light.rasi +++ b/assets/rofi/themes/KooL_style-2-Light.rasi @@ -11,14 +11,18 @@ configuration { display-run: "RUN"; display-filebrowser: "FILES"; display-window: "WINDOW"; - drun-display-format: "{name}\n[({generic})]"; - window-format: "Class : {c}\nWorkspace : {w}"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; } +/*****----- Global Properties -----*****/ +* { + +} /*****-- Elements Font Size -----*****/ element-text { font: "JetBrainsMono Nerd Font SemiBold 12"; diff --git a/config/hypr/UserConfigs/UserKeybinds.conf b/config/hypr/UserConfigs/UserKeybinds.conf index feb54c22..862ffa45 100644 --- a/config/hypr/UserConfigs/UserKeybinds.conf +++ b/config/hypr/UserConfigs/UserKeybinds.conf @@ -31,6 +31,7 @@ bind = $mainMod SHIFT, G, exec, $scriptsDir/GameMode.sh # Toggle animations ON/O bind = $mainMod ALT, L, exec, $scriptsDir/ChangeLayout.sh # Toggle Master or Dwindle Layout bind = $mainMod ALT, V, exec, $scriptsDir/ClipManager.sh # Clipboard Manager bind = $mainMod CTRL, R, exec, $scriptsDir/RofiThemeSelector.sh # modified Rofi Theme Selector +bind = $mainMod CTRL SHIFT, R, exec, $scriptsDir/RofiThemeSelector-modified.sh # modified Rofi Theme Selector bind = $mainMod SHIFT, F, fullscreen # whole full screen bind = $mainMod CTRL, F, fullscreen, 1 # fake full screen diff --git a/config/hypr/scripts/RofiThemeSelector-modified.sh b/config/hypr/scripts/RofiThemeSelector-modified.sh new file mode 100755 index 00000000..e4d476c3 --- /dev/null +++ b/config/hypr/scripts/RofiThemeSelector-modified.sh @@ -0,0 +1,226 @@ +#!/bin/bash +# /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## +# A modified version of Rofi-Theme-Selector, concentrating only on ~/.local and also, applying only 10 @themes in ~/.config/rofi/config.rasi +# as opposed to continous adding of //@theme + +# This code is released in public domain by Dave Davenport + +iDIR="$HOME/.config/swaync/images" + + +OS="linux" + +ROFI=$(command -v rofi) +SED=$(command -v sed) +MKTEMP=$(command -v mktemp) +NOTIFY_SEND=$(command -v notify-send) + +if [ -z "${SED}" ] +then + echo "Did not find 'sed', script cannot continue." + exit 1 +fi +if [ -z "${MKTEMP}" ] +then + echo "Did not find 'mktemp', script cannot continue." + exit 1 +fi +if [ -z "${ROFI}" ] +then + echo "Did not find rofi, there is no point to continue." + exit 1 +fi +if [ -z "${NOTIFY_SEND}" ] +then + echo "Did not find 'notify-send', notifications won't work." +fi + +TMP_CONFIG_FILE=$(${MKTEMP}).rasi +rofi_theme_dir="${HOME}/.local/share/rofi/themes" +rofi_config_file="${XDG_CONFIG_HOME:-${HOME}/.config}/rofi/config.rasi" + +## +# Array with parts to the found themes. +# And array with the printable name. +## +declare -a themes +declare -a theme_names + +## +# Function that tries to find all installed rofi themes. +# This fills in #themes array and formats a displayable string #theme_names +## +find_themes() +{ + DIRS="${HOME}/.local/share" + OLDIFS=${IFS} + IFS=: + # Add user dir. + DIRS+=":${XDG_CONFIG_HOME:-${HOME}/.config}" + for p in ${DIRS}; do + p=${p%/} + TD=${p}/rofi/themes + if [ -n "${p}" ] && [ -d "${TD}" ] + then + echo "Checking themes in: ${TD}" + for file in ${TD}/*.rasi + do + if [ -f "${file}" ] + then + themes+=("${file}") + FN=$(basename "${file}") + NAME=${FN%.*} # Extract the file name without extension + theme_names+=("${NAME}") # Only add the base file name + fi + done + fi + done + IFS=${OLDIFS} +} + +## +# Function to add or update theme in the config.rasi +## +add_theme_to_config() { + local theme_name="$1" + local theme_path="$rofi_theme_dir/$theme_name" + + # if config in $HOME to write as $HOME + if [[ "$theme_path" == $HOME/* ]]; then + theme_path_with_tilde="~${theme_path#$HOME}" + else + theme_path_with_tilde="$theme_path" + fi + + # If no @theme is in the file, add it + if ! grep -q '^\s*@theme' "$rofi_config_file"; then + echo -e "\n\n@theme \"$theme_path_with_tilde\"" >> "$rofi_config_file" + echo "Added @theme \"$theme_path_with_tilde\" to $rofi_config_file" + else + $SED -i "s/^\(\s*@theme.*\)/\/\/\1/" "$rofi_config_file" + echo -e "@theme \"$theme_path_with_tilde\"" >> "$rofi_config_file" + echo "Updated @theme line to $theme_path_with_tilde" + fi + + # Ensure no more than max # of lines with //@theme lines + max_line="9" + total_lines=$(grep -c '^\s*//@theme' "$rofi_config_file") + + if [ "$total_lines" -gt "$max_line" ]; then + excess=$((total_lines - max_line)) + # Remove the oldest or the very top //@theme lines + for i in $(seq 1 "$excess"); do + $SED -i '0,/^\s*\/\/@theme/ { /^\s*\/\/@theme/ {d; q; }}' "$rofi_config_file" + done + echo "Removed excess //@theme lines" + fi +} + +## +# Create a copy of rofi config +## +create_config_copy() +{ + ${ROFI} -dump-config > "${TMP_CONFIG_FILE}" + # remove theme entry. + ${SED} -i 's/^\s*theme:\s\+".*"\s*;//g' "${TMP_CONFIG_FILE}" +} + +### +# Print the list out so it can be displayed by rofi. +## +create_theme_list() +{ + OLDIFS=${IFS} + IFS='|' + for themen in ${theme_names[@]} + do + echo "${themen}" + done + IFS=${OLDIFS} +} + +## +# Thee indicate what entry is selected. +## +declare -i SELECTED + +select_theme() +{ + local MORE_FLAGS=(-dmenu -format i -no-custom -p "Theme" -markup -config "${TMP_CONFIG_FILE}" -i) + MORE_FLAGS+=(-kb-custom-1 "Alt-a") + MORE_FLAGS+=(-u 2,3 -a 4,5 ) + local CUR="default" + while true + do + declare -i RTR + declare -i RES + local MESG="""You can preview themes by hitting Enter. +Alt-a to accept the new theme. +Escape to cancel +Current theme: ${CUR} +When setting a new theme this will override previous theme settings. +Please update your config file if you have local modifications.""" + THEME_FLAG= + if [ -n "${SELECTED}" ] + then + THEME_FLAG="-theme ${themes[${SELECTED}]}" + fi + RES=$( create_theme_list | ${ROFI} ${THEME_FLAG} ${MORE_FLAGS[@]} -cycle -selected-row "${SELECTED}" -mesg "${MESG}") + RTR=$? + if [ "${RTR}" = 10 ] + then + return 0; + elif [ "${RTR}" = 1 ] + then + return 1; + elif [ "${RTR}" = 65 ] + then + return 1; + fi + CUR=${theme_names[${RES}]} + SELECTED=${RES} + done +} + +############################################################################################################ +# Actual program execution +########################################################################################################### +## +# Find all themes +## +find_themes + +## +# Do check if there are themes. +## +if [ ${#themes[@]} = 0 ] +then + ${ROFI} -e "No themes found." + exit 0 +fi + +## +# Create copy of config to play with in preview +## +create_config_copy + +## +# Show the themes to user. +## +if select_theme && [ -n "${SELECTED}" ] +then + # Apply the selected theme + add_theme_to_config "${theme_names[${SELECTED}]}" + + # Send notification with the selected theme name + selection="${theme_names[${SELECTED}]}" + if [ -n "$NOTIFY_SEND" ]; then + notify-send -u low -i "$iDIR/ja.png" "Rofi Theme" "applied: $selection" + fi +fi + +## +# Remove temp. config. +## +rm -- "${TMP_CONFIG_FILE}" -- cgit v1.2.3 From 558faeeebd7ebb7c383f23ecd2b643f88ef8d551 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 15 Feb 2025 01:26:36 +0900 Subject: yeah this should be ok --- assets/rofi/themes/KooL_LonerOrZ.rasi | 10 ++++++++++ assets/rofi/themes/KooL_style-10-Fancy-v2.rasi | 14 +++++++++++--- assets/rofi/themes/KooL_style-10-Fancy.rasi | 11 +++++++---- assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi | 10 ++++++++++ assets/rofi/themes/KooL_style-11-Win11-list-light.rasi | 10 ++++++++++ assets/rofi/themes/KooL_style-12-TOP-Docu.rasi | 9 +++++++++ assets/rofi/themes/KooL_style-2-Dark.rasi | 10 ++++++++++ assets/rofi/themes/KooL_style-2-Light.rasi | 10 ++++++++++ assets/rofi/themes/KooL_style-5.rasi | 14 ++++++++++++-- assets/rofi/themes/KooL_style-6.rasi | 11 ++++++++++- config/rofi/config-emoji.rasi | 3 ++- config/rofi/config-rofi-theme.rasi | 2 ++ 12 files changed, 103 insertions(+), 11 deletions(-) (limited to 'config') diff --git a/assets/rofi/themes/KooL_LonerOrZ.rasi b/assets/rofi/themes/KooL_LonerOrZ.rasi index 4ad64054..5afd1f6b 100644 --- a/assets/rofi/themes/KooL_LonerOrZ.rasi +++ b/assets/rofi/themes/KooL_LonerOrZ.rasi @@ -103,6 +103,16 @@ listview { layout: vertical; } +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: @BDR; + handle-width: 5px ; + padding: 0; +} + mainbox { background-color: @BG; children: [ inputbar, message, listview ]; diff --git a/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi b/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi index 845cc5f2..3e4a55c7 100644 --- a/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi +++ b/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi @@ -1,3 +1,7 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 10 - Fancy v2 */ +/* Credit to DaveDavenport & Rasmus Steinke */ + /** * Edited by: Dave Davenport * User: Rasi @@ -63,10 +67,14 @@ listview { color : #000000; spacing : 0.3em; } +/* ---- Scrollbar ---- */ scrollbar { - color: @black; - background-color: @blue; - padding: 1px; + border: 1px; + border-radius: 10px; + background-color: @blue; + handle-color: @orange; + handle-width: 5px ; + padding: 0; } element { border: 0px; diff --git a/assets/rofi/themes/KooL_style-10-Fancy.rasi b/assets/rofi/themes/KooL_style-10-Fancy.rasi index f5dc79e4..b503f549 100644 --- a/assets/rofi/themes/KooL_style-10-Fancy.rasi +++ b/assets/rofi/themes/KooL_style-10-Fancy.rasi @@ -220,11 +220,14 @@ element.alternate.active { background-color: @alternate-active-background; text-color: @alternate-active-foreground; } +/* ---- Scrollbar ---- */ scrollbar { - width: 4px ; - border: 0; - handle-width: 8px ; - padding: 0; + border: 1px; + border-radius: 10px; + background-color: @selected-normal-background; + handle-color: @separatorcolor; + handle-width: 5px ; + padding: 0; } sidebar { border: 2px 0px 0px ; diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi index 9dede9f8..229a5297 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -126,6 +126,16 @@ element-text { text-color: inherit; } +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: inherit; + handle-color: @accent; + handle-width: 5px ; + padding: 0; +} + /*****----- Message -----*****/ error-message { padding: 20px; diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi index e6437b29..8d5082e6 100644 --- a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -126,6 +126,16 @@ element-text { text-color: inherit; } +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: inherit; + handle-color: @accent; + handle-width: 5px ; + padding: 0; +} + /*****----- Message -----*****/ error-message { padding: 20px; diff --git a/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi b/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi index 85cabae6..55fbb0b7 100644 --- a/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi +++ b/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi @@ -128,6 +128,15 @@ element-text { cursor: inherit; } +/* ---- Scrollbar ---- */ +scrollbar { + border-radius: 10px; + background-color: transparent; + handle-color: darkgrey; + handle-width: 5px ; + padding: 0; +} + /* ---- Message ---- */ message { background-color: transparent; diff --git a/assets/rofi/themes/KooL_style-2-Dark.rasi b/assets/rofi/themes/KooL_style-2-Dark.rasi index 5c8381f7..73c3eee7 100644 --- a/assets/rofi/themes/KooL_style-2-Dark.rasi +++ b/assets/rofi/themes/KooL_style-2-Dark.rasi @@ -104,6 +104,16 @@ listview { cursor: "default"; } +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: inherit; + handle-color: #719DF9; + handle-width: 5px ; + padding: 0; +} + /*****----- Elements -----*****/ element { enabled: true; diff --git a/assets/rofi/themes/KooL_style-2-Light.rasi b/assets/rofi/themes/KooL_style-2-Light.rasi index 08b58d15..29ea7188 100644 --- a/assets/rofi/themes/KooL_style-2-Light.rasi +++ b/assets/rofi/themes/KooL_style-2-Light.rasi @@ -104,6 +104,16 @@ listview { cursor: "default"; } +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: gray/50%; + handle-width: 5px ; + padding: 0; +} + /*****----- Elements -----*****/ element { enabled: true; diff --git a/assets/rofi/themes/KooL_style-5.rasi b/assets/rofi/themes/KooL_style-5.rasi index 135c6ba0..8609dcaf 100644 --- a/assets/rofi/themes/KooL_style-5.rasi +++ b/assets/rofi/themes/KooL_style-5.rasi @@ -144,7 +144,7 @@ button { } button selected { - background-color: @color12; + background-color: @selected; text-color: @foreground; border: 1px; border-color: transparent; @@ -170,6 +170,16 @@ listview { border: 0px; } +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: @active; + handle-width: 5px ; + padding: 0; +} + /* ---- Element ---- */ element { enabled: true; @@ -197,7 +207,7 @@ element normal.active { } element selected.normal { - background-color: @color11; + background-color: @active; text-color: inherit; } diff --git a/assets/rofi/themes/KooL_style-6.rasi b/assets/rofi/themes/KooL_style-6.rasi index bdc1b12d..369c0854 100644 --- a/assets/rofi/themes/KooL_style-6.rasi +++ b/assets/rofi/themes/KooL_style-6.rasi @@ -121,6 +121,15 @@ listview { border: 0px; } +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: @active; + handle-width: 5px ; + padding: 0; +} /* ---- Dummy ---- */ dummy { expand: true; @@ -142,7 +151,7 @@ button { cursor: pointer; } button selected { - background-color: @color11; + background-color: @active; text-color: @text-selected; } diff --git a/config/rofi/config-emoji.rasi b/config/rofi/config-emoji.rasi index aa407999..c107bdc3 100644 --- a/config/rofi/config-emoji.rasi +++ b/config/rofi/config-emoji.rasi @@ -18,9 +18,10 @@ entry { /* ---- Listview ---- */ listview { - columns: 1; + columns: 2; lines: 8; fixed-height: false; + scrollbar: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-rofi-theme.rasi b/config/rofi/config-rofi-theme.rasi index 531a2c2c..14f1f971 100644 --- a/config/rofi/config-rofi-theme.rasi +++ b/config/rofi/config-rofi-theme.rasi @@ -20,6 +20,7 @@ listview { columns: 2; lines: 8; fixed-height: false; + scrollbar: true; } /* ---- Entry input ---- */ @@ -41,3 +42,4 @@ element-text { horizontal-align: 0.0; margin: 5px 30px 5px 30px; } + -- cgit v1.2.3 From adee3e65f23b3bff8466a2b8d0bc54eb75d9b095 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 15 Feb 2025 01:35:06 +0900 Subject: updated window rules --- config/hypr/UserConfigs/WindowRules.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'config') diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index 44e4b3c3..f2f60899 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -7,6 +7,7 @@ windowrulev2 = tag +browser, class:^([Ff]irefox|org.mozilla.firefox|[Ff]irefox-esr)$ windowrulev2 = tag +browser, class:^([Gg]oogle-chrome(-beta|-dev|-unstable)?)$ windowrulev2 = tag +browser, class:^(chrome-.+-Default)$ # Chrome PWAs +windowrulev2 = tag +browser, class:^([Cc]hromium)$ windowrulev2 = tag +browser, class:^([Mm]icrosoft-edge(-stable|-beta|-dev|-unstable))$ windowrulev2 = tag +browser, class:^(Brave-browser(-beta|-dev|-unstable)?)$ windowrulev2 = tag +browser, class:^([Tt]horium-browser|[Cc]achy-browser)$ -- cgit v1.2.3 From 1d714a5ea76fd19d530b9d06ce9b73627d8224d9 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 15 Feb 2025 12:42:11 +0900 Subject: updated rofi theme handling --- assets/rofi/themes/KooL_LonerOrZ.rasi | 195 ------------ assets/rofi/themes/KooL_style-1.rasi | 246 ---------------- assets/rofi/themes/KooL_style-10-Fancy-v2.rasi | 174 ----------- assets/rofi/themes/KooL_style-10-Fancy.rasi | 302 ------------------- .../rofi/themes/KooL_style-11-Win11-list-dark.rasi | 150 ---------- .../themes/KooL_style-11-Win11-list-light.rasi | 150 ---------- assets/rofi/themes/KooL_style-12-TOP-Docu.rasi | 159 ---------- assets/rofi/themes/KooL_style-2-Dark.rasi | 191 ------------ assets/rofi/themes/KooL_style-2-Light.rasi | 193 ------------ assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi | 256 ---------------- assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 217 -------------- assets/rofi/themes/KooL_style-4.rasi | 328 --------------------- assets/rofi/themes/KooL_style-5.rasi | 272 ----------------- assets/rofi/themes/KooL_style-6.rasi | 241 --------------- assets/rofi/themes/KooL_style-7.rasi | 200 ------------- assets/rofi/themes/KooL_style-8.rasi | 243 --------------- assets/rofi/themes/KooL_style-9.rasi | 212 ------------- config/rofi/themes/KooL_LonerOrZ.rasi | 195 ++++++++++++ config/rofi/themes/KooL_style-1.rasi | 246 ++++++++++++++++ config/rofi/themes/KooL_style-10-Fancy-v2.rasi | 174 +++++++++++ config/rofi/themes/KooL_style-10-Fancy.rasi | 302 +++++++++++++++++++ .../rofi/themes/KooL_style-11-Win11-list-dark.rasi | 150 ++++++++++ .../themes/KooL_style-11-Win11-list-light.rasi | 150 ++++++++++ config/rofi/themes/KooL_style-12-TOP-Docu.rasi | 159 ++++++++++ config/rofi/themes/KooL_style-2-Dark.rasi | 191 ++++++++++++ config/rofi/themes/KooL_style-2-Light.rasi | 193 ++++++++++++ config/rofi/themes/KooL_style-3-FullScreen-v1.rasi | 256 ++++++++++++++++ config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 217 ++++++++++++++ config/rofi/themes/KooL_style-4.rasi | 328 +++++++++++++++++++++ config/rofi/themes/KooL_style-5.rasi | 272 +++++++++++++++++ config/rofi/themes/KooL_style-6.rasi | 241 +++++++++++++++ config/rofi/themes/KooL_style-7.rasi | 200 +++++++++++++ config/rofi/themes/KooL_style-8.rasi | 243 +++++++++++++++ config/rofi/themes/KooL_style-9.rasi | 212 +++++++++++++ copy.sh | 25 +- 35 files changed, 3742 insertions(+), 3741 deletions(-) delete mode 100644 assets/rofi/themes/KooL_LonerOrZ.rasi delete mode 100644 assets/rofi/themes/KooL_style-1.rasi delete mode 100644 assets/rofi/themes/KooL_style-10-Fancy-v2.rasi delete mode 100644 assets/rofi/themes/KooL_style-10-Fancy.rasi delete mode 100644 assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi delete mode 100644 assets/rofi/themes/KooL_style-11-Win11-list-light.rasi delete mode 100644 assets/rofi/themes/KooL_style-12-TOP-Docu.rasi delete mode 100644 assets/rofi/themes/KooL_style-2-Dark.rasi delete mode 100644 assets/rofi/themes/KooL_style-2-Light.rasi delete mode 100644 assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi delete mode 100644 assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi delete mode 100644 assets/rofi/themes/KooL_style-4.rasi delete mode 100644 assets/rofi/themes/KooL_style-5.rasi delete mode 100644 assets/rofi/themes/KooL_style-6.rasi delete mode 100644 assets/rofi/themes/KooL_style-7.rasi delete mode 100644 assets/rofi/themes/KooL_style-8.rasi delete mode 100644 assets/rofi/themes/KooL_style-9.rasi create mode 100644 config/rofi/themes/KooL_LonerOrZ.rasi create mode 100644 config/rofi/themes/KooL_style-1.rasi create mode 100644 config/rofi/themes/KooL_style-10-Fancy-v2.rasi create mode 100644 config/rofi/themes/KooL_style-10-Fancy.rasi create mode 100644 config/rofi/themes/KooL_style-11-Win11-list-dark.rasi create mode 100644 config/rofi/themes/KooL_style-11-Win11-list-light.rasi create mode 100644 config/rofi/themes/KooL_style-12-TOP-Docu.rasi create mode 100644 config/rofi/themes/KooL_style-2-Dark.rasi create mode 100644 config/rofi/themes/KooL_style-2-Light.rasi create mode 100644 config/rofi/themes/KooL_style-3-FullScreen-v1.rasi create mode 100644 config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi create mode 100644 config/rofi/themes/KooL_style-4.rasi create mode 100644 config/rofi/themes/KooL_style-5.rasi create mode 100644 config/rofi/themes/KooL_style-6.rasi create mode 100644 config/rofi/themes/KooL_style-7.rasi create mode 100644 config/rofi/themes/KooL_style-8.rasi create mode 100644 config/rofi/themes/KooL_style-9.rasi (limited to 'config') diff --git a/assets/rofi/themes/KooL_LonerOrZ.rasi b/assets/rofi/themes/KooL_LonerOrZ.rasi deleted file mode 100644 index 5afd1f6b..00000000 --- a/assets/rofi/themes/KooL_LonerOrZ.rasi +++ /dev/null @@ -1,195 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Style LonerOrZ */ -/* Submitted by https://github.com/lonerOrz */ - - - -configuration { - show-icons: true; - display-drun: "๏‘„"; - drun-display-format: "{icon} {name}"; - disable-history: false; - click-to-exit: true; - location: 0; -} - -/*****----- Global Properties -----*****/ -* { - font: "Iosevka 12"; - - BG: #1E1D2Fff; - BGA: #89DCEBff; - FG: #D9E0EEff; - FGA: #F28FADff; - BDR: #96CDFBff; - SEL: #1E1E2Eff; - UGT: #F28FADff; - IMG: #FAE3B0ff; - OFF: #575268ff; - ON: #ABE9B3ff; -} - -window { - transparency: "real"; - background-color: @BG; - text-color: @FG; - border: 2px; - border-color: @BDR; - border-radius: 10px; - width: 25%; - anchor: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 8px; - background-color: @BG; - text-color: @IMG; -} - -textbox-prompt-colon { - expand: false; - str: "๏€‚"; - border-radius: 100%; - background-color: @SEL; - text-color: @FG; - padding: 8px 12px 8px 12px; - font: "Iosevka Nerd Font 10"; -} - -entry { - background-color: @BG; - text-color: @FG; - placeholder-color: @FG; - expand: true; - horizontal-align: 0; - placeholder: "Search..."; - blink: true; - border: 0px 0px 2px 0px; - border-color: @BDR; - border-radius: 10px; - padding: 8px; -} - -inputbar { - children: [ textbox-prompt-colon, entry ]; - background-color: @BG; - text-color: @FG; - expand: false; - border: 0px 0px 0px 0px; - border-radius: 0px; - border-color: @BDR; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -case-indicator { - background-color: @BG; - text-color: @FG; - spacing: 0; -} - - -listview { - background-color: @BG; - columns: 1; - lines: 7; - spacing: 4px; - cycle: false; - dynamic: true; - layout: vertical; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0px; - border-radius: 10px; - background-color: transparent; - handle-color: @BDR; - handle-width: 5px ; - padding: 0; -} - -mainbox { - background-color: @BG; - children: [ inputbar, message, listview ]; - spacing: 15px; - padding: 15px; -} - -element { - background-color: @BG; - text-color: @FG; - orientation: horizontal; - border-radius: 4px; - padding: 6px 6px 6px 6px; -} - -element-icon { - background-color: inherit; - text-color: inherit; - horizontal-align: 0.5; - vertical-align: 0.5; - size: 24px; - border: 0px; -} - -element-text { - background-color: inherit; - text-color: inherit; - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 2px 0px 2px 2px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @UGT; - text-color: @FG; - border-radius: 9px; -} - -element normal.active, -element alternate.active { - background-color: @BGA; - text-color: @FG; -} - -element selected { - background-color: @BGA; - text-color: @SEL; - border: 0px 0px 0px 0px; - border-radius: 10px; - border-color: @BDR; -} - -element selected.urgent { - background-color: @UGT; - text-color: @FG; -} - -element selected.active { - background-color: @BGA; - color: @FG; -} - -/*****----- Message -----*****/ -message { - background-color: transparent; - border: 0px; -} -error-message { - padding: 20px; -} -textbox { - padding: 10px; - border-radius: 10px; - background-color: @BDR; - text-color: @SEL; - vertical-align: 0.5; - horizontal-align: 0.5; -} diff --git a/assets/rofi/themes/KooL_style-1.rasi b/assets/rofi/themes/KooL_style-1.rasi deleted file mode 100644 index 9ac62fd7..00000000 --- a/assets/rofi/themes/KooL_style-1.rasi +++ /dev/null @@ -1,246 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 1 */ - -/* ---- Configuration ---- */ - -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - background-alt: @color1; - selected: @color12; - active: @color11; - urgent: red; - - text-selected: @background; - text-color: @foreground; - border-color: @selected; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} -/* ---- Window ---- */ -window { - // Default - enabled: true; - fullscreen: false; - transparency: "real"; - cursor: "default"; - spacing: 0px; - border: 3px 0px 3px 0px; - border-radius: 30px; - location: center; - anchor: center; - - // Style Values - width: 50%; - background-color: @background; -} - -/* ----- Main Box ----- */ -mainbox { - padding: 12px; - enabled: true; - orientation: vertical; - children: [ "inputbar", "listbox" ]; - background-color: transparent; -} - - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - padding: 10px 10px 50px 10px; - margin: 10px; - background-color: transparent; - border-radius: 20px; - orientation: horizontal; - children: ["entry", "dummy", "mode-switcher" ]; - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -/* ---- Entry input ---- */ -entry { - enabled: true; - expand: false; - width: 20%; - padding: 10px; - border-radius: 12px; - background-color: @active; - text-color: @text-selected; - cursor: text; - placeholder: " ๐Ÿ–ฅ๏ธ Search "; - placeholder-color: inherit; -} - -/* ---- Listbox ---- */ -listbox { - spacing: 10px; - padding: 10px; - background-color: transparent; - orientation: vertical; - children: [ "message", "listview" ]; -} - -/* ---- Listview ---- */ -listview { - enabled: true; - columns: 5; - lines: 5; - cycle: true; - dynamic: true; - scrollbar: true; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - spacing: 10px; - background-color: transparent; - margin: 10px; - text-color: @foreground; - -// Adapt rofi theme - border: 0px; -} - -/* ---- Dummy ---- */ -dummy { - expand: true; - background-color: transparent; -} - -/* ---- Mode Switcher ---- */ -mode-switcher{ - enabled: true; - spacing: 10px; - background-color: transparent; -} -button { - width: 5%; - padding: 12px; - border-radius: 12px; - background-color: @text-selected; - text-color: @text-color; - cursor: pointer; -} -button selected { - background-color: @selected; - text-color: @text-selected; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - border-color: @color12; - handle-color: @color11; - handle-width: 10px ; - padding: 0; -} - -/* ---- Elements ---- */ -element { - enabled: true; - orientation: vertical; - padding: 10px; - spacing: 10px; - border-radius: 12px; - background-color: transparent; - cursor: pointer; -} - -element normal.normal { - background-color: inherit; - text-color: inherit; -} -element normal.urgent { - background-color: @urgent; - text-color: @foreground; -} -element normal.active { - background-color: @active; - text-color: @foreground; -} - -element selected.normal { - border: 0px 3px 0px 3px; - border-radius: 16px; - border-color: @active; - background-color: transparent; - text-color: @selected; -} - -element selected.urgent { - background-color: @urgent; - text-color: @text-selected; -} -element selected.active { - background-color: @urgent; - text-color: @text-selected; -} -// Adapt rofi theme -element alternate.normal { - background-color: transparent; - text-color: inherit; -} -element alternate.urgent { - background-color: transparent; - text-color: inherit; -} -element alternate.active { - background-color: transparent; - text-color: inherit; -} -element-icon { - size: 3%; - background-color: transparent; - text-color: inherit; - cursor: inherit; -} -element-text { - size: 1%; - background-color: transparent; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.5; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - margin: 10px; - padding: 12px; - border-radius: 10px; - background-color: @active; - text-color: @foreground; - vertical-align: 0.5; - horizontal-align: 0.5; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: @background; - text-color: @foreground; -} diff --git a/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi b/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi deleted file mode 100644 index 3e4a55c7..00000000 --- a/assets/rofi/themes/KooL_style-10-Fancy-v2.rasi +++ /dev/null @@ -1,174 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 10 - Fancy v2 */ -/* Credit to DaveDavenport & Rasmus Steinke */ - -/** - * Edited by: Dave Davenport - * User: Rasi - * Copyright: Rasmus Steinke - */ - -/* global settings and color variables */ -* { - blue: #A7c6E2; - blue-trans: #A7c6e2aa; - darkblue: #005F87; - green: #00330088; - black: #000000; - grey: #444444; - orange: #FFD391; - dark-orange: #FFA664; - light-grey: #F5F5F5; - medium-grey: #D0D0D0; - dark-grey: #002B36; - urgent: #D75F00; - active: #005F87; - transparent: #000000aa; - spacing: 0em; - padding: 0px; - background-color: white; - line-style: "none"; -} - -prompt-box { - background-color : transparent; -} - -prompt { - background-color : transparent; - text-color : white; -} - -window { - border : 2px; - border-radius : 12px; - border-color : black; - background-color : transparent; - color : @grey; -} -mainbox { - background-color : @blue-trans; - color : @grey; - spacing : 0%; -} - -listview { - // Looks. - border-radius : 10px; - border : 5px; - padding : 20px; - margin : 20px 30px 30px 30px; - background-color : @orange; - // Enable scrollbar - scrollbar : false; - scrollbar-width : 5px; - fixed-height : true; - reverse : false; - color : #000000; - spacing : 0.3em; -} -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - background-color: @blue; - handle-color: @orange; - handle-width: 5px ; - padding: 0; -} -element { - border: 0px; - padding: 0px; - margin: 0px; - spacing: 0.5em; - color: @black; - background-color: @blue; - children: [ element-icon, element-text ]; -} - -element normal.normal { - color: @black; - background-color: @orange; -} -element normal.urgent { - color: @urgent; - background-color: @light-grey; -} -element normal.active { - color: @active; - background-color: @light-grey; -} -element selected.normal { - border-radius: 0px; - color: @black; - background-color: @dark-orange; -} -element selected.urgent { - color: @light-grey; - background-color: @urgent; -} -element selected.active { - color: @light-grey; - background-color: @active; -} -element alternate.normal { - color: @black; - background-color: @orange; -} -element alternate.urgent { - color: @urgent; - background-color: @medium-grey; -} -element alternate.active { - color: @active; - background-color: @medium-grey; -} -inputbar { - spacing : 5px; - background-color : #88003300; - border : 0px 0px 2px 0px; - border-radius : 0px; - padding : 5px 10px 5px 35px; - background-color : #00330088; - color : @black; - end : false; -} - -separator { - background-color : @blue; - color : #00000000; -} -prompt normal.normal { - background-color : #00000000; - color : #ffffff; - padding : 0px; -} -entry normal.normal { - background-color : #00000000; - color : #ffffff; - padding : 0px; -} -case-indicator normal.normal { - background-color : #00000000; - color : #ffffff; - padding : 0px; -} - -message { - margin : 30px; - padding : 20px 30px 20px 20px; - padding : 20px ; - border-radius : 10px; - border : 5px; -} - -prompt-colon { - spacing : 0; - enabled : false; -} - -element-text, element-icon { - background-color : inherit; - text-color : inherit; - foreground-color : inherit; -} diff --git a/assets/rofi/themes/KooL_style-10-Fancy.rasi b/assets/rofi/themes/KooL_style-10-Fancy.rasi deleted file mode 100644 index b503f549..00000000 --- a/assets/rofi/themes/KooL_style-10-Fancy.rasi +++ /dev/null @@ -1,302 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 10 - Fancy */ -/* Credit to DaveDavenport. I have only some few things changed */ - -/******************************************************************************* - * ROFI Color theme - * Theme designed to show off moving, packing of widgets, icons and more. - * User: DaveDavenport - * Copyright: DaveDavenport - ********************************************************************************/ - -/* ---- Configuration ---- */ - -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -* { - selected-normal-foreground: rgba ( 248, 248, 242, 100 % ); - foreground: rgba ( 248, 248, 242, 100 % ); - normal-foreground: @foreground; - alternate-normal-background: rgba ( 39, 40, 34, 0 % ); - selected-urgent-foreground: rgba ( 248, 248, 242, 100 % ); - urgent-foreground: rgba ( 249, 38, 114, 100 % ); - alternate-urgent-background: rgba ( 39, 40, 34, 0 % ); - active-foreground: rgba ( 166, 226, 42, 100 % ); - lightbg: rgba ( 238, 232, 213, 100 % ); - selected-active-foreground: rgba ( 166, 226, 42, 100 % ); - alternate-active-background: rgba ( 39, 40, 34, 0 % ); - background: rgba ( 39, 40, 34, 93 % ); - bordercolor: rgba ( 0, 43, 54, 100 % ); - alternate-normal-foreground: @foreground; - normal-background: rgba ( 39, 40, 34, 0 % ); - selected-normal-background: rgba ( 20, 20, 17, 100 % ); - separatorcolor: rgba ( 230, 219, 116, 100 % ); - urgent-background: rgba ( 39, 40, 34, 0 % ); - selected-urgent-background: rgba ( 249, 38, 114, 100 % ); - alternate-urgent-foreground: @urgent-foreground; - background-color: transparent; - alternate-active-foreground: @active-foreground; - active-background: rgba ( 39, 40, 34, 0 % ); - selected-active-background: rgba ( 20, 20, 17, 100 % ); -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -window { - border-color: darkgray/30%; - background-color: black/50%; - border: 2px; - padding: 0px; - border-radius: 10px; - padding: 0.5em; - spacing: 0px; - - anchor: north; - location: center; - y-offset: -15.5em; - - - children: [ inputbar, message, wrapper-mode-switcher, listview , pagerbox ]; -} - -pagerbox { - expand: false; - orientation: horizontal; - children: [ icon-left, pad, icon-right ]; -} - -pad { - expand: true; -} - -icon-left { - expand: false; - filename: "go-previous"; - size: 24; - vertical-align: 0.5; - action: "kb-page-prev"; -} - -icon-right { - expand: false; - filename: "go-next"; - size: 24; - vertical-align: 0.5; - action: "kb-page-next"; -} - -wrapper-mode-switcher { - orientation: horizontal; - - expand: false; - spacing: 0; - children: [ icon-ms-ic1, mode-switcher, icon-ms-ic2 ]; -} -icon-ms-ic1 { - filename: "go-previous"; -} -icon-ms-ic2 { - filename: "go-next"; -} -icon-ms-ic1,icon-ms-ic2 { - size: 16; - vertical-align: 0.8; - expand: false; - border: 0px 0px 2px ; - border-color: @separatorcolor; -} - -mode-switcher { - border: 0px; - spacing: 0px; - expand: true; -} - -button { - padding: 2px; - border: 0px 0px 2px ; - border-color: @separatorcolor; - text-color: dimgrey; -} -button selected.normal { - text-color: white; - background-color: black/50%; - - border: 2px 2px 0px ; - border-color: @separatorcolor; - border-radius: 10px 10px 0 0; -} - - -sidebar { - expand: false; -} - -message { - text-color: black; - background-color: lightgrey / 50%; - border-color: grey; - border: 2px; - border-radius: 5px; - padding: 4px; - margin: 0px 0px 0.5em; - expand: false; -} - -listview { - enabled: true; - columns: 2; - lines: 10; - spacing: 2px ; - scrollbar: false; - padding: 0.5em; - background-color: black/50%; - - expand: true; - border: 0px 2px 2px ; - border-color: @separatorcolor; - border-radius: 0px 0px 10px 10px; -} -element { - border: 1; - border-color: transparent; - padding: 4px ; -} -element-text { - background-color: inherit; - text-color: inherit; -} -element.normal.normal { - background-color: @normal-background; - text-color: @normal-foreground; -} -element.normal.urgent { - background-color: @urgent-background; - text-color: @urgent-foreground; -} -element.normal.active { - background-color: @active-background; - text-color: @active-foreground; -} -element.selected.normal { - border: 1; - border-color: grey/80%; - background-color: @selected-normal-background; - text-color: @selected-normal-foreground; -} -element.selected.urgent { - border: 1; - border-color: grey/80%; - background-color: @selected-urgent-background; - text-color: @selected-urgent-foreground; -} -element.selected.active { - border: 1; - border-color: grey/80%; - background-color: @selected-active-background; - text-color: @selected-active-foreground; -} -element.alternate.normal { - background-color: @alternate-normal-background; - text-color: @alternate-normal-foreground; -} -element.alternate.urgent { - background-color: @alternate-urgent-background; - text-color: @alternate-urgent-foreground; -} -element.alternate.active { - background-color: @alternate-active-background; - text-color: @alternate-active-foreground; -} -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - background-color: @selected-normal-background; - handle-color: @separatorcolor; - handle-width: 5px ; - padding: 0; -} -sidebar { - border: 2px 0px 0px ; - border-color: @separatorcolor; -} -inputbar { - text-color: @normal-foreground; - padding: 0px 0px 0.5em; - children: [ wrapper ]; -} -case-indicator { - text-color: @normal-foreground; -} - -wrapper { - orientation: horizontal; - text-color: black; - background-color: white / 75%; - border-color: grey; - border: 2px; - border-radius: 5px; - padding: 4px; - children: [ icon-k, entry, icon-paste]; - spacing: 0.5em; -} -button-paste { - expand: false; - str: "gtk-paste"; - size: 24; - vertical-align: 0.5; - action: "kb-cancel"; -} -icon-paste { - expand: false; - filename: "gtk-paste"; - size: 24; - vertical-align: 0.5; - action: "kb-primary-paste"; -} -icon-k { - expand: false; - filename: "input-keyboard"; - size: 24; - vertical-align: 0.5; - -} -entry { - enabled: true; - expand: true; - background-color: white / 75%; - placeholder: " ๐Ÿ–ฅ๏ธ Search "; - vertical-align: 0.5; - border-radius: 5px; - padding: 4px; -} - - -/*****----- Message -----*****/ -error-message { - background-color: darkred/20%; - border-radius: 10px; - border: 2px; - -} -textbox { - padding: 5px; - background-color: darkred/10%; - vertical-align: 0.5; - horizontal-align: 0.5; -} - - diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi deleted file mode 100644 index 229a5297..00000000 --- a/assets/rofi/themes/KooL_style-11-Win11-list-dark.rasi +++ /dev/null @@ -1,150 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 11 - Windows 11 List Dark */ -/* source: https://github.com/newmanls */ - -/* Integrating Wallust and More tweaks */ - -/* ---- Configuration ---- */ -configuration { - dpi: 1; - show-icons: true; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/*****----- Global Properties -----*****/ -* { - bg0 : black/50%; - bg1 : black/40%; - bg2 : black/10%; - bg3 : black; - fg0 : #ffffff; - fg1 : #cecece; - accent : #60cdff; - urgent : @accent; - - background-color : transparent; - text-color : @fg0; - - margin : 0; - padding : 0; - spacing : 0; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -element-icon, element-text, scrollbar { - cursor: pointer; -} - -window { - location : south; - width : 40%; - height : 50%; - y-offset : -10px; - - background-color : @bg1; - border-radius : 8px; -} - -mainbox { - padding : 24px; - spacing : 24px; -} - -inputbar { - padding : 8px; - spacing : 4px; - children : [ icon-search, entry ]; - border : 0 0 2px 0 solid; - border-color : @accent; - border-radius : 2px; - background-color : @bg0; -} - -icon-search, entry, element-icon, element-text { - vertical-align: 0.5; -} - -icon-search { - expand : false; - filename : "search-symbolic"; - size : 24px; -} - -entry { - placeholder : "Type here to search"; - text-color : @fg1; -} - -listview { - columns : 2; - spacing : 8px; - fixed-height : true; - fixed-columns : true; -} - -element { - spacing : 1em; - padding : 8px; - border-radius : 2px; -} - -element normal urgent { - text-color: @urgent; -} - -element normal active { - text-color: @accent; -} - -element alternate active { - text-color: @accent; -} - -element selected active { - text-color: @accent; -} - -element selected { - background-color: @bg3; -} - -element selected urgent { - background-color: @urgent; -} - -element-icon { - size: 1.5em; -} - -element-text { - text-color: inherit; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - background-color: inherit; - handle-color: @accent; - handle-width: 5px ; - padding: 0; -} - -/*****----- Message -----*****/ -error-message { - padding: 20px; -} - -textbox { - padding : 10px; - background-color : @bg0; - text-color : @fg0; - vertical-align : 0.5; - horizontal-align : 0.5; -} diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi deleted file mode 100644 index 8d5082e6..00000000 --- a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ /dev/null @@ -1,150 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 11 - Windows 11 List Light */ -/* source: https://github.com/newmanls */ - -/* Integrating Wallust and More tweaks */ - -/* ---- Configuration ---- */ -configuration { - dpi: 1; - show-icons: true; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/*****----- Global Properties -----*****/ -* { - bg0 : #ffffff80; - bg1 : #f9f9f9bf; - bg2 : #f7f7f7; - bg3 : #fefefebf; - fg0 : #1a1a1a; - fg1 : #5f5f5f; - accent : #005fb8; - urgent : @accent; - - background-color : transparent; - text-color : @fg0; - - margin : 0; - padding : 0; - spacing : 0; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -element-icon, element-text, scrollbar { - cursor: pointer; -} - -window { - location : south; - width : 40%; - height : 50%; - y-offset : -10px; - - background-color : @bg1; - border-radius : 8px; -} - -mainbox { - padding : 24px; - spacing : 24px; -} - -inputbar { - padding : 8px; - spacing : 4px; - children : [ icon-search, entry ]; - border : 0 0 2px 0 solid; - border-color : @accent; - border-radius : 2px; - background-color : @bg0; -} - -icon-search, entry, element-icon, element-text { - vertical-align: 0.5; -} - -icon-search { - expand : false; - filename : "search-symbolic"; - size : 24px; -} - -entry { - placeholder : "Type here to search"; - placeholder-color : @fg1; -} - -listview { - columns : 2; - spacing : 8px; - fixed-height : true; - fixed-columns : true; -} - -element { - spacing : 1em; - padding : 8px; - border-radius : 2px; -} - -element normal urgent { - text-color: @urgent; -} - -element normal active { - text-color: @accent; -} - -element alternate active { - text-color: @accent; -} - -element selected active { - text-color: @accent; -} - -element selected { - background-color: @bg3; -} - -element selected urgent { - background-color: @urgent; -} - -element-icon { - size: 1.5em; -} - -element-text { - text-color: inherit; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - background-color: inherit; - handle-color: @accent; - handle-width: 5px ; - padding: 0; -} - -/*****----- Message -----*****/ -error-message { - padding: 20px; -} - -textbox { - padding : 10px; - background-color : @bg0; - text-color : @fg0; - vertical-align : 0.5; - horizontal-align : 0.5; -} diff --git a/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi b/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi deleted file mode 100644 index 55fbb0b7..00000000 --- a/assets/rofi/themes/KooL_style-12-TOP-Docu.rasi +++ /dev/null @@ -1,159 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 12 - TOP - Docu */ -/* Credit to DaveDavenport. I have only some few things changed */ - -/** - * ROFI Documentation theme. - * User: Qball - * Copyright: Dave Davenport - */ - -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Global Properties ---- */ -* { - background-color: transparent; - text-color: white; -} -entry { - border: 2px 0px; - border-color: darkgrey; - background-color: grey; - padding: 4px; - placeholder: "๐Ÿ”Ž Search"; - placeholder-color: darkgrey; - cursor: text; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; - -} -inputbar { - spacing: 0; - children: [ icon-keyboard, entry, mode-switcher ]; -} - -mode-switcher { - spacing: 10px; - border: 2px; - border-radius: 0px 4px 4px 0px; - border-color: darkgrey; - background-color: darkgrey; -} - -button { - padding: 0px 60px 0px 60px; - background-color: grey; - border-color: darkgrey; - cursor: pointer; -} - -button selected { - background-color: white/20%; - text-color: black; -} - -icon-keyboard { - border: 2px 0px 2px 2px; - border-radius: 4px 0px 0px 4px; - border-color: darkgrey; - background-color: grey; - padding: 0px 10px 0px 10px; - expand: false; - size: 1.2em; - filename: "keyboard"; -} - -window { - anchor: north; - location: north; - width: 100%; - background-color: black / 50%; - padding: 1em; - border-color: black; - border: 0em 0.2em 0.2em; - chilren: [ inputbar, message, listview ]; -} - -mainbox { - spacing: 1em; -} - - -listview { - lines: 4; - columns: 6; - spacing: 1em; - fixed-columns: true; -} - -element { - orientation: vertical; - border: 2px; - border-radius: 4px ; - border-color: darkgrey; - background-color: grey; - cursor: pointer; - padding: 4px; -} - -element selected { - background-color: white/20%; - text-color: black; -} - - -element-icon { - size: 5%; - cursor: inherit; -} - -element-text { - horizontal-align: 0.5; - cursor: inherit; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border-radius: 10px; - background-color: transparent; - handle-color: darkgrey; - handle-width: 5px ; - padding: 0; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - margin: 10px; - padding: 12px; - border-radius: 10px; - background-color: black / 50%; - text-color: white; - vertical-align: 0.5; - horizontal-align: 0.5; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: black / 50%; - text-color: white; -} \ No newline at end of file diff --git a/assets/rofi/themes/KooL_style-2-Dark.rasi b/assets/rofi/themes/KooL_style-2-Dark.rasi deleted file mode 100644 index 73c3eee7..00000000 --- a/assets/rofi/themes/KooL_style-2-Dark.rasi +++ /dev/null @@ -1,191 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 2 Dark */ -/* Source: https://github.com/adi1090x/rofi */ - - -/* ****----- Configuration -----**** */ -configuration { - modi: "drun,filebrowser,window"; - show-icons: true; - display-drun: "APPS"; - display-run: "RUN"; - display-filebrowser: "FILES"; - display-window: "WINDOW"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/*****----- Global Properties -----*****/ -* { - -} -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/*****----- Main Window -----*****/ -window { - /* properties for window widget */ - transparency: "real"; - location: center; - anchor: center; - fullscreen: false; - width: 60%; - x-offset: 0px; - y-offset: 0px; - - /* properties for all widgets */ - enabled: true; - margin: 0px; - padding: 0px; - border-radius: 12px; - cursor: "default"; - background-color: transparent; -} - -/*****----- Main Box -----*****/ -mainbox { - enabled: true; - spacing: 20px; - margin: 10px; - padding: 40px; - border-radius: 12px; - background-color: black/90%; - children: [ "inputbar", "mode-switcher", "message", "listview" ]; -} - -/*****----- Inputbar -----*****/ -inputbar { - enabled: true; - spacing: 0px; - margin: 0px; - padding: 0px 0px 10px 0px; - border: 0px 0px 2px 0px; - border-radius: 0px; - border-color: gray/20%; - background-color: black/50%; - children: [ "entry" ]; -} - -entry { - enabled: true; - background-color: black/50%; - text-color: white/75%; - cursor: text; - placeholder: "Type to search"; - placeholder-color: inherit; - vertical-align: 0.5; - horizontal-align: 0.5; -} - -/*****----- Listview -----*****/ -listview { - enabled: true; - columns: 3; - lines: 3; - cycle: true; - dynamic: true; - scrollbar: false; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - - spacing: 40px; - margin: 0px; - padding: 20px 0px 0px 0px; - border: 0px solid; - background-color: transparent; - cursor: "default"; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - background-color: inherit; - handle-color: #719DF9; - handle-width: 5px ; - padding: 0; -} - -/*****----- Elements -----*****/ -element { - enabled: true; - spacing: 10px; - margin: 0px; - padding: 15px; - border: 1px solid; - border-radius: 8px; - border-color: white/30%; - background-color: black; - text-color: white; - cursor: pointer; -} -element normal.active { - background-color: #67FF80; - text-color: black; -} -element selected.normal { - background-color: #c19419; - text-color: black; -} -element selected.active { - background-color: #FF7F7C; - text-color: white; -} -element-icon { - background-color: transparent; - size: 48px; - cursor: inherit; -} -element-text { - background-color: inherit; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; -} - -/*****----- Mode Switcher -----*****/ -mode-switcher{ - enabled: true; - expand: false; - spacing: 20px; - margin: 0px 10%; - background-color: transparent; - text-color: white; -} -button { - padding: 6px; - border: 0px solid; - border-radius: 100%; - background-color: #719DF9; - text-color: inherit; - cursor: pointer; -} -button selected { - background-color: #F37277; - text-color: inherit; -} - -/*****----- Message -----*****/ -message { - background-color: transparent; - border: 0px; -} -error-message { - padding: 20px; -} -textbox { - padding: 10px; - background-color: #719DF9; - text-color: inherit; - vertical-align: 0.5; - horizontal-align: 0.5; -} diff --git a/assets/rofi/themes/KooL_style-2-Light.rasi b/assets/rofi/themes/KooL_style-2-Light.rasi deleted file mode 100644 index 29ea7188..00000000 --- a/assets/rofi/themes/KooL_style-2-Light.rasi +++ /dev/null @@ -1,193 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 2 Light */ -/* credit: https://github.com/adi1090x/rofi */ - - -/*****----- Configuration -----*****/ -configuration { - modi: "drun,filebrowser,window"; - show-icons: true; - display-drun: "APPS"; - display-run: "RUN"; - display-filebrowser: "FILES"; - display-window: "WINDOW"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/*****----- Global Properties -----*****/ -* { - -} -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/*****----- Main Window -----*****/ -window { - /* properties for window widget */ - transparency: "real"; - location: center; - anchor: center; - fullscreen: false; - width: 60%; - x-offset: 0px; - y-offset: 0px; - - /* properties for all widgets */ - enabled: true; - margin: 0px; - padding: 0px; - border-radius: 12px; - cursor: "default"; - background-color: inherit; -} - -/*****----- Main Box -----*****/ -mainbox { - enabled: true; - spacing: 20px; - margin: 10px; - padding: 40px; - border-radius: 12px; - background-color: white/90%; - children: [ "inputbar", "mode-switcher", "message", "listview" ]; -} - -/*****----- Inputbar -----*****/ -inputbar { - enabled: true; - spacing: 0px; - margin: 0px; - padding: 0px 10px 10px 0px; - border: 0px 0px 2px 0px; - border-radius: 0px; - border-color: gray/20%; - background-color: transparent; - children: [ "entry" ]; -} - -entry { - enabled: true; - background-color: inherit; - text-color: black; - cursor: text; - placeholder: "Type to search"; - placeholder-color: inherit; - vertical-align: 0.5; - horizontal-align: 0.5; -} - -/*****----- Listview -----*****/ -listview { - enabled: true; - columns: 3; - lines: 3; - cycle: true; - dynamic: true; - scrollbar: false; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - - spacing: 40px; - margin: 0px; - padding: 20px 0px 0px 0px; - border: 0px solid; - background-color: transparent; - cursor: "default"; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0px; - border-radius: 10px; - background-color: transparent; - handle-color: gray/50%; - handle-width: 5px ; - padding: 0; -} - -/*****----- Elements -----*****/ -element { - enabled: true; - spacing: 10px; - margin: 0px; - padding: 15px; - border: 1px solid; - border-radius: 8px; - border-color: gray/30%; - background-color: white; - text-color: black; - cursor: pointer; -} -element normal.active { - background-color: #67FF80; - text-color: black; -} -element selected.normal { - background-color: #FDD66F; - text-color: black; -} -element selected.active { - background-color: #FF7F7C; - text-color: black; -} -element-icon { - background-color: transparent; - size: 48px; - cursor: inherit; -} -element-text { - background-color: inherit; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; -} - -/*****----- Mode Switcher -----*****/ -mode-switcher{ - enabled: true; - expand: false; - spacing: 20px; - margin: 0px 10%; - background-color: transparent; - text-color: white; -} -button { - font: "JetBrainsMono Nerd Font SemiBold 10"; - padding: 6px; - border: 0px solid; - border-radius: 100%; - background-color: #719DF9; - text-color: inherit; - cursor: pointer; -} -button selected { - background-color: #F37277; - text-color: inherit; -} - -/*****----- Message -----*****/ -message { - background-color: transparent; - border: 0px; -} -error-message { - padding: 20px; -} -textbox { - padding: 10px; - background-color: #719DF9; - text-color: inherit; - vertical-align: 0.5; - horizontal-align: 0.5; -} - diff --git a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi deleted file mode 100644 index a98a6fa8..00000000 --- a/assets/rofi/themes/KooL_style-3-FullScreen-v1.rasi +++ /dev/null @@ -1,256 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 3 - Full screen v1 */ - -/* ---- Configuration ---- */ - -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - - background-alt: @selected-active-background; // Buttons background - selected: @selected-urgent-background; // Button selected - active: @selected-normal-background; // Window activated - urgent: @selected; // When hovering the activated window (maybe more?) - - text-selected: @background; - text-color: @foreground; - border-color: @selected; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/* ---- Global Properties ---- */ -* { - main-bg: @background; - main-fg: @foreground; - main-br: @color12; - main-ex: @color11; - select-bg: @foreground; - select-fg: @background; - separatorcolor: transparent; - border-color: transparent; -} - - -/* ---- Window ---- */ -window { - // Default - enabled: true; - fullscreen: true; - transparency: "real"; - cursor: "default"; - spacing: 0px; - border: 3px 0px 3px 0px; - border-radius: 30px; - location: center; - anchor: center; - - // Style Values - background-color: @background; -} - -/* ----- Main Box ----- */ -mainbox { - padding: 12px; - enabled: true; - orientation: vertical; - children: [ "inputbar", "listbox" ]; - background-color: transparent; -} - - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - padding: 10px 10px 50px 10px; - margin: 10px; - background-color: transparent; - border-radius: 20px; - orientation: horizontal; - children: ["entry", "dummy", "mode-switcher" ]; - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -/* ---- Entry input ---- */ -entry { - enabled: true; - expand: false; - width: 20%; - padding: 10px; - border-radius: 12px; - background-color: @selected; - text-color: @text-selected; - cursor: text; - placeholder: " ๐Ÿ–ฅ๏ธ Search "; - placeholder-color: inherit; -} - -/* ---- Listbox ---- */ -listbox { - spacing: 10px; - padding: 10px; - background-color: transparent; - orientation: vertical; - children: [ "message", "listview" ]; -} - -/* ---- Listview ---- */ -listview { - enabled: true; - columns: 5; - lines: 5; - cycle: true; - dynamic: true; - scrollbar: true; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - spacing: 10px; - background-color: transparent; - margin: 10px; - -// Adapt rofi theme - border: 0px; -} - -/* ---- Dummy ---- */ -dummy { - expand: true; - background-color: transparent; -} - -/* ---- Mode Switcher ---- */ -mode-switcher{ - enabled: true; - spacing: 10px; - background-color: transparent; -} -button { - width: 5%; - padding: 12px; - border-radius: 12px; - background-color: @text-selected; - text-color: @text-color; - cursor: pointer; -} -button selected { - background-color: @selected; - text-color: @text-selected; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0; - handle-color: @background-alt; - handle-width: 2px ; - padding: 0; -} - -/* ---- Elements ---- */ -element { - enabled: true; - orientation: vertical; - padding: 10px; - spacing: 10px; - border-radius: 12px; - background-color: transparent; - cursor: pointer; -} - -element normal.normal { - background-color: inherit; - text-color: inherit; -} -element normal.urgent { - background-color: @urgent; - text-color: @foreground; -} -element normal.active { - background-color: @active; - text-color: @foreground; -} - -element selected.normal { - border: 0px 3px 0px 3px; - border-radius: 16px; - border-color: @selected; - background-color: transparent; - text-color: @background-alt; -} - -element selected.urgent { - background-color: @urgent; - text-color: @text-selected; -} -element selected.active { - background-color: @urgent; - text-color: @text-selected; -} -// Adapt rofi theme -element alternate.normal { - background-color: transparent; - text-color: inherit; -} -element alternate.urgent { - background-color: transparent; - text-color: inherit; -} -element alternate.active { - background-color: transparent; - text-color: inherit; -} -element-icon { - size: 5%; - background-color: transparent; - text-color: inherit; - cursor: inherit; -} -element-text { - background-color: transparent; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.5; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - margin: 10px; - padding: 12px; - border-radius: 10px; - background-color: @selected; - text-color: @background; - vertical-align: 0.5; - horizontal-align: 0.5; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: @background-alt; - text-color: @background; -} diff --git a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi deleted file mode 100644 index 0dbf45bc..00000000 --- a/assets/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ /dev/null @@ -1,217 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 3 - Full screen v2 */ -/* credit: https://github.com/adi1090x/rofi */ - -/*****----- Configuration -----*****/ -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "๏€‰ Apps"; - display-run: "๏„  Run"; - display-filebrowser: "๏ป Files"; - display-window: "๏‹ Windows"; - display-ssh: "๏„ˆ SSH"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/*****----- Global Properties -----*****/ -* { - background-alt: @color7; - selected: @color12; - active: @color11; - urgent: red; - - border-color: @selected; - handle-color: @selected; - background-color: @background; - foreground-color: @foreground; - alternate-background: @background-alt; - normal-background: @background; - normal-foreground: @foreground; - urgent-background: @urgent; - urgent-foreground: @background; - active-background: @active; - active-foreground: @background; - selected-normal-background: @selected; - selected-normal-foreground: @background; - selected-urgent-background: @active; - selected-urgent-foreground: @background; - selected-active-background: @urgent; - selected-active-foreground: @background; - alternate-normal-background: @background; - alternate-normal-foreground: @foreground; - alternate-urgent-background: @urgent; - alternate-urgent-foreground: @background; - alternate-active-background: @active; - alternate-active-foreground: @background; - - -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/*****----- Main Window -----*****/ -window { - transparency: "real"; - location: center; - anchor: center; - fullscreen: true; - x-offset: 0px; - y-offset: 0px; - - enabled: true; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 0px; - border-color: @selected; - background-color: black / 10%; - cursor: "default"; -} - -/*****----- Main Box -----*****/ -mainbox { - enabled: true; - spacing: 100px; - margin: 0px; - padding: 100px 225px; - border: 0px solid; - border-radius: 0px 0px 0px 0px; - border-color: @selected; - background-color: transparent; - children: [ "inputbar", "message", "listview" ]; -} - -/*****----- Inputbar -----*****/ -inputbar { - enabled: true; - spacing: 10px; - margin: 0% 28%; - padding: 10px; - border: 1px solid; - border-radius: 6px; - border-color: white / 25%; - background-color: white / 5%; - text-color: @foreground; - children: [ "prompt", "entry" ]; -} - -prompt { - enabled: true; - background-color: transparent; - text-color: inherit; -} -textbox-prompt-colon { - enabled: true; - expand: false; - str: "::"; - background-color: transparent; - text-color: inherit; -} -entry { - enabled: true; - background-color: transparent; - text-color: @foreground; - cursor: text; - placeholder: " Search"; - placeholder-color: inherit; -} - -/*****----- Listview -----*****/ -listview { - enabled: true; - columns: 7; - lines: 4; - cycle: true; - dynamic: true; - scrollbar: false; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - - spacing: 0px; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 0px; - border-color: @selected; - background-color: transparent; - text-color: @foreground; - cursor: "default"; -} -scrollbar { - handle-width: 5px ; - handle-color: @selected; - border-radius: 0px; - background-color: @background-alt; -} - -/*****----- Elements -----*****/ -element { - enabled: true; - spacing: 15px; - margin: 0px; - padding: 35px 10px; - border: 0px solid; - border-radius: 15px; - border-color: @selected; - background-color: transparent; - text-color: @foreground; - orientation: vertical; - cursor: pointer; -} -element normal.normal { - background-color: transparent; - text-color: @foreground; -} -element selected.normal { - background-color: white / 10%; - text-color: @foreground; -} -element-icon { - background-color: transparent; - text-color: inherit; - size: 72px; - cursor: inherit; -} -element-text { - background-color: transparent; - text-color: inherit; - highlight: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.5; -} - -/*****----- Message -----*****/ -message { - background-color: transparent; - border: 0px; -} -error-message { - padding: 0px; - border-color: @selected; - background-color: transparent; - text-color: @foreground; -} -textbox { - padding: 20px; - border-radius: 15px; - background-color: white / 10%; - text-color: @foreground; - vertical-align: 0.5; - horizontal-align: 0.5; - highlight: none; -} diff --git a/assets/rofi/themes/KooL_style-4.rasi b/assets/rofi/themes/KooL_style-4.rasi deleted file mode 100644 index 7eb03c45..00000000 --- a/assets/rofi/themes/KooL_style-4.rasi +++ /dev/null @@ -1,328 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 4 */ -/* credit: https://github.com/adi1090x/rofi */ - -/*****----- Configuration -----*****/ -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "๏€‰ Apps"; - display-run: "๏„  Run"; - display-filebrowser: "๏ป Files"; - display-window: "๏‹ Window"; - display-ssh: "๏„ˆ SSH"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/*****----- Global Properties -----*****/ -* { - background-alt: @color1; - selected: @color12; - active: @color11; - urgent: #F7768E; - - border-color: @color11; - handle-color: @selected; - background-color: @background; - foreground-color: @foreground; - alternate-background: @background-alt; - normal-background: @background; - normal-foreground: @foreground; - urgent-background: @urgent; - urgent-foreground: @background; - active-background: @active; - active-foreground: @background; - selected-normal-background: @selected; - selected-normal-foreground: @background; - selected-urgent-background: @active; - selected-urgent-foreground: @background; - selected-active-background: @urgent; - selected-active-foreground: @color12; - alternate-normal-background: @background; - alternate-normal-foreground: @foreground; - alternate-urgent-background: @urgent; - alternate-urgent-foreground: @background; - alternate-active-background: @active; - alternate-active-foreground: @background; - - -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/*****----- Main Window -----*****/ -window { - /* properties for window widget */ - transparency: "real"; - location: center; - anchor: center; - fullscreen: false; - width: 35%; - x-offset: 0px; - y-offset: 0px; - - /* properties for all widgets */ - enabled: true; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 10px; - border-color: @border-color; - cursor: "default"; - /* Backgroud Colors */ - background-color: @background-color; -} - -/*****----- Main Box -----*****/ -mainbox { - enabled: true; - spacing: 10px; - margin: 0px; - padding: 20px; - border: 0px solid; - border-radius: 0px 0px 0px 0px; - border-color: @border-color; - background-color: inherit; - children: [ "inputbar", "message", "custombox" ]; -} - -/*****----- A Custom Box -----*****/ -custombox { - spacing: 0px; - background-color: @background-color; - text-color: @foreground-color; - orientation: horizontal; - children: [ "mode-switcher", "listview" ]; -} - -/*****----- Inputbar -----*****/ -inputbar { - enabled: true; - spacing: 10px; - margin: 0px; - padding: 8px 12px; - border: 0px solid; - border-radius: 8px; - border-color: @border-color; - background-color: @alternate-background; - text-color: @foreground; - children: [ "textbox-prompt-colon", "entry" ]; -} - -prompt { - enabled: true; - background-color: inherit; - text-color: inherit; -} -textbox-prompt-colon { - enabled: true; - padding: 5px 0px; - expand: false; - str: " ๐Ÿ”Ž"; - background-color: inherit; - text-color: inherit; -} -entry { - enabled: true; - padding: 5px 0px; - background-color: @alternate-background; - text-color: @foreground; - cursor: text; - placeholder: "Search..."; - placeholder-color: inherit; -} -num-filtered-rows { - enabled: true; - expand: false; - background-color: inherit; - text-color: inherit; -} -textbox-num-sep { - enabled: true; - expand: false; - str: "/"; - background-color: inherit; - text-color: inherit; -} -num-rows { - enabled: true; - expand: false; - background-color: inherit; - text-color: inherit; -} -case-indicator { - enabled: true; - background-color: inherit; - text-color: inherit; -} - -/*****----- Listview -----*****/ -listview { - enabled: true; - columns: 1; - lines: 6; - cycle: true; - dynamic: true; - scrollbar: false; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - - spacing: 5px; - margin: 0px; - padding: 10px; - border: 2px 2px 2px 2px; - border-radius: 8px; - border-color: @border-color; - background-color: transparent; - text-color: @foreground-color; - cursor: "default"; -} -scrollbar { - handle-width: 5px ; - handle-color: @handle-color; - border-radius: 10px; - background-color: @alternate-background; -} - -/*****----- Elements -----*****/ -element { - enabled: true; - spacing: 10px; - margin: 0px; - padding: 10px; - border: 0px solid; - border-radius: 8px; - border-color: @border-color; - background-color: transparent; - text-color: @foreground-color; - cursor: pointer; -} -element normal.normal { - background-color: transparent; - text-color: @normal-foreground; -} -element normal.urgent { - background-color: @urgent-background; - text-color: @urgent-foreground; -} -element normal.active { - background-color: transparent; - text-color: @active-foreground; -} -element selected.normal { - background-color: @selected-normal-background; - text-color: @selected-normal-foreground; -} -element selected.urgent { - background-color: @selected-urgent-background; - text-color: @selected-urgent-foreground; -} -element selected.active { - background-color: @selected-active-background; - text-color: @selected-active-foreground; -} -element alternate.normal { - background-color: @alternate-normal-background; - text-color: @alternate-normal-foreground; -} -element alternate.urgent { - background-color: @alternate-urgent-background; - text-color: @alternate-urgent-foreground; -} -element alternate.active { - background-color: @alternate-active-background; - text-color: @alternate-active-foreground; -} -element-icon { - background-color: transparent; - text-color: inherit; - cursor: inherit; -} -element-text { - background-color: transparent; - text-color: inherit; - highlight: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; -} - -/*****----- Mode Switcher -----*****/ -mode-switcher{ - enabled: true; - expand: false; - orientation: vertical; - spacing: 0px; - margin: 0px; - padding: 0px 0px; - border: 0px solid; - border-radius: 8px 0px 0px 8px; - border-color: @border-color; - background-color: @alternate-background; - text-color: @foreground-color; -} -button { - padding: 0px 20px 0px 20px; - border: 0px 0px 0px 0px; - border-radius: 8px; - border-color: @border-color; - background-color: transparent; - text-color: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; - cursor: pointer; -} -button selected { - border: 2px 0px 2px 2px; - border-radius: 6px; - border-color: @border-color; - background-color: @selected-normal-foreground; - text-color: @selected-normal-background; -} - -/*****----- Message -----*****/ -message { - enabled: true; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 0px 0px 0px 0px; - border-color: @border-color; - background-color: transparent; - text-color: @foreground-color; -} -textbox { - padding: 12px; - border: 0px solid; - border-radius: 8px; - border-color: @border-color; - background-color: @alternate-background; - text-color: @foreground-color; - vertical-align: 0.5; - horizontal-align: 0.5; - highlight: none; - placeholder-color: @foreground-color; - blink: true; - markup: true; -} -error-message { - padding: 10px; - border: 2px solid; - border-radius: 8px; - border-color: @border-color; - background-color: @background-color; - text-color: @foreground-color; -} diff --git a/assets/rofi/themes/KooL_style-5.rasi b/assets/rofi/themes/KooL_style-5.rasi deleted file mode 100644 index 8609dcaf..00000000 --- a/assets/rofi/themes/KooL_style-5.rasi +++ /dev/null @@ -1,272 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 5 */ - -/* ---- Configuration ---- */ -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; -} - - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - - background-alt: @color1; - selected: @color12; - active: @color11; - urgent: red; - - text-selected: @background; - text-color: @foreground; - border-color: @selected; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/* ---- Window ---- */ -window { - width: 800px; - /*height: 450px;*/ - x-offset: 0px; - y-offset: 0px; - spacing: 0px; - padding: 1px; - margin: 0px; - border: 2px; - border-color: @active-background; - cursor: "default"; - location: center; - anchor: center; - fullscreen: false; - enabled: true; - border-radius: 12px; - background-color: @background-color; -} - -/* ---- Mainbox ---- */ -mainbox { - enabled: true; - orientation: vertical; - padding: 8px; - background-image: url("~/.config/rofi/.current_wallpaper", width); - children: [ "inputbar", "listbox" ]; - border-radius: 12px; -} - -/* ---- Imagebox ---- */ -imagebox { - background-color: transparent; - orientation: vertical; - /*children: [ "inputbar"];*/ -} - -/* ---- Listbox ---- */ -listbox { - spacing: 4px; - orientation: vertical; - children: [ "message", "listview" ]; - padding: 10px; - border-radius: 12px; - border: 1px; - border-color: @active-background; - background-color: @background; -} - -/* ---- Dummy ---- */ -dummy { - background-color: transparent; -} - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - text-color: @foreground; - spacing: 10px; - border-radius: 12px; - border-color: @foreground; - background-color: @background; - children: [ "mode-switcher", "textbox-prompt-colon", "entry" ]; - border: 1px; - border-color: @active-background; -} - -textbox-prompt-colon { - enabled: true; - padding: 10px 0px 10px 10px; - expand: false; - str: "๐Ÿง"; - text-color: inherit; - background-color: transparent; -} - -entry { - enabled: true; - padding: 10px 0px 10px 0px; - text-color: @foreground; - cursor: text; - placeholder: " Search"; - placeholder-color: inherit; - background-color: @background; -} - -/* ---- Mode Switcher ---- */ -mode-switcher{ - enabled: true; - spacing: 10px; - background-color: transparent; - text-color: @foreground; -} - -button { - padding: 2px 24px 2px 24px; - border-radius: 12px; - background-color: @background; - text-color: inherit; - cursor: pointer; - border: 1px; - border-color: @active-background; -} - -button selected { - background-color: @selected; - text-color: @foreground; - border: 1px; - border-color: transparent; - -} - -/* ---- Listview ---- */ -listview { - enabled: true; - columns: 2; - lines: 6; - spacing: 5px; - padding: 6px; - dynamic: true; - cycle: true; - scrollbar: false; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: false; - background-color: @background; - border-radius: 12px; - border: 0px; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0px; - border-radius: 10px; - background-color: transparent; - handle-color: @active; - handle-width: 5px ; - padding: 0; -} - -/* ---- Element ---- */ -element { - enabled: true; - padding: 5px; - margin: 2px; - cursor: pointer; - background-color: transparent; - border-radius: 12px; - border: 0px; -} - -element normal.normal { - background-color: inherit; - text-color: inherit; -} - -element normal.urgent { - background-color: inherit; - text-color: inherit; -} - -element normal.active { - background-color: inherit; - text-color: inherit; -} - -element selected.normal { - background-color: @active; - text-color: inherit; -} - -element selected.urgent { - background-color: inherit; - text-color: inherit; -} - -element selected.active { - background-color: inherit; - text-color: inherit; -} - -element alternate.normal { - background-color: inherit; - text-color: inherit; -} - -element alternate.urgent { - background-color: inherit; - text-color: @foreground; -} - -element alternate.active { - background-color: inherit; - text-color: inherit; -} - -element-icon { - background-color: transparent; - text-color: inherit; - size: 32px; - cursor: inherit; -} - -element-text { - background-color: transparent; - text-color: @foreground; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - padding: 12px; - border-radius: 10px; - background-color: @background-alt; - text-color: @foreground; - vertical-align: 0.5; - horizontal-align: 0.5; -} -error-message { - padding: 12px; - border-radius: 12px; - background-color: @background-alt; - text-color: @background; -} \ No newline at end of file diff --git a/assets/rofi/themes/KooL_style-6.rasi b/assets/rofi/themes/KooL_style-6.rasi deleted file mode 100644 index 369c0854..00000000 --- a/assets/rofi/themes/KooL_style-6.rasi +++ /dev/null @@ -1,241 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 6 */ - -/* ---- Configuration ---- */ - -configuration { - modi: "drun,run,filebrowser"; - show-icons: true; - display-drun: "Apps"; - display-run: "Run"; - display-filebrowser: "Files"; - display-window: "Windows"; - drun-display-format: "{name}"; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - - background-alt: @color1; - selected: @color12; - active: @color11; - urgent: red; - - text-selected: @background; - text-color: @foreground; - border-color: @selected; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/* ---- Window ---- */ -window { - // Default - enabled: true; - fullscreen: false; - transparency: "real"; - cursor: "default"; - spacing: 0px; - border: 2px; - border-radius: 30px; - location: center; - anchor: center; - - // Style Values - width: 50%; - background-color: #00000099; -} - -/* ----- Main Box ----- */ -mainbox { - enabled: true; - orientation: vertical; - children: [ "inputbar", "listbox" ]; - background-color: transparent; -} - - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - padding: 10px 10px 150px 10px; - margin: 10px; - background-color: transparent; - border-radius: 25px; - orientation: horizontal; - children: ["entry", "dummy", "mode-switcher" ]; - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -/* ---- Entry input ---- */ -entry { - enabled: true; - expand: false; - width: 300px; - padding: 10px; - border-radius: 12px; - background-color: @background; - text-color: inherit; - cursor: text; - placeholder: "๏€‚ Search "; // << Search symbol - placeholder-color: inherit; -} - -/* ---- Listbox ---- */ -listbox { - spacing: 10px; - padding: 10px; - background-color: transparent; - orientation: vertical; - children: [ "message", "listview" ]; -} - -/* ---- Listview ---- */ -listview { - enabled: true; - columns: 2; - lines: 6; - cycle: true; - dynamic: true; - scrollbar: false; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - spacing: 10px; - padding: 10px; - background-color: transparent; - -// Adapt rofi theme - border: 0px; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 0px; - border-radius: 10px; - background-color: transparent; - handle-color: @active; - handle-width: 5px ; - padding: 0; -} -/* ---- Dummy ---- */ -dummy { - expand: true; - background-color: transparent; -} - -/* ---- Mode Switcher ---- */ -mode-switcher{ - enabled: true; - spacing: 10px; - background-color: transparent; -} -button { - width: 5%; - padding: 12px; - border-radius: 12px; - background-color: @background; - text-color: inherit; - cursor: pointer; -} -button selected { - background-color: @active; - text-color: @text-selected; -} - - -/* ---- Elements ---- */ -element { - enabled: true; - spacing: 10px; - padding: 4px; - border-radius: 10px; - background-color: transparent; - cursor: pointer; -} - -element normal.normal { - background-color: inherit; - text-color: inherit; -} -element normal.urgent { - background-color: @urgent; - text-color: @foreground; -} -element normal.active { - background-color: @active; - text-color: @foreground; -} - -element selected.normal { - background-color: @color11; - text-color: @text-selected; -} -element selected.urgent { - background-color: @urgent; - text-color: @text-selected; -} -element selected.active { - background-color: @urgent; - text-color: @text-selected; -} -// Adapt rofi theme -element alternate.normal { - background-color: transparent; - text-color: inherit; -} -element alternate.urgent { - background-color: transparent; - text-color: inherit; -} -element alternate.active { - background-color: transparent; - text-color: inherit; -} -element-icon { - background-color: transparent; - text-color: inherit; - size: 36px; - cursor: inherit; -} -element-text { - background-color: transparent; - text-color: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; - -} - -/* ---- Message ---- */ -message { - background-color: @background; - border: 0px; -} -textbox { - margin: 10px; - padding: 12px; - border-radius: 10px; - background-color: @active; - text-color: @foreground; - vertical-align: 0.5; - horizontal-align: 0.5; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: @background; - text-color: @foreground; -} diff --git a/assets/rofi/themes/KooL_style-7.rasi b/assets/rofi/themes/KooL_style-7.rasi deleted file mode 100644 index 2ad7f714..00000000 --- a/assets/rofi/themes/KooL_style-7.rasi +++ /dev/null @@ -1,200 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 7 */ - -/* original design from: https://github.com/adi1090x/rofi */ - -/*****----- Configuration -----*****/ -configuration { - modi: "drun,run,filebrowser,window"; - show-icons: true; - display-drun: "๏†ฒโ€‰"; - display-run: "๏„ โ€‰"; - display-filebrowser: "๏ผโ€‰"; - display-window: "๏‹โ€‰"; - drun-display-format: "{name}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - - -/*****----- Global Properties -----*****/ -* { - background-alt: @color1; - selected: @color12; - active: @color11; - urgent: #8E3596; -} -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/*****----- Main Window -----*****/ -window { - transparency: "real"; - location: center; - anchor: center; - fullscreen: false; - width: 800px; - x-offset: 0px; - y-offset: 0px; - - enabled: true; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 20px; - border-color: @selected; - background-color: @background-alt; - cursor: "default"; -} - -/*****----- Main Box -----*****/ -mainbox { - enabled: true; - spacing: 15px; - margin: 40px; - padding: 0px; - border: 0px solid; - border-radius: 0px 0px 0px 0px; - border-color: @selected; - background-color: transparent; - children: [ "inputbar", "message", "listview" ]; -} - -/*****----- Inputbar -----*****/ -inputbar { - enabled: true; - spacing: 0px; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 100%; - border-color: @selected; - background-color: @background-alt; - text-color: @foreground; - children: [ "entry" ]; -} - -prompt { - enabled: true; - padding: 15px; - border-radius: 100%; - background-color: @selected; - text-color: @background; -} -textbox-prompt-colon { - enabled: true; - expand: false; - str: ":::"; - padding: 15px; - background-color: inherit; - text-color: inherit; -} -entry { - enabled: true; - padding: 15px 0px; - background-color: inherit; - text-color: @foreground; - cursor: text; - placeholder: "Search..."; - placeholder-color: inherit; -} - -/*****----- Listview -----*****/ -listview { - enabled: true; - columns: 2; - lines: 6; - cycle: true; - dynamic: true; - scrollbar: false; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - - spacing: 15px; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 0px; - border-color: @selected; - background-color: transparent; - text-color: @foreground; - cursor: "default"; -} -scrollbar { - handle-width: 5px ; - handle-color: @selected; - border-radius: 0px; - background-color: @background-alt; -} - -/*****----- Elements -----*****/ -element { - enabled: true; - spacing: 10px; - margin: 0px; - padding: 0px; - border: 0px solid; - border-radius: 0px; - border-color: @selected; - background-color: transparent; - text-color: @foreground; - orientation: horizontal; - cursor: pointer; -} -element normal.normal { - background-color: transparent; - text-color: @foreground; -} -element selected.normal { - border-radius: 10%; - background-color: @color11; - text-color: @foreground; -} -element-icon { - padding: 0px; - border-radius: 100%; - background-color: transparent; - text-color: inherit; - size: 5%; - cursor: inherit; -} -element-text { - background-color: transparent; - text-color: inherit; - highlight: inherit; - cursor: inherit; - vertical-align: 0.5; - horizontal-align: 0.0; -} - -/*****----- Message -----*****/ -message { - background-color: transparent; - border: 0px; -} -error-message { - padding: 20px; - border: 2px solid; - border-radius: 20px; - border-color: @active; - background-color: @background; - text-color: @foreground; -} -textbox { - padding: 10px; - border-radius: 20px; - background-color: @selected; - text-color: @foreground; - vertical-align: 0.5; - horizontal-align: 0.5; - highlight: none; -} diff --git a/assets/rofi/themes/KooL_style-8.rasi b/assets/rofi/themes/KooL_style-8.rasi deleted file mode 100644 index 5d24a2ed..00000000 --- a/assets/rofi/themes/KooL_style-8.rasi +++ /dev/null @@ -1,243 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 8 */ - - -/* ---- Configuration ---- */ -configuration { - modi: "drun,filebrowser,window,run"; - show-icons: true; - display-drun: "๏†ฒโ€‰ apps"; - display-run: "๏„ โ€‰ term"; - display-filebrowser: " ๏ผโ€‰ file"; - display-window: " ๏‹โ€‰ window"; - drun-display-format: "{name}"; - window-format: "{w} ยท {c} ยท {t}"; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/* ---- Global Properties ---- */ -* { - - border-width: 2px; - border-radius: 12px; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/* ---- Window ---- */ -window { - width: 50%; - transparency: "real"; - fullscreen: false; - enabled: true; - cursor: "default"; - spacing: 0em; - padding: 0em; - border: @border-width; - border-color: @color12; - border-radius: @border-radius; - background-color: @background; -} - -mainbox { - enabled: true; - spacing: 0em; - padding: 0em; - orientation: vertical; - children: [ "inputbar" , "mode-switcher", "message", "listbox" ]; - background-color: transparent; -} - - -/* ---- Inputbar ---- */ -inputbar { - enabled: true; - spacing: 0em; - padding: 4em; - children: [ "textbox-prompt-colon", "entry" ]; - background-color: transparent; - background-image: url("~/.config/rofi/.current_wallpaper", width); -} - -textbox-prompt-colon { - enabled: true; - expand: false; - str: " โžก๏ธ"; - padding: 1em 0.2em 0em 0em; - text-color: @foreground; - border-radius: 2em 0em 0em 2em; - background-color: @background; -} - -entry { - enabled: true; - border-radius: 0em 2em 2em 0em; - spacing: 1em; - padding: 1em; - background-color: @background; - text-color: @foreground; - cursor: text; - placeholder: " Search"; - placeholder-color: inherit; -} - -/* ---- Listbox ---- */ -listbox { - padding: 0em; - spacing: 0em; - orientation: horizontal; - children: [ "listview" ]; - background-color: @background; -} - -/* ---- Listview ---- */ -listview { - padding: 1.5em; - spacing: 0.5em; - enabled: true; - columns: 2; - lines: 4; - cycle: true; - dynamic: true; - scrollbar: true; - layout: vertical; - reverse: false; - fixed-height: true; - fixed-columns: true; - cursor: "default"; - background-color: transparent; -} - - -/* ---- Mode Switcher ---- */ -mode-switcher { - orientation: horizontal; - width: 2em; - enabled: true; - padding: 1em; - spacing: 1em; - background-color: transparent; -} - -button { - cursor: pointer; - border-radius: 2em; - background-color: @background; - text-color: @foreground; -} - -button selected { - background-color: @color12; - text-color: @foreground; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: @border-width; - border-color: @color11; - handle-color: @color12; - handle-width: 10px ; - padding: 0; -} - - -/* ---- Elements ---- */ -element { - enabled: true; - spacing: 0em; - padding: 0.5em; - cursor: pointer; - background-color: transparent; - text-color: @foreground; -} - -element selected.normal { - background-color: @color11; - text-color: @foreground; - border-radius: 1.5em; -} - -element normal.normal { - background-color: inherit; - text-color: @foreground; -} - -element normal.urgent { - background-color: inherit; - text-color: @foreground; -} - -element normal.active { - background-color: inherit; - text-color: @foreground; -} - -element selected.urgent { - background-color: inherit; - text-color: @foreground; -} - -element selected.active { - background-color: inherit; - text-color: @foreground; -} - -element alternate.normal { - background-color: inherit; - text-color: @foreground; -} - -element alternate.urgent { - background-color: inherit; - text-color: @foreground; -} - -element alternate.active { - background-color: inherit; - text-color: @foreground; -} - -element-icon { - size: 2em; - cursor: inherit; - background-color: transparent; - text-color: inherit; -} - -element-text { - vertical-align: 0.5; - horizontal-align: 0.0; - cursor: inherit; - background-color: transparent; - text-color: inherit; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - margin: 12px; - padding: 12px; - border-radius: @border-radius; - background-color: @color12; - text-color: @foreground; - vertical-align: 0.5; - horizontal-align: 0.5; -} -error-message { - padding: 0px; - border-radius: @border-radius; - background-color: @background; - text-color: @foreground; -} diff --git a/assets/rofi/themes/KooL_style-9.rasi b/assets/rofi/themes/KooL_style-9.rasi deleted file mode 100644 index 7c49d929..00000000 --- a/assets/rofi/themes/KooL_style-9.rasi +++ /dev/null @@ -1,212 +0,0 @@ -/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ -/* KooL Hyprland Rofi Style 9 */ -/* Modified version of Rofi Config which was submitted by https://github.com/lonerOrz via Discord */ - -/* Integrating Wallust and More tweaks */ - - -configuration { - show-icons: true; - display-drun: "๏‘„"; - drun-display-format: "{icon} {name}"; - disable-history: false; - click-to-exit: true; - location: 0; - dpi: 1; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; -} - -/* ---- Load wallust colors ---- */ -@theme "~/.config/rofi/wallust/colors-rofi.rasi" - -/*****----- Global Properties -----*****/ -* { - BG: @background; - BGA: @color11; - FG: @foreground; - FGA: #F28FADff; - BDR: @color12; - SEL: #1E1E2Eff; - UGT: #F28FADff; - IMG: #FAE3B0ff; - OFF: #575268ff; - ON: #ABE9B3ff; -} - -/*****-- Elements Font Size -----*****/ -element-text { - font: "JetBrainsMono Nerd Font SemiBold 12"; -} - -/* ---- Window ---- */ -window { - transparency: "real"; - background-color: @BG; - text-color: @FG; - border: 2px; - border-color: @BDR; - border-radius: 10px; - width: 30%; - anchor: center; - x-offset: 0; - y-offset: 0; -} - -prompt { - enabled: true; - padding: 8px; - background-color: @BG; - text-color: @IMG; -} - -textbox-prompt-colon { - expand: false; - str: "๏€‚"; - border-radius: 100%; - background-color: @SEL; - text-color: @FG; - padding: 8px 12px 8px 12px; -} - -/* ---- Entry input ---- */ -entry { - background-color: @BG; - text-color: @FG; - placeholder-color: @FG; - expand: true; - horizontal-align: 0; - placeholder: " Search..."; - blink: true; - border: 0px 0px 2px 0px; - border-color: @BDR; - border-radius: 10px; - padding: 8px; -} - -inputbar { - children: [ textbox-prompt-colon, entry ]; - background-color: @BG; - text-color: @FG; - expand: false; - border: 0px 0px 0px 0px; - border-radius: 0px; - border-color: @BDR; - margin: 0px 0px 0px 0px; - padding: 0px; - position: center; -} - -case-indicator { - background-color: @BG; - text-color: @FG; - spacing: 0; -} - -/* ---- Listview ---- */ -listview { - background-color: @BG; - columns: 1; - lines: 7; - spacing: 4px; - cycle: true; - dynamic: true; - layout: vertical; - scrollbar: true; -} - -mainbox { - background-color: @BG; - children: [ inputbar, listview ]; - spacing: 15px; - padding: 15px; -} - -/* ---- Scrollbar ---- */ -scrollbar { - border: 1px; - border-radius: 10px; - border-color: @color12; - handle-color: @color11; - handle-width: 10px ; - padding: 0; -} - -/* ---- Elements ---- */ -element { - background-color: @BG; - text-color: @FG; - orientation: horizontal; - border-radius: 4px; - padding: 6px 6px 6px 6px; -} - -element-icon { - background-color: inherit; - text-color: inherit; - horizontal-align: 0.5; - vertical-align: 0.5; - size: 24px; - border: 0px; -} - -element-text { - background-color: inherit; - text-color: inherit; - expand: true; - horizontal-align: 0; - vertical-align: 0.5; - margin: 2px 0px 2px 2px; -} - -element normal.urgent, -element alternate.urgent { - background-color: @UGT; - text-color: @FG; - border-radius: 9px; -} - -element normal.active, -element alternate.active { - background-color: @BGA; - text-color: @FG; -} - -element selected { - background-color: @BGA; - text-color: @SEL; - border: 0px 0px 0px 0px; - border-radius: 10px; - border-color: @BDR; -} - -element selected.urgent { - background-color: @UGT; - text-color: @FG; -} - -element selected.active { - background-color: @BGA; - color: @FG; -} - -/* ---- Message ---- */ -message { - background-color: transparent; - border: 0px; -} -textbox { - padding: 12px; - border-radius: 10px; - background-color: @BDR; - text-color: @foreground; - vertical-align: 0.5; - horizontal-align: 0.5; -} -error-message { - padding: 12px; - border-radius: 20px; - background-color: @background; - text-color: @foreground; -} \ No newline at end of file diff --git a/config/rofi/themes/KooL_LonerOrZ.rasi b/config/rofi/themes/KooL_LonerOrZ.rasi new file mode 100644 index 00000000..5afd1f6b --- /dev/null +++ b/config/rofi/themes/KooL_LonerOrZ.rasi @@ -0,0 +1,195 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Style LonerOrZ */ +/* Submitted by https://github.com/lonerOrz */ + + + +configuration { + show-icons: true; + display-drun: "๏‘„"; + drun-display-format: "{icon} {name}"; + disable-history: false; + click-to-exit: true; + location: 0; +} + +/*****----- Global Properties -----*****/ +* { + font: "Iosevka 12"; + + BG: #1E1D2Fff; + BGA: #89DCEBff; + FG: #D9E0EEff; + FGA: #F28FADff; + BDR: #96CDFBff; + SEL: #1E1E2Eff; + UGT: #F28FADff; + IMG: #FAE3B0ff; + OFF: #575268ff; + ON: #ABE9B3ff; +} + +window { + transparency: "real"; + background-color: @BG; + text-color: @FG; + border: 2px; + border-color: @BDR; + border-radius: 10px; + width: 25%; + anchor: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 8px; + background-color: @BG; + text-color: @IMG; +} + +textbox-prompt-colon { + expand: false; + str: "๏€‚"; + border-radius: 100%; + background-color: @SEL; + text-color: @FG; + padding: 8px 12px 8px 12px; + font: "Iosevka Nerd Font 10"; +} + +entry { + background-color: @BG; + text-color: @FG; + placeholder-color: @FG; + expand: true; + horizontal-align: 0; + placeholder: "Search..."; + blink: true; + border: 0px 0px 2px 0px; + border-color: @BDR; + border-radius: 10px; + padding: 8px; +} + +inputbar { + children: [ textbox-prompt-colon, entry ]; + background-color: @BG; + text-color: @FG; + expand: false; + border: 0px 0px 0px 0px; + border-radius: 0px; + border-color: @BDR; + margin: 0px 0px 0px 0px; + padding: 0px; + position: center; +} + +case-indicator { + background-color: @BG; + text-color: @FG; + spacing: 0; +} + + +listview { + background-color: @BG; + columns: 1; + lines: 7; + spacing: 4px; + cycle: false; + dynamic: true; + layout: vertical; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: @BDR; + handle-width: 5px ; + padding: 0; +} + +mainbox { + background-color: @BG; + children: [ inputbar, message, listview ]; + spacing: 15px; + padding: 15px; +} + +element { + background-color: @BG; + text-color: @FG; + orientation: horizontal; + border-radius: 4px; + padding: 6px 6px 6px 6px; +} + +element-icon { + background-color: inherit; + text-color: inherit; + horizontal-align: 0.5; + vertical-align: 0.5; + size: 24px; + border: 0px; +} + +element-text { + background-color: inherit; + text-color: inherit; + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 2px 0px 2px 2px; +} + +element normal.urgent, +element alternate.urgent { + background-color: @UGT; + text-color: @FG; + border-radius: 9px; +} + +element normal.active, +element alternate.active { + background-color: @BGA; + text-color: @FG; +} + +element selected { + background-color: @BGA; + text-color: @SEL; + border: 0px 0px 0px 0px; + border-radius: 10px; + border-color: @BDR; +} + +element selected.urgent { + background-color: @UGT; + text-color: @FG; +} + +element selected.active { + background-color: @BGA; + color: @FG; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} +error-message { + padding: 20px; +} +textbox { + padding: 10px; + border-radius: 10px; + background-color: @BDR; + text-color: @SEL; + vertical-align: 0.5; + horizontal-align: 0.5; +} diff --git a/config/rofi/themes/KooL_style-1.rasi b/config/rofi/themes/KooL_style-1.rasi new file mode 100644 index 00000000..9ac62fd7 --- /dev/null +++ b/config/rofi/themes/KooL_style-1.rasi @@ -0,0 +1,246 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 1 */ + +/* ---- Configuration ---- */ + +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "Apps"; + display-run: "Run"; + display-filebrowser: "Files"; + display-window: "Windows"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/* ---- Global Properties ---- */ +* { + background-alt: @color1; + selected: @color12; + active: @color11; + urgent: red; + + text-selected: @background; + text-color: @foreground; + border-color: @selected; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} +/* ---- Window ---- */ +window { + // Default + enabled: true; + fullscreen: false; + transparency: "real"; + cursor: "default"; + spacing: 0px; + border: 3px 0px 3px 0px; + border-radius: 30px; + location: center; + anchor: center; + + // Style Values + width: 50%; + background-color: @background; +} + +/* ----- Main Box ----- */ +mainbox { + padding: 12px; + enabled: true; + orientation: vertical; + children: [ "inputbar", "listbox" ]; + background-color: transparent; +} + + +/* ---- Inputbar ---- */ +inputbar { + enabled: true; + padding: 10px 10px 50px 10px; + margin: 10px; + background-color: transparent; + border-radius: 20px; + orientation: horizontal; + children: ["entry", "dummy", "mode-switcher" ]; + background-image: url("~/.config/rofi/.current_wallpaper", width); +} + +/* ---- Entry input ---- */ +entry { + enabled: true; + expand: false; + width: 20%; + padding: 10px; + border-radius: 12px; + background-color: @active; + text-color: @text-selected; + cursor: text; + placeholder: " ๐Ÿ–ฅ๏ธ Search "; + placeholder-color: inherit; +} + +/* ---- Listbox ---- */ +listbox { + spacing: 10px; + padding: 10px; + background-color: transparent; + orientation: vertical; + children: [ "message", "listview" ]; +} + +/* ---- Listview ---- */ +listview { + enabled: true; + columns: 5; + lines: 5; + cycle: true; + dynamic: true; + scrollbar: true; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + spacing: 10px; + background-color: transparent; + margin: 10px; + text-color: @foreground; + +// Adapt rofi theme + border: 0px; +} + +/* ---- Dummy ---- */ +dummy { + expand: true; + background-color: transparent; +} + +/* ---- Mode Switcher ---- */ +mode-switcher{ + enabled: true; + spacing: 10px; + background-color: transparent; +} +button { + width: 5%; + padding: 12px; + border-radius: 12px; + background-color: @text-selected; + text-color: @text-color; + cursor: pointer; +} +button selected { + background-color: @selected; + text-color: @text-selected; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + border-color: @color12; + handle-color: @color11; + handle-width: 10px ; + padding: 0; +} + +/* ---- Elements ---- */ +element { + enabled: true; + orientation: vertical; + padding: 10px; + spacing: 10px; + border-radius: 12px; + background-color: transparent; + cursor: pointer; +} + +element normal.normal { + background-color: inherit; + text-color: inherit; +} +element normal.urgent { + background-color: @urgent; + text-color: @foreground; +} +element normal.active { + background-color: @active; + text-color: @foreground; +} + +element selected.normal { + border: 0px 3px 0px 3px; + border-radius: 16px; + border-color: @active; + background-color: transparent; + text-color: @selected; +} + +element selected.urgent { + background-color: @urgent; + text-color: @text-selected; +} +element selected.active { + background-color: @urgent; + text-color: @text-selected; +} +// Adapt rofi theme +element alternate.normal { + background-color: transparent; + text-color: inherit; +} +element alternate.urgent { + background-color: transparent; + text-color: inherit; +} +element alternate.active { + background-color: transparent; + text-color: inherit; +} +element-icon { + size: 3%; + background-color: transparent; + text-color: inherit; + cursor: inherit; +} +element-text { + size: 1%; + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + margin: 10px; + padding: 12px; + border-radius: 10px; + background-color: @active; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: @background; + text-color: @foreground; +} diff --git a/config/rofi/themes/KooL_style-10-Fancy-v2.rasi b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi new file mode 100644 index 00000000..3e4a55c7 --- /dev/null +++ b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi @@ -0,0 +1,174 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 10 - Fancy v2 */ +/* Credit to DaveDavenport & Rasmus Steinke */ + +/** + * Edited by: Dave Davenport + * User: Rasi + * Copyright: Rasmus Steinke + */ + +/* global settings and color variables */ +* { + blue: #A7c6E2; + blue-trans: #A7c6e2aa; + darkblue: #005F87; + green: #00330088; + black: #000000; + grey: #444444; + orange: #FFD391; + dark-orange: #FFA664; + light-grey: #F5F5F5; + medium-grey: #D0D0D0; + dark-grey: #002B36; + urgent: #D75F00; + active: #005F87; + transparent: #000000aa; + spacing: 0em; + padding: 0px; + background-color: white; + line-style: "none"; +} + +prompt-box { + background-color : transparent; +} + +prompt { + background-color : transparent; + text-color : white; +} + +window { + border : 2px; + border-radius : 12px; + border-color : black; + background-color : transparent; + color : @grey; +} +mainbox { + background-color : @blue-trans; + color : @grey; + spacing : 0%; +} + +listview { + // Looks. + border-radius : 10px; + border : 5px; + padding : 20px; + margin : 20px 30px 30px 30px; + background-color : @orange; + // Enable scrollbar + scrollbar : false; + scrollbar-width : 5px; + fixed-height : true; + reverse : false; + color : #000000; + spacing : 0.3em; +} +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: @blue; + handle-color: @orange; + handle-width: 5px ; + padding: 0; +} +element { + border: 0px; + padding: 0px; + margin: 0px; + spacing: 0.5em; + color: @black; + background-color: @blue; + children: [ element-icon, element-text ]; +} + +element normal.normal { + color: @black; + background-color: @orange; +} +element normal.urgent { + color: @urgent; + background-color: @light-grey; +} +element normal.active { + color: @active; + background-color: @light-grey; +} +element selected.normal { + border-radius: 0px; + color: @black; + background-color: @dark-orange; +} +element selected.urgent { + color: @light-grey; + background-color: @urgent; +} +element selected.active { + color: @light-grey; + background-color: @active; +} +element alternate.normal { + color: @black; + background-color: @orange; +} +element alternate.urgent { + color: @urgent; + background-color: @medium-grey; +} +element alternate.active { + color: @active; + background-color: @medium-grey; +} +inputbar { + spacing : 5px; + background-color : #88003300; + border : 0px 0px 2px 0px; + border-radius : 0px; + padding : 5px 10px 5px 35px; + background-color : #00330088; + color : @black; + end : false; +} + +separator { + background-color : @blue; + color : #00000000; +} +prompt normal.normal { + background-color : #00000000; + color : #ffffff; + padding : 0px; +} +entry normal.normal { + background-color : #00000000; + color : #ffffff; + padding : 0px; +} +case-indicator normal.normal { + background-color : #00000000; + color : #ffffff; + padding : 0px; +} + +message { + margin : 30px; + padding : 20px 30px 20px 20px; + padding : 20px ; + border-radius : 10px; + border : 5px; +} + +prompt-colon { + spacing : 0; + enabled : false; +} + +element-text, element-icon { + background-color : inherit; + text-color : inherit; + foreground-color : inherit; +} diff --git a/config/rofi/themes/KooL_style-10-Fancy.rasi b/config/rofi/themes/KooL_style-10-Fancy.rasi new file mode 100644 index 00000000..b503f549 --- /dev/null +++ b/config/rofi/themes/KooL_style-10-Fancy.rasi @@ -0,0 +1,302 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 10 - Fancy */ +/* Credit to DaveDavenport. I have only some few things changed */ + +/******************************************************************************* + * ROFI Color theme + * Theme designed to show off moving, packing of widgets, icons and more. + * User: DaveDavenport + * Copyright: DaveDavenport + ********************************************************************************/ + +/* ---- Configuration ---- */ + +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +* { + selected-normal-foreground: rgba ( 248, 248, 242, 100 % ); + foreground: rgba ( 248, 248, 242, 100 % ); + normal-foreground: @foreground; + alternate-normal-background: rgba ( 39, 40, 34, 0 % ); + selected-urgent-foreground: rgba ( 248, 248, 242, 100 % ); + urgent-foreground: rgba ( 249, 38, 114, 100 % ); + alternate-urgent-background: rgba ( 39, 40, 34, 0 % ); + active-foreground: rgba ( 166, 226, 42, 100 % ); + lightbg: rgba ( 238, 232, 213, 100 % ); + selected-active-foreground: rgba ( 166, 226, 42, 100 % ); + alternate-active-background: rgba ( 39, 40, 34, 0 % ); + background: rgba ( 39, 40, 34, 93 % ); + bordercolor: rgba ( 0, 43, 54, 100 % ); + alternate-normal-foreground: @foreground; + normal-background: rgba ( 39, 40, 34, 0 % ); + selected-normal-background: rgba ( 20, 20, 17, 100 % ); + separatorcolor: rgba ( 230, 219, 116, 100 % ); + urgent-background: rgba ( 39, 40, 34, 0 % ); + selected-urgent-background: rgba ( 249, 38, 114, 100 % ); + alternate-urgent-foreground: @urgent-foreground; + background-color: transparent; + alternate-active-foreground: @active-foreground; + active-background: rgba ( 39, 40, 34, 0 % ); + selected-active-background: rgba ( 20, 20, 17, 100 % ); +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +window { + border-color: darkgray/30%; + background-color: black/50%; + border: 2px; + padding: 0px; + border-radius: 10px; + padding: 0.5em; + spacing: 0px; + + anchor: north; + location: center; + y-offset: -15.5em; + + + children: [ inputbar, message, wrapper-mode-switcher, listview , pagerbox ]; +} + +pagerbox { + expand: false; + orientation: horizontal; + children: [ icon-left, pad, icon-right ]; +} + +pad { + expand: true; +} + +icon-left { + expand: false; + filename: "go-previous"; + size: 24; + vertical-align: 0.5; + action: "kb-page-prev"; +} + +icon-right { + expand: false; + filename: "go-next"; + size: 24; + vertical-align: 0.5; + action: "kb-page-next"; +} + +wrapper-mode-switcher { + orientation: horizontal; + + expand: false; + spacing: 0; + children: [ icon-ms-ic1, mode-switcher, icon-ms-ic2 ]; +} +icon-ms-ic1 { + filename: "go-previous"; +} +icon-ms-ic2 { + filename: "go-next"; +} +icon-ms-ic1,icon-ms-ic2 { + size: 16; + vertical-align: 0.8; + expand: false; + border: 0px 0px 2px ; + border-color: @separatorcolor; +} + +mode-switcher { + border: 0px; + spacing: 0px; + expand: true; +} + +button { + padding: 2px; + border: 0px 0px 2px ; + border-color: @separatorcolor; + text-color: dimgrey; +} +button selected.normal { + text-color: white; + background-color: black/50%; + + border: 2px 2px 0px ; + border-color: @separatorcolor; + border-radius: 10px 10px 0 0; +} + + +sidebar { + expand: false; +} + +message { + text-color: black; + background-color: lightgrey / 50%; + border-color: grey; + border: 2px; + border-radius: 5px; + padding: 4px; + margin: 0px 0px 0.5em; + expand: false; +} + +listview { + enabled: true; + columns: 2; + lines: 10; + spacing: 2px ; + scrollbar: false; + padding: 0.5em; + background-color: black/50%; + + expand: true; + border: 0px 2px 2px ; + border-color: @separatorcolor; + border-radius: 0px 0px 10px 10px; +} +element { + border: 1; + border-color: transparent; + padding: 4px ; +} +element-text { + background-color: inherit; + text-color: inherit; +} +element.normal.normal { + background-color: @normal-background; + text-color: @normal-foreground; +} +element.normal.urgent { + background-color: @urgent-background; + text-color: @urgent-foreground; +} +element.normal.active { + background-color: @active-background; + text-color: @active-foreground; +} +element.selected.normal { + border: 1; + border-color: grey/80%; + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} +element.selected.urgent { + border: 1; + border-color: grey/80%; + background-color: @selected-urgent-background; + text-color: @selected-urgent-foreground; +} +element.selected.active { + border: 1; + border-color: grey/80%; + background-color: @selected-active-background; + text-color: @selected-active-foreground; +} +element.alternate.normal { + background-color: @alternate-normal-background; + text-color: @alternate-normal-foreground; +} +element.alternate.urgent { + background-color: @alternate-urgent-background; + text-color: @alternate-urgent-foreground; +} +element.alternate.active { + background-color: @alternate-active-background; + text-color: @alternate-active-foreground; +} +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: @selected-normal-background; + handle-color: @separatorcolor; + handle-width: 5px ; + padding: 0; +} +sidebar { + border: 2px 0px 0px ; + border-color: @separatorcolor; +} +inputbar { + text-color: @normal-foreground; + padding: 0px 0px 0.5em; + children: [ wrapper ]; +} +case-indicator { + text-color: @normal-foreground; +} + +wrapper { + orientation: horizontal; + text-color: black; + background-color: white / 75%; + border-color: grey; + border: 2px; + border-radius: 5px; + padding: 4px; + children: [ icon-k, entry, icon-paste]; + spacing: 0.5em; +} +button-paste { + expand: false; + str: "gtk-paste"; + size: 24; + vertical-align: 0.5; + action: "kb-cancel"; +} +icon-paste { + expand: false; + filename: "gtk-paste"; + size: 24; + vertical-align: 0.5; + action: "kb-primary-paste"; +} +icon-k { + expand: false; + filename: "input-keyboard"; + size: 24; + vertical-align: 0.5; + +} +entry { + enabled: true; + expand: true; + background-color: white / 75%; + placeholder: " ๐Ÿ–ฅ๏ธ Search "; + vertical-align: 0.5; + border-radius: 5px; + padding: 4px; +} + + +/*****----- Message -----*****/ +error-message { + background-color: darkred/20%; + border-radius: 10px; + border: 2px; + +} +textbox { + padding: 5px; + background-color: darkred/10%; + vertical-align: 0.5; + horizontal-align: 0.5; +} + + diff --git a/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi new file mode 100644 index 00000000..229a5297 --- /dev/null +++ b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -0,0 +1,150 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 11 - Windows 11 List Dark */ +/* source: https://github.com/newmanls */ + +/* Integrating Wallust and More tweaks */ + +/* ---- Configuration ---- */ +configuration { + dpi: 1; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/*****----- Global Properties -----*****/ +* { + bg0 : black/50%; + bg1 : black/40%; + bg2 : black/10%; + bg3 : black; + fg0 : #ffffff; + fg1 : #cecece; + accent : #60cdff; + urgent : @accent; + + background-color : transparent; + text-color : @fg0; + + margin : 0; + padding : 0; + spacing : 0; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +element-icon, element-text, scrollbar { + cursor: pointer; +} + +window { + location : south; + width : 40%; + height : 50%; + y-offset : -10px; + + background-color : @bg1; + border-radius : 8px; +} + +mainbox { + padding : 24px; + spacing : 24px; +} + +inputbar { + padding : 8px; + spacing : 4px; + children : [ icon-search, entry ]; + border : 0 0 2px 0 solid; + border-color : @accent; + border-radius : 2px; + background-color : @bg0; +} + +icon-search, entry, element-icon, element-text { + vertical-align: 0.5; +} + +icon-search { + expand : false; + filename : "search-symbolic"; + size : 24px; +} + +entry { + placeholder : "Type here to search"; + text-color : @fg1; +} + +listview { + columns : 2; + spacing : 8px; + fixed-height : true; + fixed-columns : true; +} + +element { + spacing : 1em; + padding : 8px; + border-radius : 2px; +} + +element normal urgent { + text-color: @urgent; +} + +element normal active { + text-color: @accent; +} + +element alternate active { + text-color: @accent; +} + +element selected active { + text-color: @accent; +} + +element selected { + background-color: @bg3; +} + +element selected urgent { + background-color: @urgent; +} + +element-icon { + size: 1.5em; +} + +element-text { + text-color: inherit; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: inherit; + handle-color: @accent; + handle-width: 5px ; + padding: 0; +} + +/*****----- Message -----*****/ +error-message { + padding: 20px; +} + +textbox { + padding : 10px; + background-color : @bg0; + text-color : @fg0; + vertical-align : 0.5; + horizontal-align : 0.5; +} diff --git a/config/rofi/themes/KooL_style-11-Win11-list-light.rasi b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi new file mode 100644 index 00000000..8d5082e6 --- /dev/null +++ b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -0,0 +1,150 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 11 - Windows 11 List Light */ +/* source: https://github.com/newmanls */ + +/* Integrating Wallust and More tweaks */ + +/* ---- Configuration ---- */ +configuration { + dpi: 1; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/*****----- Global Properties -----*****/ +* { + bg0 : #ffffff80; + bg1 : #f9f9f9bf; + bg2 : #f7f7f7; + bg3 : #fefefebf; + fg0 : #1a1a1a; + fg1 : #5f5f5f; + accent : #005fb8; + urgent : @accent; + + background-color : transparent; + text-color : @fg0; + + margin : 0; + padding : 0; + spacing : 0; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +element-icon, element-text, scrollbar { + cursor: pointer; +} + +window { + location : south; + width : 40%; + height : 50%; + y-offset : -10px; + + background-color : @bg1; + border-radius : 8px; +} + +mainbox { + padding : 24px; + spacing : 24px; +} + +inputbar { + padding : 8px; + spacing : 4px; + children : [ icon-search, entry ]; + border : 0 0 2px 0 solid; + border-color : @accent; + border-radius : 2px; + background-color : @bg0; +} + +icon-search, entry, element-icon, element-text { + vertical-align: 0.5; +} + +icon-search { + expand : false; + filename : "search-symbolic"; + size : 24px; +} + +entry { + placeholder : "Type here to search"; + placeholder-color : @fg1; +} + +listview { + columns : 2; + spacing : 8px; + fixed-height : true; + fixed-columns : true; +} + +element { + spacing : 1em; + padding : 8px; + border-radius : 2px; +} + +element normal urgent { + text-color: @urgent; +} + +element normal active { + text-color: @accent; +} + +element alternate active { + text-color: @accent; +} + +element selected active { + text-color: @accent; +} + +element selected { + background-color: @bg3; +} + +element selected urgent { + background-color: @urgent; +} + +element-icon { + size: 1.5em; +} + +element-text { + text-color: inherit; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: inherit; + handle-color: @accent; + handle-width: 5px ; + padding: 0; +} + +/*****----- Message -----*****/ +error-message { + padding: 20px; +} + +textbox { + padding : 10px; + background-color : @bg0; + text-color : @fg0; + vertical-align : 0.5; + horizontal-align : 0.5; +} diff --git a/config/rofi/themes/KooL_style-12-TOP-Docu.rasi b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi new file mode 100644 index 00000000..55fbb0b7 --- /dev/null +++ b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi @@ -0,0 +1,159 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 12 - TOP - Docu */ +/* Credit to DaveDavenport. I have only some few things changed */ + +/** + * ROFI Documentation theme. + * User: Qball + * Copyright: Dave Davenport + */ + +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "Apps"; + display-run: "Run"; + display-filebrowser: "Files"; + display-window: "Windows"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Global Properties ---- */ +* { + background-color: transparent; + text-color: white; +} +entry { + border: 2px 0px; + border-color: darkgrey; + background-color: grey; + padding: 4px; + placeholder: "๐Ÿ”Ž Search"; + placeholder-color: darkgrey; + cursor: text; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; + +} +inputbar { + spacing: 0; + children: [ icon-keyboard, entry, mode-switcher ]; +} + +mode-switcher { + spacing: 10px; + border: 2px; + border-radius: 0px 4px 4px 0px; + border-color: darkgrey; + background-color: darkgrey; +} + +button { + padding: 0px 60px 0px 60px; + background-color: grey; + border-color: darkgrey; + cursor: pointer; +} + +button selected { + background-color: white/20%; + text-color: black; +} + +icon-keyboard { + border: 2px 0px 2px 2px; + border-radius: 4px 0px 0px 4px; + border-color: darkgrey; + background-color: grey; + padding: 0px 10px 0px 10px; + expand: false; + size: 1.2em; + filename: "keyboard"; +} + +window { + anchor: north; + location: north; + width: 100%; + background-color: black / 50%; + padding: 1em; + border-color: black; + border: 0em 0.2em 0.2em; + chilren: [ inputbar, message, listview ]; +} + +mainbox { + spacing: 1em; +} + + +listview { + lines: 4; + columns: 6; + spacing: 1em; + fixed-columns: true; +} + +element { + orientation: vertical; + border: 2px; + border-radius: 4px ; + border-color: darkgrey; + background-color: grey; + cursor: pointer; + padding: 4px; +} + +element selected { + background-color: white/20%; + text-color: black; +} + + +element-icon { + size: 5%; + cursor: inherit; +} + +element-text { + horizontal-align: 0.5; + cursor: inherit; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border-radius: 10px; + background-color: transparent; + handle-color: darkgrey; + handle-width: 5px ; + padding: 0; +} + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + margin: 10px; + padding: 12px; + border-radius: 10px; + background-color: black / 50%; + text-color: white; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: black / 50%; + text-color: white; +} \ No newline at end of file diff --git a/config/rofi/themes/KooL_style-2-Dark.rasi b/config/rofi/themes/KooL_style-2-Dark.rasi new file mode 100644 index 00000000..73c3eee7 --- /dev/null +++ b/config/rofi/themes/KooL_style-2-Dark.rasi @@ -0,0 +1,191 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 2 Dark */ +/* Source: https://github.com/adi1090x/rofi */ + + +/* ****----- Configuration -----**** */ +configuration { + modi: "drun,filebrowser,window"; + show-icons: true; + display-drun: "APPS"; + display-run: "RUN"; + display-filebrowser: "FILES"; + display-window: "WINDOW"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/*****----- Global Properties -----*****/ +* { + +} +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/*****----- Main Window -----*****/ +window { + /* properties for window widget */ + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 60%; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + margin: 0px; + padding: 0px; + border-radius: 12px; + cursor: "default"; + background-color: transparent; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 20px; + margin: 10px; + padding: 40px; + border-radius: 12px; + background-color: black/90%; + children: [ "inputbar", "mode-switcher", "message", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 0px; + margin: 0px; + padding: 0px 0px 10px 0px; + border: 0px 0px 2px 0px; + border-radius: 0px; + border-color: gray/20%; + background-color: black/50%; + children: [ "entry" ]; +} + +entry { + enabled: true; + background-color: black/50%; + text-color: white/75%; + cursor: text; + placeholder: "Type to search"; + placeholder-color: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 3; + lines: 3; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 40px; + margin: 0px; + padding: 20px 0px 0px 0px; + border: 0px solid; + background-color: transparent; + cursor: "default"; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + background-color: inherit; + handle-color: #719DF9; + handle-width: 5px ; + padding: 0; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 10px; + margin: 0px; + padding: 15px; + border: 1px solid; + border-radius: 8px; + border-color: white/30%; + background-color: black; + text-color: white; + cursor: pointer; +} +element normal.active { + background-color: #67FF80; + text-color: black; +} +element selected.normal { + background-color: #c19419; + text-color: black; +} +element selected.active { + background-color: #FF7F7C; + text-color: white; +} +element-icon { + background-color: transparent; + size: 48px; + cursor: inherit; +} +element-text { + background-color: inherit; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; +} + +/*****----- Mode Switcher -----*****/ +mode-switcher{ + enabled: true; + expand: false; + spacing: 20px; + margin: 0px 10%; + background-color: transparent; + text-color: white; +} +button { + padding: 6px; + border: 0px solid; + border-radius: 100%; + background-color: #719DF9; + text-color: inherit; + cursor: pointer; +} +button selected { + background-color: #F37277; + text-color: inherit; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} +error-message { + padding: 20px; +} +textbox { + padding: 10px; + background-color: #719DF9; + text-color: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} diff --git a/config/rofi/themes/KooL_style-2-Light.rasi b/config/rofi/themes/KooL_style-2-Light.rasi new file mode 100644 index 00000000..29ea7188 --- /dev/null +++ b/config/rofi/themes/KooL_style-2-Light.rasi @@ -0,0 +1,193 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 2 Light */ +/* credit: https://github.com/adi1090x/rofi */ + + +/*****----- Configuration -----*****/ +configuration { + modi: "drun,filebrowser,window"; + show-icons: true; + display-drun: "APPS"; + display-run: "RUN"; + display-filebrowser: "FILES"; + display-window: "WINDOW"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/*****----- Global Properties -----*****/ +* { + +} +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/*****----- Main Window -----*****/ +window { + /* properties for window widget */ + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 60%; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + margin: 0px; + padding: 0px; + border-radius: 12px; + cursor: "default"; + background-color: inherit; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 20px; + margin: 10px; + padding: 40px; + border-radius: 12px; + background-color: white/90%; + children: [ "inputbar", "mode-switcher", "message", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 0px; + margin: 0px; + padding: 0px 10px 10px 0px; + border: 0px 0px 2px 0px; + border-radius: 0px; + border-color: gray/20%; + background-color: transparent; + children: [ "entry" ]; +} + +entry { + enabled: true; + background-color: inherit; + text-color: black; + cursor: text; + placeholder: "Type to search"; + placeholder-color: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 3; + lines: 3; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 40px; + margin: 0px; + padding: 20px 0px 0px 0px; + border: 0px solid; + background-color: transparent; + cursor: "default"; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: gray/50%; + handle-width: 5px ; + padding: 0; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 10px; + margin: 0px; + padding: 15px; + border: 1px solid; + border-radius: 8px; + border-color: gray/30%; + background-color: white; + text-color: black; + cursor: pointer; +} +element normal.active { + background-color: #67FF80; + text-color: black; +} +element selected.normal { + background-color: #FDD66F; + text-color: black; +} +element selected.active { + background-color: #FF7F7C; + text-color: black; +} +element-icon { + background-color: transparent; + size: 48px; + cursor: inherit; +} +element-text { + background-color: inherit; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; +} + +/*****----- Mode Switcher -----*****/ +mode-switcher{ + enabled: true; + expand: false; + spacing: 20px; + margin: 0px 10%; + background-color: transparent; + text-color: white; +} +button { + font: "JetBrainsMono Nerd Font SemiBold 10"; + padding: 6px; + border: 0px solid; + border-radius: 100%; + background-color: #719DF9; + text-color: inherit; + cursor: pointer; +} +button selected { + background-color: #F37277; + text-color: inherit; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} +error-message { + padding: 20px; +} +textbox { + padding: 10px; + background-color: #719DF9; + text-color: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} + diff --git a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi new file mode 100644 index 00000000..a98a6fa8 --- /dev/null +++ b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi @@ -0,0 +1,256 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 3 - Full screen v1 */ + +/* ---- Configuration ---- */ + +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "Apps"; + display-run: "Run"; + display-filebrowser: "Files"; + display-window: "Windows"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/* ---- Global Properties ---- */ +* { + + background-alt: @selected-active-background; // Buttons background + selected: @selected-urgent-background; // Button selected + active: @selected-normal-background; // Window activated + urgent: @selected; // When hovering the activated window (maybe more?) + + text-selected: @background; + text-color: @foreground; + border-color: @selected; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/* ---- Global Properties ---- */ +* { + main-bg: @background; + main-fg: @foreground; + main-br: @color12; + main-ex: @color11; + select-bg: @foreground; + select-fg: @background; + separatorcolor: transparent; + border-color: transparent; +} + + +/* ---- Window ---- */ +window { + // Default + enabled: true; + fullscreen: true; + transparency: "real"; + cursor: "default"; + spacing: 0px; + border: 3px 0px 3px 0px; + border-radius: 30px; + location: center; + anchor: center; + + // Style Values + background-color: @background; +} + +/* ----- Main Box ----- */ +mainbox { + padding: 12px; + enabled: true; + orientation: vertical; + children: [ "inputbar", "listbox" ]; + background-color: transparent; +} + + +/* ---- Inputbar ---- */ +inputbar { + enabled: true; + padding: 10px 10px 50px 10px; + margin: 10px; + background-color: transparent; + border-radius: 20px; + orientation: horizontal; + children: ["entry", "dummy", "mode-switcher" ]; + background-image: url("~/.config/rofi/.current_wallpaper", width); +} + +/* ---- Entry input ---- */ +entry { + enabled: true; + expand: false; + width: 20%; + padding: 10px; + border-radius: 12px; + background-color: @selected; + text-color: @text-selected; + cursor: text; + placeholder: " ๐Ÿ–ฅ๏ธ Search "; + placeholder-color: inherit; +} + +/* ---- Listbox ---- */ +listbox { + spacing: 10px; + padding: 10px; + background-color: transparent; + orientation: vertical; + children: [ "message", "listview" ]; +} + +/* ---- Listview ---- */ +listview { + enabled: true; + columns: 5; + lines: 5; + cycle: true; + dynamic: true; + scrollbar: true; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + spacing: 10px; + background-color: transparent; + margin: 10px; + +// Adapt rofi theme + border: 0px; +} + +/* ---- Dummy ---- */ +dummy { + expand: true; + background-color: transparent; +} + +/* ---- Mode Switcher ---- */ +mode-switcher{ + enabled: true; + spacing: 10px; + background-color: transparent; +} +button { + width: 5%; + padding: 12px; + border-radius: 12px; + background-color: @text-selected; + text-color: @text-color; + cursor: pointer; +} +button selected { + background-color: @selected; + text-color: @text-selected; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 0; + handle-color: @background-alt; + handle-width: 2px ; + padding: 0; +} + +/* ---- Elements ---- */ +element { + enabled: true; + orientation: vertical; + padding: 10px; + spacing: 10px; + border-radius: 12px; + background-color: transparent; + cursor: pointer; +} + +element normal.normal { + background-color: inherit; + text-color: inherit; +} +element normal.urgent { + background-color: @urgent; + text-color: @foreground; +} +element normal.active { + background-color: @active; + text-color: @foreground; +} + +element selected.normal { + border: 0px 3px 0px 3px; + border-radius: 16px; + border-color: @selected; + background-color: transparent; + text-color: @background-alt; +} + +element selected.urgent { + background-color: @urgent; + text-color: @text-selected; +} +element selected.active { + background-color: @urgent; + text-color: @text-selected; +} +// Adapt rofi theme +element alternate.normal { + background-color: transparent; + text-color: inherit; +} +element alternate.urgent { + background-color: transparent; + text-color: inherit; +} +element alternate.active { + background-color: transparent; + text-color: inherit; +} +element-icon { + size: 5%; + background-color: transparent; + text-color: inherit; + cursor: inherit; +} +element-text { + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + margin: 10px; + padding: 12px; + border-radius: 10px; + background-color: @selected; + text-color: @background; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: @background-alt; + text-color: @background; +} diff --git a/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi new file mode 100644 index 00000000..0dbf45bc --- /dev/null +++ b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -0,0 +1,217 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 3 - Full screen v2 */ +/* credit: https://github.com/adi1090x/rofi */ + +/*****----- Configuration -----*****/ +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "๏€‰ Apps"; + display-run: "๏„  Run"; + display-filebrowser: "๏ป Files"; + display-window: "๏‹ Windows"; + display-ssh: "๏„ˆ SSH"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/*****----- Global Properties -----*****/ +* { + background-alt: @color7; + selected: @color12; + active: @color11; + urgent: red; + + border-color: @selected; + handle-color: @selected; + background-color: @background; + foreground-color: @foreground; + alternate-background: @background-alt; + normal-background: @background; + normal-foreground: @foreground; + urgent-background: @urgent; + urgent-foreground: @background; + active-background: @active; + active-foreground: @background; + selected-normal-background: @selected; + selected-normal-foreground: @background; + selected-urgent-background: @active; + selected-urgent-foreground: @background; + selected-active-background: @urgent; + selected-active-foreground: @background; + alternate-normal-background: @background; + alternate-normal-foreground: @foreground; + alternate-urgent-background: @urgent; + alternate-urgent-foreground: @background; + alternate-active-background: @active; + alternate-active-foreground: @background; + + +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/*****----- Main Window -----*****/ +window { + transparency: "real"; + location: center; + anchor: center; + fullscreen: true; + x-offset: 0px; + y-offset: 0px; + + enabled: true; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 0px; + border-color: @selected; + background-color: black / 10%; + cursor: "default"; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 100px; + margin: 0px; + padding: 100px 225px; + border: 0px solid; + border-radius: 0px 0px 0px 0px; + border-color: @selected; + background-color: transparent; + children: [ "inputbar", "message", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 10px; + margin: 0% 28%; + padding: 10px; + border: 1px solid; + border-radius: 6px; + border-color: white / 25%; + background-color: white / 5%; + text-color: @foreground; + children: [ "prompt", "entry" ]; +} + +prompt { + enabled: true; + background-color: transparent; + text-color: inherit; +} +textbox-prompt-colon { + enabled: true; + expand: false; + str: "::"; + background-color: transparent; + text-color: inherit; +} +entry { + enabled: true; + background-color: transparent; + text-color: @foreground; + cursor: text; + placeholder: " Search"; + placeholder-color: inherit; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 7; + lines: 4; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 0px; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 0px; + border-color: @selected; + background-color: transparent; + text-color: @foreground; + cursor: "default"; +} +scrollbar { + handle-width: 5px ; + handle-color: @selected; + border-radius: 0px; + background-color: @background-alt; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 15px; + margin: 0px; + padding: 35px 10px; + border: 0px solid; + border-radius: 15px; + border-color: @selected; + background-color: transparent; + text-color: @foreground; + orientation: vertical; + cursor: pointer; +} +element normal.normal { + background-color: transparent; + text-color: @foreground; +} +element selected.normal { + background-color: white / 10%; + text-color: @foreground; +} +element-icon { + background-color: transparent; + text-color: inherit; + size: 72px; + cursor: inherit; +} +element-text { + background-color: transparent; + text-color: inherit; + highlight: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} +error-message { + padding: 0px; + border-color: @selected; + background-color: transparent; + text-color: @foreground; +} +textbox { + padding: 20px; + border-radius: 15px; + background-color: white / 10%; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; + highlight: none; +} diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi new file mode 100644 index 00000000..7eb03c45 --- /dev/null +++ b/config/rofi/themes/KooL_style-4.rasi @@ -0,0 +1,328 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 4 */ +/* credit: https://github.com/adi1090x/rofi */ + +/*****----- Configuration -----*****/ +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "๏€‰ Apps"; + display-run: "๏„  Run"; + display-filebrowser: "๏ป Files"; + display-window: "๏‹ Window"; + display-ssh: "๏„ˆ SSH"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/*****----- Global Properties -----*****/ +* { + background-alt: @color1; + selected: @color12; + active: @color11; + urgent: #F7768E; + + border-color: @color11; + handle-color: @selected; + background-color: @background; + foreground-color: @foreground; + alternate-background: @background-alt; + normal-background: @background; + normal-foreground: @foreground; + urgent-background: @urgent; + urgent-foreground: @background; + active-background: @active; + active-foreground: @background; + selected-normal-background: @selected; + selected-normal-foreground: @background; + selected-urgent-background: @active; + selected-urgent-foreground: @background; + selected-active-background: @urgent; + selected-active-foreground: @color12; + alternate-normal-background: @background; + alternate-normal-foreground: @foreground; + alternate-urgent-background: @urgent; + alternate-urgent-foreground: @background; + alternate-active-background: @active; + alternate-active-foreground: @background; + + +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/*****----- Main Window -----*****/ +window { + /* properties for window widget */ + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 35%; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 10px; + border-color: @border-color; + cursor: "default"; + /* Backgroud Colors */ + background-color: @background-color; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 10px; + margin: 0px; + padding: 20px; + border: 0px solid; + border-radius: 0px 0px 0px 0px; + border-color: @border-color; + background-color: inherit; + children: [ "inputbar", "message", "custombox" ]; +} + +/*****----- A Custom Box -----*****/ +custombox { + spacing: 0px; + background-color: @background-color; + text-color: @foreground-color; + orientation: horizontal; + children: [ "mode-switcher", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 10px; + margin: 0px; + padding: 8px 12px; + border: 0px solid; + border-radius: 8px; + border-color: @border-color; + background-color: @alternate-background; + text-color: @foreground; + children: [ "textbox-prompt-colon", "entry" ]; +} + +prompt { + enabled: true; + background-color: inherit; + text-color: inherit; +} +textbox-prompt-colon { + enabled: true; + padding: 5px 0px; + expand: false; + str: " ๐Ÿ”Ž"; + background-color: inherit; + text-color: inherit; +} +entry { + enabled: true; + padding: 5px 0px; + background-color: @alternate-background; + text-color: @foreground; + cursor: text; + placeholder: "Search..."; + placeholder-color: inherit; +} +num-filtered-rows { + enabled: true; + expand: false; + background-color: inherit; + text-color: inherit; +} +textbox-num-sep { + enabled: true; + expand: false; + str: "/"; + background-color: inherit; + text-color: inherit; +} +num-rows { + enabled: true; + expand: false; + background-color: inherit; + text-color: inherit; +} +case-indicator { + enabled: true; + background-color: inherit; + text-color: inherit; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 1; + lines: 6; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 5px; + margin: 0px; + padding: 10px; + border: 2px 2px 2px 2px; + border-radius: 8px; + border-color: @border-color; + background-color: transparent; + text-color: @foreground-color; + cursor: "default"; +} +scrollbar { + handle-width: 5px ; + handle-color: @handle-color; + border-radius: 10px; + background-color: @alternate-background; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 10px; + margin: 0px; + padding: 10px; + border: 0px solid; + border-radius: 8px; + border-color: @border-color; + background-color: transparent; + text-color: @foreground-color; + cursor: pointer; +} +element normal.normal { + background-color: transparent; + text-color: @normal-foreground; +} +element normal.urgent { + background-color: @urgent-background; + text-color: @urgent-foreground; +} +element normal.active { + background-color: transparent; + text-color: @active-foreground; +} +element selected.normal { + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} +element selected.urgent { + background-color: @selected-urgent-background; + text-color: @selected-urgent-foreground; +} +element selected.active { + background-color: @selected-active-background; + text-color: @selected-active-foreground; +} +element alternate.normal { + background-color: @alternate-normal-background; + text-color: @alternate-normal-foreground; +} +element alternate.urgent { + background-color: @alternate-urgent-background; + text-color: @alternate-urgent-foreground; +} +element alternate.active { + background-color: @alternate-active-background; + text-color: @alternate-active-foreground; +} +element-icon { + background-color: transparent; + text-color: inherit; + cursor: inherit; +} +element-text { + background-color: transparent; + text-color: inherit; + highlight: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; +} + +/*****----- Mode Switcher -----*****/ +mode-switcher{ + enabled: true; + expand: false; + orientation: vertical; + spacing: 0px; + margin: 0px; + padding: 0px 0px; + border: 0px solid; + border-radius: 8px 0px 0px 8px; + border-color: @border-color; + background-color: @alternate-background; + text-color: @foreground-color; +} +button { + padding: 0px 20px 0px 20px; + border: 0px 0px 0px 0px; + border-radius: 8px; + border-color: @border-color; + background-color: transparent; + text-color: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; + cursor: pointer; +} +button selected { + border: 2px 0px 2px 2px; + border-radius: 6px; + border-color: @border-color; + background-color: @selected-normal-foreground; + text-color: @selected-normal-background; +} + +/*****----- Message -----*****/ +message { + enabled: true; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 0px 0px 0px 0px; + border-color: @border-color; + background-color: transparent; + text-color: @foreground-color; +} +textbox { + padding: 12px; + border: 0px solid; + border-radius: 8px; + border-color: @border-color; + background-color: @alternate-background; + text-color: @foreground-color; + vertical-align: 0.5; + horizontal-align: 0.5; + highlight: none; + placeholder-color: @foreground-color; + blink: true; + markup: true; +} +error-message { + padding: 10px; + border: 2px solid; + border-radius: 8px; + border-color: @border-color; + background-color: @background-color; + text-color: @foreground-color; +} diff --git a/config/rofi/themes/KooL_style-5.rasi b/config/rofi/themes/KooL_style-5.rasi new file mode 100644 index 00000000..8609dcaf --- /dev/null +++ b/config/rofi/themes/KooL_style-5.rasi @@ -0,0 +1,272 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 5 */ + +/* ---- Configuration ---- */ +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "Apps"; + display-run: "Run"; + display-filebrowser: "Files"; + display-window: "Windows"; + drun-display-format: "{name}"; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; +} + + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/* ---- Global Properties ---- */ +* { + + background-alt: @color1; + selected: @color12; + active: @color11; + urgent: red; + + text-selected: @background; + text-color: @foreground; + border-color: @selected; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/* ---- Window ---- */ +window { + width: 800px; + /*height: 450px;*/ + x-offset: 0px; + y-offset: 0px; + spacing: 0px; + padding: 1px; + margin: 0px; + border: 2px; + border-color: @active-background; + cursor: "default"; + location: center; + anchor: center; + fullscreen: false; + enabled: true; + border-radius: 12px; + background-color: @background-color; +} + +/* ---- Mainbox ---- */ +mainbox { + enabled: true; + orientation: vertical; + padding: 8px; + background-image: url("~/.config/rofi/.current_wallpaper", width); + children: [ "inputbar", "listbox" ]; + border-radius: 12px; +} + +/* ---- Imagebox ---- */ +imagebox { + background-color: transparent; + orientation: vertical; + /*children: [ "inputbar"];*/ +} + +/* ---- Listbox ---- */ +listbox { + spacing: 4px; + orientation: vertical; + children: [ "message", "listview" ]; + padding: 10px; + border-radius: 12px; + border: 1px; + border-color: @active-background; + background-color: @background; +} + +/* ---- Dummy ---- */ +dummy { + background-color: transparent; +} + +/* ---- Inputbar ---- */ +inputbar { + enabled: true; + text-color: @foreground; + spacing: 10px; + border-radius: 12px; + border-color: @foreground; + background-color: @background; + children: [ "mode-switcher", "textbox-prompt-colon", "entry" ]; + border: 1px; + border-color: @active-background; +} + +textbox-prompt-colon { + enabled: true; + padding: 10px 0px 10px 10px; + expand: false; + str: "๐Ÿง"; + text-color: inherit; + background-color: transparent; +} + +entry { + enabled: true; + padding: 10px 0px 10px 0px; + text-color: @foreground; + cursor: text; + placeholder: " Search"; + placeholder-color: inherit; + background-color: @background; +} + +/* ---- Mode Switcher ---- */ +mode-switcher{ + enabled: true; + spacing: 10px; + background-color: transparent; + text-color: @foreground; +} + +button { + padding: 2px 24px 2px 24px; + border-radius: 12px; + background-color: @background; + text-color: inherit; + cursor: pointer; + border: 1px; + border-color: @active-background; +} + +button selected { + background-color: @selected; + text-color: @foreground; + border: 1px; + border-color: transparent; + +} + +/* ---- Listview ---- */ +listview { + enabled: true; + columns: 2; + lines: 6; + spacing: 5px; + padding: 6px; + dynamic: true; + cycle: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: false; + background-color: @background; + border-radius: 12px; + border: 0px; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: @active; + handle-width: 5px ; + padding: 0; +} + +/* ---- Element ---- */ +element { + enabled: true; + padding: 5px; + margin: 2px; + cursor: pointer; + background-color: transparent; + border-radius: 12px; + border: 0px; +} + +element normal.normal { + background-color: inherit; + text-color: inherit; +} + +element normal.urgent { + background-color: inherit; + text-color: inherit; +} + +element normal.active { + background-color: inherit; + text-color: inherit; +} + +element selected.normal { + background-color: @active; + text-color: inherit; +} + +element selected.urgent { + background-color: inherit; + text-color: inherit; +} + +element selected.active { + background-color: inherit; + text-color: inherit; +} + +element alternate.normal { + background-color: inherit; + text-color: inherit; +} + +element alternate.urgent { + background-color: inherit; + text-color: @foreground; +} + +element alternate.active { + background-color: inherit; + text-color: inherit; +} + +element-icon { + background-color: transparent; + text-color: inherit; + size: 32px; + cursor: inherit; +} + +element-text { + background-color: transparent; + text-color: @foreground; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0; +} + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + padding: 12px; + border-radius: 10px; + background-color: @background-alt; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 12px; + border-radius: 12px; + background-color: @background-alt; + text-color: @background; +} \ No newline at end of file diff --git a/config/rofi/themes/KooL_style-6.rasi b/config/rofi/themes/KooL_style-6.rasi new file mode 100644 index 00000000..369c0854 --- /dev/null +++ b/config/rofi/themes/KooL_style-6.rasi @@ -0,0 +1,241 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 6 */ + +/* ---- Configuration ---- */ + +configuration { + modi: "drun,run,filebrowser"; + show-icons: true; + display-drun: "Apps"; + display-run: "Run"; + display-filebrowser: "Files"; + display-window: "Windows"; + drun-display-format: "{name}"; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/* ---- Global Properties ---- */ +* { + + background-alt: @color1; + selected: @color12; + active: @color11; + urgent: red; + + text-selected: @background; + text-color: @foreground; + border-color: @selected; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/* ---- Window ---- */ +window { + // Default + enabled: true; + fullscreen: false; + transparency: "real"; + cursor: "default"; + spacing: 0px; + border: 2px; + border-radius: 30px; + location: center; + anchor: center; + + // Style Values + width: 50%; + background-color: #00000099; +} + +/* ----- Main Box ----- */ +mainbox { + enabled: true; + orientation: vertical; + children: [ "inputbar", "listbox" ]; + background-color: transparent; +} + + +/* ---- Inputbar ---- */ +inputbar { + enabled: true; + padding: 10px 10px 150px 10px; + margin: 10px; + background-color: transparent; + border-radius: 25px; + orientation: horizontal; + children: ["entry", "dummy", "mode-switcher" ]; + background-image: url("~/.config/rofi/.current_wallpaper", width); +} + +/* ---- Entry input ---- */ +entry { + enabled: true; + expand: false; + width: 300px; + padding: 10px; + border-radius: 12px; + background-color: @background; + text-color: inherit; + cursor: text; + placeholder: "๏€‚ Search "; // << Search symbol + placeholder-color: inherit; +} + +/* ---- Listbox ---- */ +listbox { + spacing: 10px; + padding: 10px; + background-color: transparent; + orientation: vertical; + children: [ "message", "listview" ]; +} + +/* ---- Listview ---- */ +listview { + enabled: true; + columns: 2; + lines: 6; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + spacing: 10px; + padding: 10px; + background-color: transparent; + +// Adapt rofi theme + border: 0px; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 0px; + border-radius: 10px; + background-color: transparent; + handle-color: @active; + handle-width: 5px ; + padding: 0; +} +/* ---- Dummy ---- */ +dummy { + expand: true; + background-color: transparent; +} + +/* ---- Mode Switcher ---- */ +mode-switcher{ + enabled: true; + spacing: 10px; + background-color: transparent; +} +button { + width: 5%; + padding: 12px; + border-radius: 12px; + background-color: @background; + text-color: inherit; + cursor: pointer; +} +button selected { + background-color: @active; + text-color: @text-selected; +} + + +/* ---- Elements ---- */ +element { + enabled: true; + spacing: 10px; + padding: 4px; + border-radius: 10px; + background-color: transparent; + cursor: pointer; +} + +element normal.normal { + background-color: inherit; + text-color: inherit; +} +element normal.urgent { + background-color: @urgent; + text-color: @foreground; +} +element normal.active { + background-color: @active; + text-color: @foreground; +} + +element selected.normal { + background-color: @color11; + text-color: @text-selected; +} +element selected.urgent { + background-color: @urgent; + text-color: @text-selected; +} +element selected.active { + background-color: @urgent; + text-color: @text-selected; +} +// Adapt rofi theme +element alternate.normal { + background-color: transparent; + text-color: inherit; +} +element alternate.urgent { + background-color: transparent; + text-color: inherit; +} +element alternate.active { + background-color: transparent; + text-color: inherit; +} +element-icon { + background-color: transparent; + text-color: inherit; + size: 36px; + cursor: inherit; +} +element-text { + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; + +} + +/* ---- Message ---- */ +message { + background-color: @background; + border: 0px; +} +textbox { + margin: 10px; + padding: 12px; + border-radius: 10px; + background-color: @active; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: @background; + text-color: @foreground; +} diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi new file mode 100644 index 00000000..2ad7f714 --- /dev/null +++ b/config/rofi/themes/KooL_style-7.rasi @@ -0,0 +1,200 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 7 */ + +/* original design from: https://github.com/adi1090x/rofi */ + +/*****----- Configuration -----*****/ +configuration { + modi: "drun,run,filebrowser,window"; + show-icons: true; + display-drun: "๏†ฒโ€‰"; + display-run: "๏„ โ€‰"; + display-filebrowser: "๏ผโ€‰"; + display-window: "๏‹โ€‰"; + drun-display-format: "{name}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + + +/*****----- Global Properties -----*****/ +* { + background-alt: @color1; + selected: @color12; + active: @color11; + urgent: #8E3596; +} +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/*****----- Main Window -----*****/ +window { + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 800px; + x-offset: 0px; + y-offset: 0px; + + enabled: true; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 20px; + border-color: @selected; + background-color: @background-alt; + cursor: "default"; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 15px; + margin: 40px; + padding: 0px; + border: 0px solid; + border-radius: 0px 0px 0px 0px; + border-color: @selected; + background-color: transparent; + children: [ "inputbar", "message", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 0px; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 100%; + border-color: @selected; + background-color: @background-alt; + text-color: @foreground; + children: [ "entry" ]; +} + +prompt { + enabled: true; + padding: 15px; + border-radius: 100%; + background-color: @selected; + text-color: @background; +} +textbox-prompt-colon { + enabled: true; + expand: false; + str: ":::"; + padding: 15px; + background-color: inherit; + text-color: inherit; +} +entry { + enabled: true; + padding: 15px 0px; + background-color: inherit; + text-color: @foreground; + cursor: text; + placeholder: "Search..."; + placeholder-color: inherit; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 2; + lines: 6; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 15px; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 0px; + border-color: @selected; + background-color: transparent; + text-color: @foreground; + cursor: "default"; +} +scrollbar { + handle-width: 5px ; + handle-color: @selected; + border-radius: 0px; + background-color: @background-alt; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 10px; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 0px; + border-color: @selected; + background-color: transparent; + text-color: @foreground; + orientation: horizontal; + cursor: pointer; +} +element normal.normal { + background-color: transparent; + text-color: @foreground; +} +element selected.normal { + border-radius: 10%; + background-color: @color11; + text-color: @foreground; +} +element-icon { + padding: 0px; + border-radius: 100%; + background-color: transparent; + text-color: inherit; + size: 5%; + cursor: inherit; +} +element-text { + background-color: transparent; + text-color: inherit; + highlight: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; + border: 0px; +} +error-message { + padding: 20px; + border: 2px solid; + border-radius: 20px; + border-color: @active; + background-color: @background; + text-color: @foreground; +} +textbox { + padding: 10px; + border-radius: 20px; + background-color: @selected; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; + highlight: none; +} diff --git a/config/rofi/themes/KooL_style-8.rasi b/config/rofi/themes/KooL_style-8.rasi new file mode 100644 index 00000000..5d24a2ed --- /dev/null +++ b/config/rofi/themes/KooL_style-8.rasi @@ -0,0 +1,243 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 8 */ + + +/* ---- Configuration ---- */ +configuration { + modi: "drun,filebrowser,window,run"; + show-icons: true; + display-drun: "๏†ฒโ€‰ apps"; + display-run: "๏„ โ€‰ term"; + display-filebrowser: " ๏ผโ€‰ file"; + display-window: " ๏‹โ€‰ window"; + drun-display-format: "{name}"; + window-format: "{w} ยท {c} ยท {t}"; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/* ---- Global Properties ---- */ +* { + + border-width: 2px; + border-radius: 12px; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/* ---- Window ---- */ +window { + width: 50%; + transparency: "real"; + fullscreen: false; + enabled: true; + cursor: "default"; + spacing: 0em; + padding: 0em; + border: @border-width; + border-color: @color12; + border-radius: @border-radius; + background-color: @background; +} + +mainbox { + enabled: true; + spacing: 0em; + padding: 0em; + orientation: vertical; + children: [ "inputbar" , "mode-switcher", "message", "listbox" ]; + background-color: transparent; +} + + +/* ---- Inputbar ---- */ +inputbar { + enabled: true; + spacing: 0em; + padding: 4em; + children: [ "textbox-prompt-colon", "entry" ]; + background-color: transparent; + background-image: url("~/.config/rofi/.current_wallpaper", width); +} + +textbox-prompt-colon { + enabled: true; + expand: false; + str: " โžก๏ธ"; + padding: 1em 0.2em 0em 0em; + text-color: @foreground; + border-radius: 2em 0em 0em 2em; + background-color: @background; +} + +entry { + enabled: true; + border-radius: 0em 2em 2em 0em; + spacing: 1em; + padding: 1em; + background-color: @background; + text-color: @foreground; + cursor: text; + placeholder: " Search"; + placeholder-color: inherit; +} + +/* ---- Listbox ---- */ +listbox { + padding: 0em; + spacing: 0em; + orientation: horizontal; + children: [ "listview" ]; + background-color: @background; +} + +/* ---- Listview ---- */ +listview { + padding: 1.5em; + spacing: 0.5em; + enabled: true; + columns: 2; + lines: 4; + cycle: true; + dynamic: true; + scrollbar: true; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + cursor: "default"; + background-color: transparent; +} + + +/* ---- Mode Switcher ---- */ +mode-switcher { + orientation: horizontal; + width: 2em; + enabled: true; + padding: 1em; + spacing: 1em; + background-color: transparent; +} + +button { + cursor: pointer; + border-radius: 2em; + background-color: @background; + text-color: @foreground; +} + +button selected { + background-color: @color12; + text-color: @foreground; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: @border-width; + border-color: @color11; + handle-color: @color12; + handle-width: 10px ; + padding: 0; +} + + +/* ---- Elements ---- */ +element { + enabled: true; + spacing: 0em; + padding: 0.5em; + cursor: pointer; + background-color: transparent; + text-color: @foreground; +} + +element selected.normal { + background-color: @color11; + text-color: @foreground; + border-radius: 1.5em; +} + +element normal.normal { + background-color: inherit; + text-color: @foreground; +} + +element normal.urgent { + background-color: inherit; + text-color: @foreground; +} + +element normal.active { + background-color: inherit; + text-color: @foreground; +} + +element selected.urgent { + background-color: inherit; + text-color: @foreground; +} + +element selected.active { + background-color: inherit; + text-color: @foreground; +} + +element alternate.normal { + background-color: inherit; + text-color: @foreground; +} + +element alternate.urgent { + background-color: inherit; + text-color: @foreground; +} + +element alternate.active { + background-color: inherit; + text-color: @foreground; +} + +element-icon { + size: 2em; + cursor: inherit; + background-color: transparent; + text-color: inherit; +} + +element-text { + vertical-align: 0.5; + horizontal-align: 0.0; + cursor: inherit; + background-color: transparent; + text-color: inherit; +} + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + margin: 12px; + padding: 12px; + border-radius: @border-radius; + background-color: @color12; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 0px; + border-radius: @border-radius; + background-color: @background; + text-color: @foreground; +} diff --git a/config/rofi/themes/KooL_style-9.rasi b/config/rofi/themes/KooL_style-9.rasi new file mode 100644 index 00000000..7c49d929 --- /dev/null +++ b/config/rofi/themes/KooL_style-9.rasi @@ -0,0 +1,212 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* KooL Hyprland Rofi Style 9 */ +/* Modified version of Rofi Config which was submitted by https://github.com/lonerOrz via Discord */ + +/* Integrating Wallust and More tweaks */ + + +configuration { + show-icons: true; + display-drun: "๏‘„"; + drun-display-format: "{icon} {name}"; + disable-history: false; + click-to-exit: true; + location: 0; + dpi: 1; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/* ---- Load wallust colors ---- */ +@theme "~/.config/rofi/wallust/colors-rofi.rasi" + +/*****----- Global Properties -----*****/ +* { + BG: @background; + BGA: @color11; + FG: @foreground; + FGA: #F28FADff; + BDR: @color12; + SEL: #1E1E2Eff; + UGT: #F28FADff; + IMG: #FAE3B0ff; + OFF: #575268ff; + ON: #ABE9B3ff; +} + +/*****-- Elements Font Size -----*****/ +element-text { + font: "JetBrainsMono Nerd Font SemiBold 12"; +} + +/* ---- Window ---- */ +window { + transparency: "real"; + background-color: @BG; + text-color: @FG; + border: 2px; + border-color: @BDR; + border-radius: 10px; + width: 30%; + anchor: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 8px; + background-color: @BG; + text-color: @IMG; +} + +textbox-prompt-colon { + expand: false; + str: "๏€‚"; + border-radius: 100%; + background-color: @SEL; + text-color: @FG; + padding: 8px 12px 8px 12px; +} + +/* ---- Entry input ---- */ +entry { + background-color: @BG; + text-color: @FG; + placeholder-color: @FG; + expand: true; + horizontal-align: 0; + placeholder: " Search..."; + blink: true; + border: 0px 0px 2px 0px; + border-color: @BDR; + border-radius: 10px; + padding: 8px; +} + +inputbar { + children: [ textbox-prompt-colon, entry ]; + background-color: @BG; + text-color: @FG; + expand: false; + border: 0px 0px 0px 0px; + border-radius: 0px; + border-color: @BDR; + margin: 0px 0px 0px 0px; + padding: 0px; + position: center; +} + +case-indicator { + background-color: @BG; + text-color: @FG; + spacing: 0; +} + +/* ---- Listview ---- */ +listview { + background-color: @BG; + columns: 1; + lines: 7; + spacing: 4px; + cycle: true; + dynamic: true; + layout: vertical; + scrollbar: true; +} + +mainbox { + background-color: @BG; + children: [ inputbar, listview ]; + spacing: 15px; + padding: 15px; +} + +/* ---- Scrollbar ---- */ +scrollbar { + border: 1px; + border-radius: 10px; + border-color: @color12; + handle-color: @color11; + handle-width: 10px ; + padding: 0; +} + +/* ---- Elements ---- */ +element { + background-color: @BG; + text-color: @FG; + orientation: horizontal; + border-radius: 4px; + padding: 6px 6px 6px 6px; +} + +element-icon { + background-color: inherit; + text-color: inherit; + horizontal-align: 0.5; + vertical-align: 0.5; + size: 24px; + border: 0px; +} + +element-text { + background-color: inherit; + text-color: inherit; + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 2px 0px 2px 2px; +} + +element normal.urgent, +element alternate.urgent { + background-color: @UGT; + text-color: @FG; + border-radius: 9px; +} + +element normal.active, +element alternate.active { + background-color: @BGA; + text-color: @FG; +} + +element selected { + background-color: @BGA; + text-color: @SEL; + border: 0px 0px 0px 0px; + border-radius: 10px; + border-color: @BDR; +} + +element selected.urgent { + background-color: @UGT; + text-color: @FG; +} + +element selected.active { + background-color: @BGA; + color: @FG; +} + +/* ---- Message ---- */ +message { + background-color: transparent; + border: 0px; +} +textbox { + padding: 12px; + border-radius: 10px; + background-color: @BDR; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 12px; + border-radius: 20px; + background-color: @background; + text-color: @foreground; +} \ No newline at end of file diff --git a/copy.sh b/copy.sh index 26d2fef6..bd06b3a9 100755 --- a/copy.sh +++ b/copy.sh @@ -302,10 +302,10 @@ if [ "$resolution" == "< 1440p" ]; then mv config/hypr/hyprlock-1080p.conf config/hypr/hyprlock.conf # rofi fonts reduction - themes_dir="assets/rofi/themes" + themes_dir="config/rofi/themes" config_file="config/rofi/config.rasi" - # Change rofi font size in ~/.local/share/rofi/themes/ + # Change rofi font size find "$themes_dir" -type f | while read -r file; do if grep -Pzoq 'element-text {\n font: "JetBrainsMono Nerd Font SemiBold 12";\n}' "$file"; then sed -i 's/font: "JetBrainsMono Nerd Font SemiBold 12"/font: "JetBrainsMono Nerd Font SemiBold 11"/' "$file" @@ -638,21 +638,22 @@ fi printf "\n%.0s" {1..1} -## Rofi Additional themes -source_DIR="assets/rofi/themes" +# Define the target directory for rofi themes rofi_DIR="$HOME/.local/share/rofi/themes" -echo -e "${NOTE} copying additional rofi themes into ${YELLOW}$rofi_DIR${RESET}... " - if [ ! -d "$rofi_DIR" ]; then - echo "${INFO}Directory $rofi_DIR does not exist. Creating it now..." | tee -a "$LOG" mkdir -p "$rofi_DIR" fi - -# Copy the rofi themes from assets -cp -r "$source_DIR"/* "$rofi_DIR" - -echo "${OK}rofi themes from ${YELLOW}$source_DIR${RESET} have been copied to ${MAGENTA}$rofi_DIR${RESET}" | tee -a "$LOG" +if [ -d "$HOME/.config/rofi/themes" ]; then + if [ -z "$(ls -A $HOME/.config/rofi/themes)" ]; then + echo '/* Default Rofi theme */' > "$HOME/.config/rofi/themes/default.rasi" + fi + ln -snf ~/.config/rofi/themes/* ~/.local/share/rofi/themes/ + # Delete the dummy file if it was created + if [ -f "$HOME/.config/rofi/themes/default.rasi" ]; then + rm "$HOME/.config/rofi/themes/default.rasi" + fi +fi printf "\n%.0s" {1..1} -- cgit v1.2.3 From b478eef5f63d237eda06256bd4508c545bc6bcbe Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 15 Feb 2025 12:45:34 +0900 Subject: updated keybinds search & rofi theme selector scripts --- config/hypr/scripts/KeyBinds.sh | 40 ++++++------ config/hypr/scripts/RofiThemeSelector-modified.sh | 75 ++++++++++++----------- config/hypr/scripts/RofiThemeSelector.sh | 4 +- 3 files changed, 63 insertions(+), 56 deletions(-) (limited to 'config') diff --git a/config/hypr/scripts/KeyBinds.sh b/config/hypr/scripts/KeyBinds.sh index 639dd3a1..324a9d00 100755 --- a/config/hypr/scripts/KeyBinds.sh +++ b/config/hypr/scripts/KeyBinds.sh @@ -1,36 +1,40 @@ #!/bin/bash # /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ ## -# Searchable enabled keybinds using rofi +# searchable enabled keybinds using rofi -# Kill yad to not interfere with this binds +# kill yad to not interfere with this binds pkill yad || true -# Check if rofi is already running +# check if rofi is already running if pidof rofi > /dev/null; then pkill rofi fi -# Define the config files -KEYBINDS_CONF="$HOME/.config/hypr/configs/Keybinds.conf" -USER_KEYBINDS_CONF="$HOME/.config/hypr/UserConfigs/UserKeybinds.conf" -LAPTOP_CONF="$HOME/.config/hypr/UserConfigs/Laptops.conf" +# define the config files +keybinds_conf="$HOME/.config/hypr/configs/Keybinds.conf" +user_keybinds_conf="$HOME/.config/hypr/UserConfigs/UserKeybinds.conf" +laptop_conf="$HOME/.config/hypr/UserConfigs/Laptops.conf" rofi_theme="$HOME/.config/rofi/config-keybinds.rasi" msg='โ˜ฃ๏ธ NOTE โ˜ฃ๏ธ: Clicking with Mouse or Pressing ENTER will have NO function' -# Combine the contents of the keybinds files and filter for keybinds -KEYBINDS=$(cat "$KEYBINDS_CONF" "$USER_KEYBINDS_CONF" | grep -E '^bind') +# combine the contents of the keybinds files and filter for keybinds +keybinds=$(cat "$keybinds_conf" "$user_keybinds_conf" | grep -E '^bind') -# Check if Laptop.conf exists and add its keybinds if present -if [[ -f "$LAPTOP_CONF" ]]; then - LAPTOP_BINDS=$(grep -E '^bind' "$LAPTOP_CONF") - KEYBINDS+=$'\n'"$LAPTOP_BINDS" +# check if laptop.conf exists and add its keybinds if present +if [[ -f "$laptop_conf" ]]; then + laptop_binds=$(grep -E '^bind' "$laptop_conf") + keybinds+=$'\n'"$laptop_binds" fi -# Check for any keybinds to display -if [[ -z "$KEYBINDS" ]]; then - echo "No keybinds found." +# check for any keybinds to display +if [[ -z "$keybinds" ]]; then + echo "no keybinds found." exit 1 fi -# Use rofi to display the keybinds -echo "$KEYBINDS" | rofi -dmenu -i -config "$rofi_theme" -mesg "$msg" +# replace $mainmod with super in the displayed keybinds for rofi +display_keybinds=$(echo "$keybinds" | sed 's/\$mainMod/SUPER/g') + +# use rofi to display the keybinds with the modified content +echo "$display_keybinds" | rofi -dmenu -i -config "$rofi_theme" -mesg "$msg" +s \ No newline at end of file diff --git a/config/hypr/scripts/RofiThemeSelector-modified.sh b/config/hypr/scripts/RofiThemeSelector-modified.sh index e4d476c3..2af75a73 100755 --- a/config/hypr/scripts/RofiThemeSelector-modified.sh +++ b/config/hypr/scripts/RofiThemeSelector-modified.sh @@ -36,7 +36,7 @@ then fi TMP_CONFIG_FILE=$(${MKTEMP}).rasi -rofi_theme_dir="${HOME}/.local/share/rofi/themes" +#rofi_theme_dir="${HOME}/.local/share/rofi/themes" rofi_config_file="${XDG_CONFIG_HOME:-${HOME}/.config}/rofi/config.rasi" ## @@ -50,32 +50,25 @@ declare -a theme_names # Function that tries to find all installed rofi themes. # This fills in #themes array and formats a displayable string #theme_names ## -find_themes() -{ - DIRS="${HOME}/.local/share" - OLDIFS=${IFS} - IFS=: - # Add user dir. - DIRS+=":${XDG_CONFIG_HOME:-${HOME}/.config}" - for p in ${DIRS}; do - p=${p%/} - TD=${p}/rofi/themes - if [ -n "${p}" ] && [ -d "${TD}" ] - then - echo "Checking themes in: ${TD}" - for file in ${TD}/*.rasi - do - if [ -f "${file}" ] - then - themes+=("${file}") - FN=$(basename "${file}") - NAME=${FN%.*} # Extract the file name without extension - theme_names+=("${NAME}") # Only add the base file name +# Find themes in defined directories +find_themes() { + directories=("$HOME/.local/share/rofi/themes" "$HOME/.config/rofi/themes") + + for TD in "${directories[@]}"; do + if [ -d "$TD" ]; then + echo "Checking themes in: $TD" + for file in "$TD"/*.rasi; do + if [ -f "$file" ] && [ ! -L "$file" ]; then + themes+=("$file") + theme_names+=("$(basename "${file%.*}")") + else + echo "Skipping symlink: $file" fi - done + done + else + echo "Directory does not exist: $TD" fi done - IFS=${OLDIFS} } ## @@ -83,16 +76,27 @@ find_themes() ## add_theme_to_config() { local theme_name="$1" - local theme_path="$rofi_theme_dir/$theme_name" - - # if config in $HOME to write as $HOME - if [[ "$theme_path" == $HOME/* ]]; then - theme_path_with_tilde="~${theme_path#$HOME}" + local theme_path + + # Determine the correct path for the theme + if [[ -f "$HOME/.local/share/rofi/themes/$theme_name.rasi" ]]; then + theme_path="$HOME/.local/share/rofi/themes/$theme_name.rasi" + elif [[ -f "$HOME/.config/rofi/themes/$theme_name.rasi" ]]; then + theme_path="$HOME/.config/rofi/themes/$theme_name.rasi" else - theme_path_with_tilde="$theme_path" + echo "Theme not found: $theme_name" + return 1 fi - # If no @theme is in the file, add it + # Resolve symlinks if present + if [[ -L "$theme_path" ]]; then + theme_path=$(readlink -f "$theme_path") + fi + + # Convert path to use ~ for home directory + theme_path_with_tilde="~${theme_path#$HOME}" + + # Add or update @theme line in config if ! grep -q '^\s*@theme' "$rofi_config_file"; then echo -e "\n\n@theme \"$theme_path_with_tilde\"" >> "$rofi_config_file" echo "Added @theme \"$theme_path_with_tilde\" to $rofi_config_file" @@ -102,13 +106,12 @@ add_theme_to_config() { echo "Updated @theme line to $theme_path_with_tilde" fi - # Ensure no more than max # of lines with //@theme lines - max_line="9" + # Limit the number of @theme lines to a maximum of 9 + max_lines=9 total_lines=$(grep -c '^\s*//@theme' "$rofi_config_file") - if [ "$total_lines" -gt "$max_line" ]; then - excess=$((total_lines - max_line)) - # Remove the oldest or the very top //@theme lines + if [ "$total_lines" -gt "$max_lines" ]; then + excess=$((total_lines - max_lines)) for i in $(seq 1 "$excess"); do $SED -i '0,/^\s*\/\/@theme/ { /^\s*\/\/@theme/ {d; q; }}' "$rofi_config_file" done diff --git a/config/hypr/scripts/RofiThemeSelector.sh b/config/hypr/scripts/RofiThemeSelector.sh index cbce04b0..968d1f30 100755 --- a/config/hypr/scripts/RofiThemeSelector.sh +++ b/config/hypr/scripts/RofiThemeSelector.sh @@ -5,7 +5,7 @@ IFS=$'\n\t' # Define directories and variables -rofi_theme_dir="$HOME/.local/share/rofi/themes" +rofi_theme_dir="$HOME/.config/rofi/themes" rofi_config_file="$HOME/.config/rofi/config.rasi" SED=$(which sed) iDIR="$HOME/.config/swaync/images" @@ -25,7 +25,7 @@ menu() { add_theme_to_config() { local theme_name="$1" local theme_path="$rofi_theme_dir/$theme_name" - + # if config in $HOME to write as $HOME if [[ "$theme_path" == $HOME/* ]]; then theme_path_with_tilde="~${theme_path#$HOME}" -- cgit v1.2.3 From 0b00425dc338e739404bd200a1e2078237df71a9 Mon Sep 17 00:00:00 2001 From: installer Date: Sat, 15 Feb 2025 17:41:55 +0900 Subject: Updated rofi stuff --- config/hypr/UserConfigs/ENVariables.conf | 33 ++++++++++++++++------- config/hypr/scripts/Animations.sh | 4 +-- config/hypr/scripts/RofiThemeSelector-modified.sh | 2 +- config/hypr/scripts/RofiThemeSelector.sh | 2 +- config/rofi/config-Animations.rasi | 19 +++++++------ config/rofi/config-edit.rasi | 14 +++++----- config/rofi/config-keybinds.rasi | 1 + config/rofi/config-rofi-Beats.rasi | 10 +++---- config/rofi/config-rofi-theme.rasi | 15 +++++------ config/rofi/config-wallpaper-effect.rasi | 1 + config/rofi/config-waybar-layout.rasi | 17 ++++++------ config/rofi/config-waybar-style.rasi | 15 ++++++----- config/rofi/config-zsh-theme.rasi | 3 +-- config/rofi/config.rasi | 13 +++++---- 14 files changed, 80 insertions(+), 69 deletions(-) (limited to 'config') diff --git a/config/hypr/UserConfigs/ENVariables.conf b/config/hypr/UserConfigs/ENVariables.conf index e5e5ab42..7dde28c4 100644 --- a/config/hypr/UserConfigs/ENVariables.conf +++ b/config/hypr/UserConfigs/ENVariables.conf @@ -4,30 +4,39 @@ # Set your defaults here #env = EDITOR,vim #default editor -#environment-variables -env = CLUTTER_BACKEND,wayland +# environment-variables +# Toolkit Backend Variables env = GDK_BACKEND,wayland,x11 -env = QT_AUTO_SCREEN_SCALE_FACTOR,1 env = QT_QPA_PLATFORM,wayland;xcb -env = QT_QPA_PLATFORMTHEME,qt5ct -env = QT_QPA_PLATFORMTHEME,qt6ct -env = QT_SCALE_FACTOR,1 -env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1 +env = CLUTTER_BACKEND,wayland + +#Run SDL2 applications on Wayland. +#Remove or set to x11 if games that provide older versions of SDL cause compatibility issues +#env = SDL_VIDEODRIVER,wayland + +# xdg Specifications env = XDG_CURRENT_DESKTOP,Hyprland env = XDG_SESSION_DESKTOP,Hyprland env = XDG_SESSION_TYPE,wayland +# QT Variables +env = QT_AUTO_SCREEN_SCALE_FACTOR,1 +env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1 +env = QT_QPA_PLATFORMTHEME,qt5ct +env = QT_QPA_PLATFORMTHEME,qt6ct + # hyprland-qt-support env = QT_QUICK_CONTROLS_STYLE,org.hyprland.style -# xwayland apps scale fix (useful if you are use monitor scaling) +# xwayland apps scale fix (useful if you are use monitor scaling). +# Set same value if you use scaling in Monitors.conf +# 1 is 100% 1.5 is 150% # see https://wiki.hyprland.org/Configuring/XWayland/ -# toolkit-specific scale env = GDK_SCALE,1 +env = QT_SCALE_FACTOR,1 # Bibata-Modern-Ice-Cursor # NOTE! You must have the hyprcursor version to activate this. -# If you installed from 26-Dec-2024 and choose GTK theme, then you have it. # https://wiki.hyprland.org/Hypr-Ecosystem/hyprcursor/ #env = HYPRCURSOR_THEME,Bibata-Modern-Ice #env = HYPRCURSOR_SIZE,24 @@ -41,6 +50,7 @@ env = ELECTRON_OZONE_PLATFORM_HINT,auto # NVIDIA # This is from Hyprland Wiki. Below will be activated nvidia gpu detected # See hyprland wiki https://wiki.hyprland.org/Nvidia/#environment-variables + #env = LIBVA_DRIVER_NAME,nvidia #env = __GLX_VENDOR_LIBRARY_NAME,nvidia #env = NVD_BACKEND,direct @@ -49,9 +59,12 @@ env = ELECTRON_OZONE_PLATFORM_HINT,auto #env = AQ_DRM_DEVICES,/dev/dri/card1 (nvidia) #env = AQ_DRM_DEVICES,/dev/dri/card0 +#env = AQ_NO_ATOMIC,1 #use legacy DRM interface + # additional ENV's for nvidia. Caution, activate with care #env = GBM_BACKEND,nvidia-drm +#env = __GL_GSYNC_ALLOWED,1 #adaptive Vsync #env = __NV_PRIME_RENDER_OFFLOAD,1 #env = __VK_LAYER_NV_optimus,NVIDIA_only #env = WLR_DRM_NO_ATOMIC,1 diff --git a/config/hypr/scripts/Animations.sh b/config/hypr/scripts/Animations.sh index 62c32257..4f49d47a 100755 --- a/config/hypr/scripts/Animations.sh +++ b/config/hypr/scripts/Animations.sh @@ -13,12 +13,12 @@ SCRIPTSDIR="$HOME/.config/hypr/scripts" animations_dir="$HOME/.config/hypr/animations" UserConfigs="$HOME/.config/hypr/UserConfigs" rofi_theme="~/.config/rofi/config-Animations.rasi" - +msg='โ—NOTE:โ— This will copy animations into UserAnimations.conf' # list of animation files, sorted alphabetically with numbers first animations_list=$(find -L "$animations_dir" -maxdepth 1 -type f | sed 's/.*\///' | sed 's/\.conf$//' | sort -V) # Rofi Menu -chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config $rofi_theme) +chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config $rofi_theme -mesg "$msg") # Check if a file was selected if [[ -n "$chosen_file" ]]; then diff --git a/config/hypr/scripts/RofiThemeSelector-modified.sh b/config/hypr/scripts/RofiThemeSelector-modified.sh index 2af75a73..2cfc2d24 100755 --- a/config/hypr/scripts/RofiThemeSelector-modified.sh +++ b/config/hypr/scripts/RofiThemeSelector-modified.sh @@ -219,7 +219,7 @@ then # Send notification with the selected theme name selection="${theme_names[${SELECTED}]}" if [ -n "$NOTIFY_SEND" ]; then - notify-send -u low -i "$iDIR/ja.png" "Rofi Theme" "applied: $selection" + notify-send -u low -i "$iDIR/ja.png" "Rofi Theme applied:" "$selection" fi fi diff --git a/config/hypr/scripts/RofiThemeSelector.sh b/config/hypr/scripts/RofiThemeSelector.sh index 968d1f30..2e840ea1 100755 --- a/config/hypr/scripts/RofiThemeSelector.sh +++ b/config/hypr/scripts/RofiThemeSelector.sh @@ -65,7 +65,7 @@ main() { exit 0 fi add_theme_to_config "$choice" - notify-send -i "$iDIR/ja.png" -u low 'Rofi Theme' "$choice applied." + notify-send -i "$iDIR/ja.png" -u low 'Rofi Theme applied:' "$choice" } if pgrep -x "rofi" >/dev/null; then diff --git a/config/rofi/config-Animations.rasi b/config/rofi/config-Animations.rasi index 8aa22abf..7c458b09 100644 --- a/config/rofi/config-Animations.rasi +++ b/config/rofi/config-Animations.rasi @@ -6,10 +6,9 @@ /* ---- Mainbox ---- */ mainbox { children: - [ "inputbar", "listview"]; + [ "inputbar", "message", "listview"]; } - /* ---- Window ---- */ window { width: 30%; @@ -23,18 +22,18 @@ entry { /* ---- Listview ---- */ listview { - columns: 2; - lines: 9; - fixed-height: false; - margin: 10px; + columns: 2; + lines: 9; + fixed-height: false; + margin: 10px; } /* ---- Elements ---- */ element-icon { - size: 0%; + size: 0%; } element-text { - horizontal-align: 0.0; - vertical-align: 0.0; - margin: 5px 30px 5px 30px; + horizontal-align: 0.0; + vertical-align: 0.0; + margin: 5px 30px 5px 30px; } diff --git a/config/rofi/config-edit.rasi b/config/rofi/config-edit.rasi index 568de812..60d18e34 100644 --- a/config/rofi/config-edit.rasi +++ b/config/rofi/config-edit.rasi @@ -17,15 +17,15 @@ configuration { /* ---- Window ---- */ window { - width: 45%; + width: 45%; } /* ---- Listview ---- */ listview { - columns: 2; - lines: 6; - fixed-height: false; + columns: 2; + lines: 6; + fixed-height: false; } /* ---- Entry input ---- */ @@ -41,9 +41,9 @@ element { } element-icon { - size: 0%; + size: 0%; } element-text { - horizontal-align: 0.0; - margin: 5px 30px 5px 30px; + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; } \ No newline at end of file diff --git a/config/rofi/config-keybinds.rasi b/config/rofi/config-keybinds.rasi index ccc8b4d7..2b19c271 100644 --- a/config/rofi/config-keybinds.rasi +++ b/config/rofi/config-keybinds.rasi @@ -21,6 +21,7 @@ listview { columns: 2; lines: 12; fixed-height: false; + scrollbar: true; } window { diff --git a/config/rofi/config-rofi-Beats.rasi b/config/rofi/config-rofi-Beats.rasi index b84b4260..b8121286 100644 --- a/config/rofi/config-rofi-Beats.rasi +++ b/config/rofi/config-rofi-Beats.rasi @@ -5,7 +5,7 @@ /* ---- Window ---- */ window { - width: 45%; + width: 45%; } /* ---- Mainbox ---- */ @@ -21,10 +21,10 @@ entry { /* ---- Listview ---- */ listview { - columns: 2; - lines: 8; - fixed-height: false; - margin: 10px; + columns: 2; + lines: 8; + fixed-height: false; + margin: 10px; } /* ---- Elements ---- */ diff --git a/config/rofi/config-rofi-theme.rasi b/config/rofi/config-rofi-theme.rasi index 14f1f971..d660f1f9 100644 --- a/config/rofi/config-rofi-theme.rasi +++ b/config/rofi/config-rofi-theme.rasi @@ -3,10 +3,9 @@ @import "~/.config/rofi/config.rasi" - /* ---- Window ---- */ window { - width: 45%; + width: 45%; } /* ---- Mainbox ---- */ @@ -17,10 +16,10 @@ mainbox { /* ---- Listview ---- */ listview { - columns: 2; - lines: 8; - fixed-height: false; - scrollbar: true; + columns: 2; + lines: 8; + fixed-height: false; + scrollbar: true; } /* ---- Entry input ---- */ @@ -39,7 +38,7 @@ element-icon { size: 0%; } element-text { - horizontal-align: 0.0; - margin: 5px 30px 5px 30px; + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; } diff --git a/config/rofi/config-wallpaper-effect.rasi b/config/rofi/config-wallpaper-effect.rasi index 0fb534e3..de74747a 100644 --- a/config/rofi/config-wallpaper-effect.rasi +++ b/config/rofi/config-wallpaper-effect.rasi @@ -26,6 +26,7 @@ listview { columns: 2; lines: 8; fixed-height: false; + scrollbar: true; } /* ---- Inputbar ---- */ diff --git a/config/rofi/config-waybar-layout.rasi b/config/rofi/config-waybar-layout.rasi index cc24a170..c179a362 100644 --- a/config/rofi/config-waybar-layout.rasi +++ b/config/rofi/config-waybar-layout.rasi @@ -3,8 +3,6 @@ @import "~/.config/rofi/config.rasi" - - /* ---- Configuration ---- */ configuration { modi: "drun"; @@ -24,17 +22,18 @@ entry { /* ---- Listview ---- */ listview { - columns: 2; - lines: 9; - fixed-height: false; - margin: 10px; + columns: 2; + lines: 9; + fixed-height: false; + margin: 10px; + scrollbar: true; } /* ---- Elements ---- */ element-icon { - size: 0%; + size: 0%; } element-text { - horizontal-align: 0.0; - margin: 5px 30px 5px 30px; + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; } diff --git a/config/rofi/config-waybar-style.rasi b/config/rofi/config-waybar-style.rasi index bfb3829a..12c5a757 100644 --- a/config/rofi/config-waybar-style.rasi +++ b/config/rofi/config-waybar-style.rasi @@ -23,17 +23,18 @@ entry { /* ---- Listview ---- */ listview { - columns: 2; - lines: 9; - fixed-height: false; - margin: 10px; + columns: 2; + lines: 9; + fixed-height: false; + margin: 10px; + scrollbar: true; } /* ---- Elements ---- */ element-icon { - size: 0%; + size: 0%; } element-text { - horizontal-align: 0.0; - margin: 5px 30px 5px 30px; + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; } diff --git a/config/rofi/config-zsh-theme.rasi b/config/rofi/config-zsh-theme.rasi index c2293b4e..1b0b58f7 100644 --- a/config/rofi/config-zsh-theme.rasi +++ b/config/rofi/config-zsh-theme.rasi @@ -15,10 +15,9 @@ window { } mainbox { - children: [ "inputbar" , "listview" ]; + children: [ "inputbar" , "listview" ]; } - /* ---- Listbox ---- */ listbox { border-radius: 12px; diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi index 586de76e..cda85e8a 100644 --- a/config/rofi/config.rasi +++ b/config/rofi/config.rasi @@ -1,25 +1,24 @@ /* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ /* Ja KooLit - Default -* All main themes or configs are located in ~/.local/share/rofi/themes +* All main themes or configs are located in ~/.config/rofi/themes/ * If you want to edit the config, that is where you should edit NOT here -* To load a new theme, manually edit the file path below or choose desired theme via rofi theme selector +* To load a new theme, manually edit the file path below or choose desired theme via rofi theme selector (choose via app menu) * Alternative way to Load (preferred) own cooked by Ja -* SUPER CTRL R - Choose style +* SUPER CTRL R - Choose style & SUPER CTRL SHIFT R * TIPS * If you have edited a config, rename it with a unique name. During update, the contents of -* ~/.local/share/rofi/themes will be replaced. However, it wont overwrite your own config if you -* renamed with your own unique file name */ +* ~/.config/rofi/themes/ will be replaced. /* ---- Configuration Fonts ---- */ configuration { font: "JetBrainsMono Nerd Font SemiBold 13"; } -/* note: Element-text font and size, edit configs in ~/.local/share/rofi/themes */ +/* note: Element-text font and size, edit configs in ~/.config/rofi/themes/ */ -@theme "~/.local/share/rofi/themes/KooL_style-2-Dark.rasi" +@theme "~/.config/rofi/themes/KooL_style-2-Dark.rasi" -- cgit v1.2.3 From 4e0655769c6585b766ea93d56f72469faabfceb4 Mon Sep 17 00:00:00 2001 From: installer Date: Sat, 15 Feb 2025 21:17:22 +0900 Subject: minor update --- config/hypr/scripts/KooLsDotsUpdate.sh | 8 ++++---- config/hypr/wallpaper_effects/.wallpaper_modified | Bin 1885472 -> 442928 bytes config/rofi/config-clipboard.rasi | 4 ++-- config/rofi/config-wallpaper-effect.rasi | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'config') diff --git a/config/hypr/scripts/KooLsDotsUpdate.sh b/config/hypr/scripts/KooLsDotsUpdate.sh index 067f42ae..d0d454e6 100755 --- a/config/hypr/scripts/KooLsDotsUpdate.sh +++ b/config/hypr/scripts/KooLsDotsUpdate.sh @@ -28,20 +28,20 @@ fi # Comparing local and github versions if [ "$(echo -e "$github_version\n$local_version" | sort -V | head -n 1)" = "$github_version" ]; then - notify-send -i $iDIR "KooL Hyprland" "No update available" + notify-send -i $iDIR "KooL Hyprland:" "No update available" exit 0 else # update available notify_cmd_base="notify-send -t 10000 -A action1=Update -A action2=NO -h string:x-canonical-private-synchronous:shot-notify" notify_cmd_shot="${notify_cmd_base} -i $iDIR" - response=$($notify_cmd_shot "KooL Hyprland" "Update available! Update now?") + response=$($notify_cmd_shot "KooL Hyprland:" "Update available! Update now?") case "$response" in "action1") if [ -d $KooL_Dots_DIR ]; then if ! command -v kitty &> /dev/null; then - notify-send -i $iDIR "Need Kitty" "Kitty terminal not found. Please install Kitty terminal." + notify-send -i $iDIR "Need Kitty:" "Kitty terminal not found. Please install Kitty terminal." exit 1 fi kitty -e bash -c " @@ -52,7 +52,7 @@ else " else if ! command -v kitty &> /dev/null; then - notify-send -i $iDIR "Need Kitty" "Kitty terminal not found. Please install Kitty terminal." + notify-send -i $iDIR "Need Kitty:" "Kitty terminal not found. Please install Kitty terminal." exit 1 fi kitty -e bash -c " diff --git a/config/hypr/wallpaper_effects/.wallpaper_modified b/config/hypr/wallpaper_effects/.wallpaper_modified index d85a5b8d..825086e1 100644 Binary files a/config/hypr/wallpaper_effects/.wallpaper_modified and b/config/hypr/wallpaper_effects/.wallpaper_modified differ diff --git a/config/rofi/config-clipboard.rasi b/config/rofi/config-clipboard.rasi index 01596ee0..4b6ba384 100644 --- a/config/rofi/config-clipboard.rasi +++ b/config/rofi/config-clipboard.rasi @@ -5,7 +5,7 @@ /* ---- Window ---- */ window { - width: 45%; + width: 50%; } /* ---- Mainbox ---- */ @@ -16,7 +16,7 @@ mainbox { /* ---- Entry ---- */ entry { - width: 42%; + width: 47%; placeholder: " ๐Ÿ“‹ Search Clipboard "; } diff --git a/config/rofi/config-wallpaper-effect.rasi b/config/rofi/config-wallpaper-effect.rasi index de74747a..6a4dbfe5 100644 --- a/config/rofi/config-wallpaper-effect.rasi +++ b/config/rofi/config-wallpaper-effect.rasi @@ -12,13 +12,13 @@ mainbox { /* ---- Entry ---- */ entry { - width: 20%; + width: 32%; placeholder: " ๐Ÿ™๏ธ Search / Choose desired wallpaper effect"; } /* ---- Window ---- */ window { - width: 24%; + width: 35%; } /* ---- Listview ---- */ -- cgit v1.2.3 From 33ee924887ec706914a1e14487a72b0630f9a4f2 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 15 Feb 2025 22:14:27 +0900 Subject: dang --- config/rofi/config.rasi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config') diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi index cda85e8a..b52ef00e 100644 --- a/config/rofi/config.rasi +++ b/config/rofi/config.rasi @@ -11,7 +11,7 @@ * TIPS * If you have edited a config, rename it with a unique name. During update, the contents of -* ~/.config/rofi/themes/ will be replaced. +* ~/.config/rofi/themes/ will be replaced. */ /* ---- Configuration Fonts ---- */ configuration { -- cgit v1.2.3 From 8e0063533165c238633ad9f47d69c65c055ae594 Mon Sep 17 00:00:00 2001 From: installer Date: Sun, 16 Feb 2025 01:43:27 +0900 Subject: update --- config/hypr/configs/Keybinds.conf | 72 +++--- config/waybar/style/[Wallust] Chroma Tally V2.css | 272 ++++++++++++++++++++++ 2 files changed, 308 insertions(+), 36 deletions(-) create mode 100644 config/waybar/style/[Wallust] Chroma Tally V2.css (limited to 'config') diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index d4205abf..35e1400c 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -93,44 +93,44 @@ bind = $mainMod, U, togglespecialworkspace, # The following mappings use the key codes to better support various keyboard layouts # 1 is code:10, 2 is code 11, etc # Switch workspaces with mainMod + [0-9] -bind = $mainMod, code:10, workspace, 1 -bind = $mainMod, code:11, workspace, 2 -bind = $mainMod, code:12, workspace, 3 -bind = $mainMod, code:13, workspace, 4 -bind = $mainMod, code:14, workspace, 5 -bind = $mainMod, code:15, workspace, 6 -bind = $mainMod, code:16, workspace, 7 -bind = $mainMod, code:17, workspace, 8 -bind = $mainMod, code:18, workspace, 9 -bind = $mainMod, code:19, workspace, 10 +bind = $mainMod, code:10, workspace, 1 # NOTE: code:10 = key 1 +bind = $mainMod, code:11, workspace, 2 # NOTE: code:11 = key 2 +bind = $mainMod, code:12, workspace, 3 # NOTE: code:12 = key 3 +bind = $mainMod, code:13, workspace, 4 # NOTE: code:13 = key 4 +bind = $mainMod, code:14, workspace, 5 # NOTE: code:14 = key 5 +bind = $mainMod, code:15, workspace, 6 # NOTE: code:15 = key 6 +bind = $mainMod, code:16, workspace, 7 # NOTE: code:16 = key 7 +bind = $mainMod, code:17, workspace, 8 # NOTE: code:17 = key 8 +bind = $mainMod, code:18, workspace, 9 # NOTE: code:18 = key 9 +bind = $mainMod, code:19, workspace, 10 # NOTE: code:19 = key 0 # Move active window and follow to workspace mainMod + SHIFT [0-9] -bind = $mainMod SHIFT, code:10, movetoworkspace, 1 -bind = $mainMod SHIFT, code:11, movetoworkspace, 2 -bind = $mainMod SHIFT, code:12, movetoworkspace, 3 -bind = $mainMod SHIFT, code:13, movetoworkspace, 4 -bind = $mainMod SHIFT, code:14, movetoworkspace, 5 -bind = $mainMod SHIFT, code:15, movetoworkspace, 6 -bind = $mainMod SHIFT, code:16, movetoworkspace, 7 -bind = $mainMod SHIFT, code:17, movetoworkspace, 8 -bind = $mainMod SHIFT, code:18, movetoworkspace, 9 -bind = $mainMod SHIFT, code:19, movetoworkspace, 10 -bind = $mainMod SHIFT, bracketleft, movetoworkspace, -1 # brackets [ or ] -bind = $mainMod SHIFT, bracketright, movetoworkspace, +1 +bind = $mainMod SHIFT, code:10, movetoworkspace, 1 # NOTE: code:10 = key 1 +bind = $mainMod SHIFT, code:11, movetoworkspace, 2 # NOTE: code:11 = key 2 +bind = $mainMod SHIFT, code:12, movetoworkspace, 3 # NOTE: code:12 = key 3 +bind = $mainMod SHIFT, code:13, movetoworkspace, 4 # NOTE: code:13 = key 4 +bind = $mainMod SHIFT, code:14, movetoworkspace, 5 # NOTE: code:14 = key 5 +bind = $mainMod SHIFT, code:15, movetoworkspace, 6 # NOTE: code:15 = key 6 +bind = $mainMod SHIFT, code:16, movetoworkspace, 7 # NOTE: code:16 = key 7 +bind = $mainMod SHIFT, code:17, movetoworkspace, 8 # NOTE: code:17 = key 8 +bind = $mainMod SHIFT, code:18, movetoworkspace, 9 # NOTE: code:18 = key 9 +bind = $mainMod SHIFT, code:19, movetoworkspace, 10 # NOTE: code:19 = key 0 +bind = $mainMod SHIFT, bracketleft, movetoworkspace, -1 # brackets [ +bind = $mainMod SHIFT, bracketright, movetoworkspace, +1 # brackets ] # Move active window to a workspace silently mainMod + CTRL [0-9] -bind = $mainMod CTRL, code:10, movetoworkspacesilent, 1 -bind = $mainMod CTRL, code:11, movetoworkspacesilent, 2 -bind = $mainMod CTRL, code:12, movetoworkspacesilent, 3 -bind = $mainMod CTRL, code:13, movetoworkspacesilent, 4 -bind = $mainMod CTRL, code:14, movetoworkspacesilent, 5 -bind = $mainMod CTRL, code:15, movetoworkspacesilent, 6 -bind = $mainMod CTRL, code:16, movetoworkspacesilent, 7 -bind = $mainMod CTRL, code:17, movetoworkspacesilent, 8 -bind = $mainMod CTRL, code:18, movetoworkspacesilent, 9 -bind = $mainMod CTRL, code:19, movetoworkspacesilent, 10 -bind = $mainMod CTRL, bracketleft, movetoworkspacesilent, -1 # brackets [ or ] -bind = $mainMod CTRL, bracketright, movetoworkspacesilent, +1 +bind = $mainMod CTRL, code:10, movetoworkspacesilent, 1 # NOTE: code:10 = key 1 +bind = $mainMod CTRL, code:11, movetoworkspacesilent, 2 # NOTE: code:11 = key 2 +bind = $mainMod CTRL, code:12, movetoworkspacesilent, 3 # NOTE: code:12 = key 3 +bind = $mainMod CTRL, code:13, movetoworkspacesilent, 4 # NOTE: code:13 = key 4 +bind = $mainMod CTRL, code:14, movetoworkspacesilent, 5 # NOTE: code:14 = key 5 +bind = $mainMod CTRL, code:15, movetoworkspacesilent, 6 # NOTE: code:15 = key 6 +bind = $mainMod CTRL, code:16, movetoworkspacesilent, 7 # NOTE: code:16 = key 7 +bind = $mainMod CTRL, code:17, movetoworkspacesilent, 8 # NOTE: code:17 = key 8 +bind = $mainMod CTRL, code:18, movetoworkspacesilent, 9 # NOTE: code:18 = key 9 +bind = $mainMod CTRL, code:19, movetoworkspacesilent, 10 # NOTE: code:19 = key 0 +bind = $mainMod CTRL, bracketleft, movetoworkspacesilent, -1 # brackets [ +bind = $mainMod CTRL, bracketright, movetoworkspacesilent, +1 # brackets ] # Scroll through existing workspaces with mainMod + scroll bind = $mainMod, mouse_down, workspace, e+1 @@ -139,5 +139,5 @@ bind = $mainMod, period, workspace, e+1 bind = $mainMod, comma, workspace, e-1 # Move/resize windows with mainMod + LMB/RMB and dragging -bindm = $mainMod, mouse:272, movewindow -bindm = $mainMod, mouse:273, resizewindow +bindm = $mainMod, mouse:272, movewindow # NOTE: mouse:272 = left click +bindm = $mainMod, mouse:273, resizewindow # NOTE: mouse:272 = right click diff --git a/config/waybar/style/[Wallust] Chroma Tally V2.css b/config/waybar/style/[Wallust] Chroma Tally V2.css new file mode 100644 index 00000000..0f4e1af5 --- /dev/null +++ b/config/waybar/style/[Wallust] Chroma Tally V2.css @@ -0,0 +1,272 @@ +/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */ +/* Wallust - Chroma Tally v2 */ + +/* edited by: https://github.com/prateekshukla1108 */ + +@import '../../.config/waybar/wallust/colors-waybar.css'; + +* { + font-family: "JetBrainsMono Nerd Font"; + font-weight: bold; + min-height: 0; + font-size: 97%; + font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"'; +} + +window#waybar { + background: @color0; /* Dark background */ + border-radius: 12px; + border-bottom: 2px; + border-style: solid; + border-color: @color7; /* Light border */ +} + +#workspaces { + background: transparent; + padding: 2px; + border-radius: 15px; + border: 0px; + font-style: normal; + color: @color7; /* Light text */ +} + +#taskbar button, +#workspaces button { + padding: 0px 5px; + border-radius: 15px; + border: 0px; + color: @color7; /* Light text */ + background: linear-gradient(45deg, @color5, @color6, @color7); /* Lighter gradient */ + opacity: 0.5; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); +} + +#taskbar button.active, +#workspaces button.active { + padding: 0px 5px; + border-radius: 15px; + border: 0px; + color: @color7; /* Light text */ + background: linear-gradient(45deg, @color5, @color6); /* Lighter gradient */ + opacity: 1.0; + min-width: 40px; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); +} + +#workspaces button:hover { + border-radius: 15px; + color: @color7; /* Light text */ + background: linear-gradient(45deg, @color6, @color7); /* Lighter gradient */ + opacity: 0.8; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); +} + +tooltip { + background: @color1; /* Slightly darker tooltip background */ + opacity: 0.8; + border-radius: 6px; + color: @color7; /* Light text */ +} + +#backlight, +#backlight-slider, +#battery, +#bluetooth, +#clock, +#cpu, +#disk, +#idle_inhibitor, +#keyboard-state, +#memory, +#mode, +#mpris, +#network, +#power-profiles-daemon, +#pulseaudio, +#pulseaudio-slider, +#taskbar, +#temperature, +#tray, +#window, +#wireplumber, +#workspaces, +#custom-backlight, +#custom-browser, +#custom-cava_mviz, +#custom-cycle_wall, +#custom-dot_update, +#custom-file_manager, +#custom-keybinds, +#custom-keyboard, +#custom-light_dark, +#custom-lock, +#custom-hint, +#custom-hypridle, +#custom-menu, +#custom-playerctl, +#custom-power_vertical, +#custom-power, +#custom-settings, +#custom-spotify, +#custom-swaync, +#custom-tty, +#custom-updater, +#custom-weather, +#custom-weather.clearNight, +#custom-weather.cloudyFoggyDay, +#custom-weather.cloudyFoggyNight, +#custom-weather.default, +#custom-weather.rainyDay, +#custom-weather.rainyNight, +#custom-weather.severe, +#custom-weather.showyIcyDay, +#custom-weather.snowyIcyNight, +#custom-weather.sunnyDay { + padding-top: 5px; + padding-bottom: 5px; + padding-right: 6px; + padding-left: 6px; + color: @color6; /* Lighter - changed from color5 */ +} + +#clock { + color: @color6; /* Lighter */ +} + +#backlight { + color: @color5; /* Lighter */ +} + +#battery { + color: @color6; /* Lighter */ +} + +#battery.charging { + color: @color7; /* Lightest */ +} + +@keyframes blink { + to { + color: @color4; /* Slightly lighter blink color */ + background-color: @color7; /* Lightest */ + } +} + +#battery.critical:not(.charging) { + background: @color5; /* Lighter background */ + color: @color7; /* Lightest */ + animation-name: blink; + animation-duration: 3.0s; + animation-timing-function: steps(12); + animation-iteration-count: infinite; + animation-direction: alternate; +} + +#cpu { + color: @color6; /* Lighter */ +} + +#disk { + color: @color5; /* Lighter */ +} + +#custom-keyboard, +#memory { + color: @color6; /* Lighter */ +} + +#network.disabled { + color: @color5; /* Lighter */ +} + +#network{ + color: @color6; /* Lighter */ +} + +#network.disconnected { + color: @color5; /* Lighter */ +} + +#pulseaudio { + color: @color7; /* Lightest */ +} + +#pulseaudio.muted { + color: @color5; /* Lighter */ +} + +#custom-light_dark, +#temperature { + color: @color6; /* Lighter */ +} + +#temperature.critical { + color: @color5; /* Lighter */ +} + +#keyboard-state, +#custom-hypridle, +#idle_inhibitor { + color: @color5; /* Lighter */ +} + +/*-----Indicators----*/ +#custom-hypridle.notactive, +#idle_inhibitor.activated { + color: @color4; /* Slightly lighter */ +} + +#tray { +} + +#custom-swaync, +#custom-menu { + color: @color7; /* Lightest */ + padding-left: 8px; +} + +#custom-power{ + color: @color6; /* Lighter */ +} + +#window{ + border-style: hidden; +} + +#custom-lock, +#bluetooth{ + color: @color5; /* Lighter */ +} + +#custom-cava_mviz{ + color: @color7; /* Lightest */ +} + +#custom-weather{ + color: @color5; /* Lighter */ +} + +#backlight-slider slider, +#pulseaudio-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#backlight-slider trough, +#pulseaudio-slider trough { + min-width: 80px; + min-height: 5px; + border-radius: 5px; + background-color: @color2; /* Slightly darker trough */ +} + +#backlight-slider highlight, +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; + background-color: @color6; /* Lighter highlight */ +} -- cgit v1.2.3