diff options
Diffstat (limited to 'dotfiles')
28 files changed, 2722 insertions, 352 deletions
diff --git a/dotfiles/.config/alacritty/alacritty.toml b/dotfiles/.config/alacritty/alacritty.toml index e21168c..93aaf56 100644 --- a/dotfiles/.config/alacritty/alacritty.toml +++ b/dotfiles/.config/alacritty/alacritty.toml @@ -11,7 +11,7 @@ args = ["-i", "Oxygen-Sys-App-Message"] program = "canberra-gtk-play" [font] -size = 9.0 +size = 10.0 [scrolling] multiplier = 10 diff --git a/dotfiles/.config/alacritty/ultramar-dark.toml b/dotfiles/.config/alacritty/ultramar-dark.toml index cd2ac69..37d46b0 100644 --- a/dotfiles/.config/alacritty/ultramar-dark.toml +++ b/dotfiles/.config/alacritty/ultramar-dark.toml @@ -1,5 +1,5 @@ [colors.primary] -background = "#151517" +background = "#0d0906" foreground = "#fcf8e2" [colors.bright] diff --git a/dotfiles/.config/alacritty/ultramar-light.toml b/dotfiles/.config/alacritty/ultramar-light.toml index b93e837..ffea003 100644 --- a/dotfiles/.config/alacritty/ultramar-light.toml +++ b/dotfiles/.config/alacritty/ultramar-light.toml @@ -1,5 +1,5 @@ [colors.primary] -background = "#faf6e5" +background = "#fcf6da" foreground = "#1b1e25" [colors.bright] diff --git a/dotfiles/.config/beets/config.yaml b/dotfiles/.config/beets/config.yaml index f6f2a28..b5eb190 100644 --- a/dotfiles/.config/beets/config.yaml +++ b/dotfiles/.config/beets/config.yaml @@ -1,5 +1,5 @@ directory: "~/music" -plugins: convert fetchart embedart +plugins: musicbrainz convert fetchart embedart convert: auto: no never_convert_lossy_files: yes diff --git a/dotfiles/.config/calcurse/conf b/dotfiles/.config/calcurse/conf new file mode 100644 index 0000000..d1b5f1d --- /dev/null +++ b/dotfiles/.config/calcurse/conf @@ -0,0 +1,33 @@ +appearance.calendarview=monthly +appearance.compactpanels=no +appearance.defaultpanel=todo +appearance.layout=1 +appearance.headerline=yes +appearance.eventseparator=yes +appearance.dayseparator=yes +appearance.emptyline=yes +appearance.emptyday=-- +appearance.notifybar=yes +appearance.sidebarwidth=38 +appearance.theme=cyan on default +appearance.todoview=hide-completed +appearance.headingpos=right-justified +daemon.enable=no +daemon.log=no +format.inputdate=1 +format.notifydate=%a %F +format.notifytime=%T +format.appointmenttime=%H:%M +format.outputdate=%D +format.dayheading=%B %e, %Y +general.autogc=no +general.autosave=yes +general.confirmdelete=yes +general.confirmquit=yes +general.firstdayofweek=monday +general.multipledays=yes +general.periodicsave=0 +general.systemevents=yes +notification.command=printf '\a' +notification.notifyall=flagged-only +notification.warning=300 diff --git a/dotfiles/.config/calcurse/hooks/post-save b/dotfiles/.config/calcurse/hooks/post-save new file mode 100755 index 0000000..d797649 --- /dev/null +++ b/dotfiles/.config/calcurse/hooks/post-save @@ -0,0 +1,34 @@ +#!/bin/sh + +data_dir="$HOME/.calcurse" +config_dir="$HOME/.calcurse" + +if [ ! -d "$data_dir" ]; then + data_dir="${XDG_DATA_HOME:-$HOME/.local/share}/calcurse" + config_dir="${XDG_CONFIG_HOME:-$HOME/.config}/calcurse" +fi + +cd "$data_dir" || exit + +# Do not do anything when synchronizing with a CalDAV server. +[ -f caldav/lock ] && exit + +# Run the CalDAV synchronization script. +if [ -d caldav ] && command -v calcurse-caldav >/dev/null; then + ( + date="$(date +'%b %d %H:%M:%S')" + notify-send "๐
Calcurse" "Saving and syncing with caldav server..." + echo "$date Running calcurse-caldav from the post-save hook..." + timeout 60 calcurse-caldav + rc=$? + if [ $rc -eq 124 ]; then + notify-send "๐
Calcurse" "โ Syncing timed out" + elif [ $rc -gt 0 ]; then + notify-send "๐
Calcurse" "โ Syncing failed (see logs)" + else + notify-send "๐
Calcurse" "Calendar saved and synced" + fi + echo + rm caldav/lock + ) >>caldav/log 2>&1 +fi diff --git a/dotfiles/.config/calcurse/hooks/pre-load b/dotfiles/.config/calcurse/hooks/pre-load new file mode 100755 index 0000000..20787fe --- /dev/null +++ b/dotfiles/.config/calcurse/hooks/pre-load @@ -0,0 +1,28 @@ +#!/bin/sh + +[ -d "$HOME/.calcurse" ] && data_dir="$HOME/.calcurse" || data_dir="${XDG_DATA_HOME:-$HOME/.local/share}/calcurse" + +cd "$data_dir" || exit + +# Do not do anything when synchronizing with a CalDAV server. +[ -f caldav/lock ] && exit + +# Run the CalDAV synchronization script. +if [ -d caldav ] && command -v calcurse-caldav >/dev/null; then + ( + date="$(date +'%b %d %H:%M:%S')" + notify-send "๐
Calcurse" "Loading and syncing with caldav server..." + echo "$date Running calcurse-caldav from the pre-load hook..." + timeout 60 calcurse-caldav + rc=$? + if [ $rc -eq 124 ]; then + notify-send "๐
Calcurse" "โ Syncing timed out" + elif [ $rc -gt 0 ]; then + notify-send "๐
Calcurse" "โ Syncing failed (see logs)" + else + notify-send "๐
Calcurse" "Calendar synced" + fi + echo + rm caldav/lock + ) >>caldav/log 2>&1 +fi diff --git a/dotfiles/.config/calcurse/keys b/dotfiles/.config/calcurse/keys new file mode 100644 index 0000000..3304bbb --- /dev/null +++ b/dotfiles/.config/calcurse/keys @@ -0,0 +1,56 @@ +# +# Calcurse keys configuration file +# +# In this file the keybindings used by Calcurse are defined. +# It is generated automatically by Calcurse and is maintained +# via the key configuration menu of the interactive user +# interface. It should not be edited directly. + +generic-cancel ESC +generic-select SPC +generic-credits @ +generic-help ? +generic-quit q Q +generic-save s S ^S +generic-reload R +generic-copy c +generic-paste p ^V +generic-change-view TAB +generic-prev-view KEY_BTAB +generic-import i I +generic-export x X +generic-goto g G +generic-other-cmd o O +generic-config-menu C +generic-redraw ^R +generic-add-appt ^A +generic-add-todo ^T +generic-prev-day T ^H +generic-next-day t ^L +generic-prev-week W ^K +generic-next-week w +generic-prev-month M +generic-next-month m +generic-prev-year Y +generic-next-year y +generic-scroll-down ^N +generic-scroll-up ^P +generic-goto-today ^G +generic-command : +move-right l L RGT +move-left h H LFT +move-down j J DWN +move-up k K UP +start-of-week 0 +end-of-week $ +add-item a A +del-item d D +edit-item e E +view-item v V RET +pipe-item | +flag-item ! +repeat r +edit-note n N +view-note > +raise-priority + +lower-priority - diff --git a/dotfiles/.config/fontconfig/fonts.conf b/dotfiles/.config/fontconfig/fonts.conf index 144d7e5..d12f5c7 100644 --- a/dotfiles/.config/fontconfig/fonts.conf +++ b/dotfiles/.config/fontconfig/fonts.conf @@ -7,6 +7,7 @@ <family>IBM Plex Serif</family> <family>JetBrainsMono NF</family> <family>Noto Color Emoji</family> + <family>Sarasa UI J</family> </prefer> </alias> <alias> @@ -15,6 +16,7 @@ <family>IBM Plex Sans</family> <family>JetBrainsMono NF</family> <family>Noto Color Emoji</family> + <family>Sarasa UI J</family> </prefer> </alias> <alias> @@ -23,6 +25,7 @@ <family>IBM Plex Sans</family> <family>JetBrainsMono NF</family> <family>Noto Color Emoji</family> + <family>Sarasa UI J</family> </prefer> </alias> <alias> @@ -30,6 +33,7 @@ <prefer> <family>JetBrainsMono NF</family> <family>Noto Color Emoji</family> + <family>Sarasa Mono J</family> </prefer> </alias> </fontconfig> diff --git a/dotfiles/.config/lf/lfrc b/dotfiles/.config/lf/lfrc index 4069f05..72d39c7 100644 --- a/dotfiles/.config/lf/lfrc +++ b/dotfiles/.config/lf/lfrc @@ -149,7 +149,7 @@ map i push A<a-b><a-b><a-f> # rename before extention map a push A<a-b> # rename after extention map <c-n> push :mkdir<space> map <c-t> push :$touch<space> -map <c-r> reload +map r reload map <enter> shell map D delete map <enter> shell @@ -162,7 +162,7 @@ map Y :yank-path map L $LESSOPEN='| ~/.local/bin/scope %s' less -r $f # open file preview in pager map P hard_link map <a-p> soft_link -map r archive +map R archive # Mouse bindings map <m-3> :dragon diff --git a/dotfiles/.config/mimeapps.list b/dotfiles/.config/mimeapps.list index 374bff8..c6f9ba6 100644 --- a/dotfiles/.config/mimeapps.list +++ b/dotfiles/.config/mimeapps.list @@ -1,6 +1,7 @@ [Default Applications] application/pdf=org.pwmt.zathura.desktop; application/epub+zip=org.pwmt.zathura.desktop; +application/x-fictionbook+xml=org.pwmt.zathura.desktop; application/rdf+xml=org.qutebrowser.qutebrowser.desktop; application/xhtml+xml=org.qutebrowser.qutebrowser.desktop; application/xml=org.qutebrowser.qutebrowser.desktop; diff --git a/dotfiles/.config/mpv/input.conf b/dotfiles/.config/mpv/input.conf index 6e789ac..2798fee 100644 --- a/dotfiles/.config/mpv/input.conf +++ b/dotfiles/.config/mpv/input.conf @@ -205,6 +205,8 @@ k add volume 2 s cycle sub S cycle sub down +Ctrl+s cycle secondary-sid +Ctrl+S cycle secondary-sid down a cycle audio A cycle audio down diff --git a/dotfiles/.config/mpv/mpv.conf b/dotfiles/.config/mpv/mpv.conf index 136a5e6..c0d4e43 100644 --- a/dotfiles/.config/mpv/mpv.conf +++ b/dotfiles/.config/mpv/mpv.conf @@ -7,8 +7,10 @@ slang=en,eng,es,spa,ru,rus osd-font=monospace osd-msg3="${?core-idle==yes:๏}${?core-idle==no:๏} ${time-pos}/${duration} ${media-title}" input-ipc-server=/tmp/mpvsock +keep-open=yes sub-auto=fuzzy +sub-file-paths=sub:subs:subtitles ytdl-format="bestvideo[height<=1440]+bestaudio" diff --git a/dotfiles/.config/niri/config.kdl b/dotfiles/.config/niri/config.kdl index 469fd71..fa4b408 100644 --- a/dotfiles/.config/niri/config.kdl +++ b/dotfiles/.config/niri/config.kdl @@ -12,7 +12,7 @@ input { // You can set rules, model, layout, variant and options. // For more information, see xkeyboard-config(7). layout "us,es,ru" - options "lv3:ralt_switch,grp:alt_shift_toggle,misc:typo,caps:escape,grp_led:caps" + options "lv3:ralt_switch,grp:alt_space_toggle,misc:typo,caps:escape_shifted_capslock" } } @@ -65,49 +65,9 @@ cursor { hide-when-typing } - -// You can configure outputs by their name, which you can find -// by running `niri msg outputs` while inside a niri instance. -// The built-in laptop monitor is usually called "eDP-1". -// Find more information on the wiki: -// https://github.com/YaLTeR/niri/wiki/Configuration:-Outputs -// Remember to uncomment the node by removing "/-"! -output "eDP-1" { - // Uncomment this line to disable this output. - // off - - background-color "#000000" - - // Resolution and, optionally, refresh rate of the output. - // The format is "<width>x<height>" or "<width>x<height>@<refresh rate>". - // If the refresh rate is omitted, niri will pick the highest refresh rate - // for the resolution. - // If the mode is omitted altogether or is invalid, niri will pick one automatically. - // Run `niri msg outputs` while inside a niri instance to list all outputs and their modes. - // mode "1920x1080@120.030" - - // You can use integer or fractional scale, for example use 1.5 for 150% scale. - // scale 2 - - // Transform allows to rotate the output counter-clockwise, valid values are: - // normal, 90, 180, 270, flipped, flipped-90, flipped-180 and flipped-270. - // transform "normal" - - // Position of the output in the global coordinate space. - // This affects directional monitor actions like "focus-monitor-left", and cursor movement. - // The cursor can only move between directly adjacent outputs. - // Output scale and rotation has to be taken into account for positioning: - // outputs are sized in logical, or scaled, pixels. - // For example, a 3840ร2160 output with scale 2.0 will have a logical size of 1920ร1080, - // so to put another output directly adjacent to it on the right, set its x to 1920. - // If the position is unset or results in an overlap, the output is instead placed - // automatically. - position x=0 y=800 -} - -output "DP-1" { - background-color "#000000" - position x=1536 y=0 +overview { + zoom 0.33 + backdrop-color "#00807F" } // Settings that influence how windows are positioned and sized. @@ -115,7 +75,9 @@ output "DP-1" { // https://github.com/YaLTeR/niri/wiki/Configuration:-Layout layout { // Set gaps around windows in logical pixels. - gaps 5 + gaps 10 + + background-color "#00000000" // When to center a column when changing focus, options are: // - "never", default behavior, focusing an off-screen column will keep at the left @@ -202,7 +164,7 @@ layout { // active-color "#5b8277" // inactive-color "#4d4d42" - active-gradient from="#1f5c9a" to="#99d0b5" angle=60 + active-gradient from="#89b6a0" to="#0fc0d0" angle=90 inactive-gradient from="#252832" to="#676775" angle=45 } @@ -244,6 +206,36 @@ layout { insert-hint { color "#5b8277" } + + tab-indicator { + // off + // hide-when-single-tab + place-within-column + gap 0 + width 10 + length total-proportion=0.8 + // position "bottom" + gaps-between-tabs 6 + corner-radius 2 + // active-color "#89b6a0" + // inactive-color "#ccbe99" + active-gradient from="#0fc0d0" to="#89b6a0" angle=180 + inactive-gradient from="#000000" to="#ccbe99" angle=180 + } +} + +gestures { + dnd-edge-view-scroll { + trigger-width 200 + delay-ms 200 + max-speed 4000 + } + + dnd-edge-workspace-switch { + trigger-height 100 + delay-ms 200 + max-speed 4000 + } } // Add lines like this to spawn processes at startup. @@ -307,6 +299,8 @@ window-rule { window-rule { match app-id="GLava" + match app-id="com.libretro.RetroArch" + border { off; } shadow { off; } } @@ -314,14 +308,21 @@ window-rule { window-rule { match app-id="Alacritty" match app-id="Mattermost" + match app-id="org.telegram.desktop" + + default-column-width { fixed 770; } +} + +window-rule { + match app-id="org.pwmt.zathura" - default-column-width { proportion 0.31; } + default-column-width { fixed 900; } } window-rule { match app-id="org.qutebrowser.qutebrowser" - default-column-width { proportion 0.69; } + default-column-width { fixed 1150; } } // Example: block out two password managers from screen capture. @@ -366,14 +367,7 @@ spawn-at-startup "gsettings" "set" "org.gnome.desktop.interface" "color-scheme" spawn-at-startup "swaybg" "-i" "/home/yaroslav/.config/wall1.png" "-m" "fill" -// Just a nice jingle on startup because why not -spawn-at-startup "canberra-gtk-play" "-i" "Oxygen-Sys-App-Positive" - binds { - // Keys consist of modifiers separated by + signs, followed by an XKB key name - // in the end. To find an XKB name for a particular key, you may use a program - // like wev. - // // "Mod" is a special modifier equal to Super when running on a TTY, and to Alt // when running as a winit window. // @@ -384,11 +378,18 @@ binds { // shows a list of important hotkeys. Mod+Shift+Slash { show-hotkey-overlay; } - // Suggested binds for running programs: terminal, app launcher, screen locker. Mod+Return { spawn "alacritty"; } - Mod+D { spawn "rofi" "-show" "drun" "-sidebar-mode" "-modi" "drun,run,filebrowser,ssh,combi"; } - Mod+X { spawn "lock-color"; } - Mod+Shift+X { spawn "lock-color" "screenon"; } + Mod+D { + spawn "rofi" "-show" "drun" "-sidebar-mode" "-modi" "window,drun,run"; + } + // this isn't dry but whatever + Menu { + spawn "rofi" "-show" "drun" "-sidebar-mode" "-modi" "window,drun,run"; + } + Mod+S { toggle-overview; } + XF86VoiceCommand { toggle-overview; } // For my remote + Mod+X { spawn "lock-color"; } + Mod+Shift+X { spawn "lock-color" "screenon"; } // Example volume keys mappings for PipeWire & WirePlumber. // The allow-when-locked=true property makes them work even when the session is locked. @@ -398,6 +399,10 @@ binds { XF86AudioMicMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"; } + XF86AudioPrev allow-when-locked=true { spawn "lmc" "prev"; } + XF86AudioPlay allow-when-locked=true { spawn "lmc" "toggle"; } + XF86AudioNext allow-when-locked=true { spawn "lmc" "next"; } + Mod+Shift+F5 allow-when-locked=true { spawn "lmc" "back" "5"; } Mod+F5 allow-when-locked=true { spawn "lmc" "prev"; } Mod+F6 allow-when-locked=true { spawn "lmc" "toggle"; } @@ -499,22 +504,22 @@ binds { // To avoid scrolling through workspaces really fast, you can use // the cooldown-ms property. The bind will be rate-limited to this value. // You can set a cooldown on any bind, but it's most useful for the wheel. - Mod+WheelScrollDown cooldown-ms=200 { focus-workspace-down; } - Mod+WheelScrollUp cooldown-ms=200 { focus-workspace-up; } - Mod+Ctrl+WheelScrollDown cooldown-ms=200 { move-column-to-workspace-down; } - Mod+Ctrl+WheelScrollUp cooldown-ms=200 { move-column-to-workspace-up; } + Mod+WheelScrollDown { focus-workspace-down; } + Mod+WheelScrollUp { focus-workspace-up; } + Mod+Ctrl+WheelScrollDown { move-column-to-workspace-down; } + Mod+Ctrl+WheelScrollUp { move-column-to-workspace-up; } - Mod+WheelScrollRight cooldown-ms=200 { focus-column-right; } - Mod+WheelScrollLeft cooldown-ms=200 { focus-column-left; } - Mod+Ctrl+WheelScrollRight cooldown-ms=200 { move-column-right; } - Mod+Ctrl+WheelScrollLeft cooldown-ms=200 { move-column-left; } + Mod+WheelScrollRight { focus-column-right; } + Mod+WheelScrollLeft { focus-column-left; } + Mod+Ctrl+WheelScrollRight { move-column-right; } + Mod+Ctrl+WheelScrollLeft { move-column-left; } // Usually scrolling up and down with Shift in applications results in // horizontal scrolling; these binds replicate that. - Mod+Shift+WheelScrollDown cooldown-ms=200 { focus-column-right; } - Mod+Shift+WheelScrollUp cooldown-ms=200 { focus-column-left; } - Mod+Ctrl+Shift+WheelScrollDown cooldown-ms=200 { move-column-right; } - Mod+Ctrl+Shift+WheelScrollUp cooldown-ms=200 { move-column-left; } + Mod+Shift+WheelScrollDown { focus-column-right; } + Mod+Shift+WheelScrollUp { focus-column-left; } + Mod+Ctrl+Shift+WheelScrollDown { move-column-right; } + Mod+Ctrl+Shift+WheelScrollUp { move-column-left; } // Similarly, you can bind touchpad scroll "ticks". // Touchpad scrolling is continuous, so for these binds it is split into @@ -581,8 +586,9 @@ binds { Mod+R { switch-preset-column-width; } Mod+Shift+R { switch-preset-window-height; } Mod+Ctrl+R { reset-window-height; } - Mod+F { maximize-column; } + Mod+F { maximize-window-to-edges; } Mod+Shift+F { fullscreen-window; } + Mod+Ctrl+F { maximize-column; } Mod+C { center-column; } // Finer width adjustments. @@ -593,17 +599,22 @@ binds { // * adjust width as a percentage of screen width: "-10%" or "+10%" // Pixel sizes use logical, or scaled, pixels. I.e. on an output with scale 2.0, // set-column-width "100" will make the column occupy 200 physical screen pixels. - Mod+Minus { set-column-width "-10%"; } - Mod+Equal { set-column-width "+10%"; } + Mod+Minus { set-column-width "-5%"; } + Mod+Equal { set-column-width "+5%"; } // Finer height adjustments when in column with other windows. - Mod+Shift+Minus { set-window-height "-10%"; } - Mod+Shift+Equal { set-window-height "+10%"; } + Mod+Shift+Minus { set-window-height "-5%"; } + Mod+Shift+Equal { set-window-height "+5%"; } // Switch between floating and tiling. Mod+Shift+Space { toggle-window-floating; } Mod+Space { switch-focus-between-floating-and-tiling; } + // Toggle tabbed column display mode. + // Windows in this column will appear as vertical tabs, + // rather than stacked on top of each other. + Mod+W { toggle-column-tabbed-display; } + // Actions to switch layouts. // Note: if you uncomment these, make sure you do NOT have // a matching layout switch hotkey configured in xkb options above. @@ -644,6 +655,7 @@ binds { Mod+M { spawn "sh" "-c" "$TERM -e ncmpcpp"; } Mod+A { spawn "sh" "-c" "$TERM -T 'neomutt' -e neomutt"; } Mod+N { spawn "sh" "-c" "$TERM -T 'newsboat' -e newsboat && killall -42 waybar"; } + Mod+B { spawn "sh" "-c" "$TERM -T 'calcurse' -e calcurse"; } Mod+T { spawn "toggletorrent"; } Mod+Ctrl+T { spawn "launch-transmission"; } @@ -657,3 +669,5 @@ binds { switch-events { lid-close { spawn "swaysession" "suspend"; } } + +include "local.kdl" diff --git a/dotfiles/.config/qutebrowser/config.py b/dotfiles/.config/qutebrowser/config.py index b2d7492..e1e1fdf 100644 --- a/dotfiles/.config/qutebrowser/config.py +++ b/dotfiles/.config/qutebrowser/config.py @@ -73,8 +73,8 @@ c.downloads.remove_finished = 3000 c.url.searchengines = { "DEFAULT": "https://search.rhscz.eu/search?q={}" } -c.url.default_page = "https://takeoff.mriya.space/" -c.url.start_pages = "https://takeoff.mriya.space/" +c.url.default_page = "https://duckduckgo.com/" +c.url.start_pages = "https://duckduckgo.com/" ## Default fonts c.fonts.default_size = "11pt" diff --git a/dotfiles/.config/rofi/config.rasi b/dotfiles/.config/rofi/config.rasi index 33fce35..b4e5827 100644 --- a/dotfiles/.config/rofi/config.rasi +++ b/dotfiles/.config/rofi/config.rasi @@ -17,7 +17,7 @@ configuration { /* icon-theme: ;*/ /* drun-match-fields: "name,generic,exec,categories,keywords";*/ /* drun-categories: ;*/ -/* drun-show-actions: false;*/ + drun-show-actions: true; /* drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";*/ /* drun-url-launcher: "xdg-open";*/ /* disable-history: false;*/ diff --git a/dotfiles/.config/swaylock/config b/dotfiles/.config/swaylock/config index bb4dec0..19576ae 100644 --- a/dotfiles/.config/swaylock/config +++ b/dotfiles/.config/swaylock/config @@ -3,7 +3,7 @@ font=monospace scaling=fill indicator-radius=120 show-failed-attempts -inside-color=#000000bb +inside-color=#00000033 inside-ver-color=#3f6e90 inside-wrong-color=#b73030 inside-clear-color=#a1a6b2cc @@ -27,6 +27,6 @@ clock indicator image=~/.config/wall1.png datestr=%a, %F -effect-blur=10x5 +#effect-blur=10x5 show-keyboard-layout -layout-bg-color=#000000bb +layout-bg-color=#00000033 diff --git a/dotfiles/.config/waybar/config b/dotfiles/.config/waybar/config index f3a71da..403da07 100644 --- a/dotfiles/.config/waybar/config +++ b/dotfiles/.config/waybar/config @@ -1,224 +1,28 @@ // vim: filetype=json -{ +[{ "layer": "top", - "height": 32, + "height": 34, + "include": [ "~/.config/waybar/modules.json" ], "modules-left": [ - "sway/workspaces", + "clock", "niri/workspaces", - "sway/mode", - "custom/waybar-mpris", - "pulseaudio" + "mpris", + "wireplumber" ], "modules-center": [ - "clock", - "custom/weather" ], "modules-right": [ - "custom/rec-status", - "custom/swaykbd", + "custom/weather", "custom/mail-status", + "cpu", "memory", "backlight", "battery#bat0", "battery#bat1", "custom/batwatt", + "custom/torrent-status", "network", "niri/language", - "custom/torrent-status", - "tray" - ], - "sway/mode": { - "format": "<span style=\"italic\">{}</span>" - }, - "custom/waybar-mpris": { - "return-type": "json", - "exec": "waybar-mpris --autofocus --text-format=\"%i [%p] %a - %t\" --tooltip-format=\"%t by %a from %A\n%p/%d\n(%P)\" --pause='<span color=\"#5b8277\">๏</span>' --play='๏' --max-title 30", - "on-click": "lmc toggle", - "on-click-right": "lmc next" - }, - "mpd": { - "format": " {stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon} [{elapsedTime:%M:%S}] {artist} - {title}", - "format-disconnected": " Connection lost ", - "format-stopped": " ๏ {consumeIcon}{randomIcon}{repeatIcon}{singleIcon} [--:--] -- - --", - "unknown-tag": "N/A", - "interval": 2, - "max-length": 60, - "consume-icons": { - "on": "๏ " - }, - "random-icons": { - "on": "๏ด" - }, - "repeat-icons": { - "on": "๏ " - }, - "single-icons": { - "on": "[s]" - }, - "state-icons": { - "paused": "<span color=\"#b2872f\">๏</span>", - "playing": "<span color=\"#5b8277\">๏</span>" - }, - "tooltip-format": "MPD now playing: {artist} - {title}", - "tooltip-format-disconnected": "MPD disconnected" - }, - "idle_inhibitor": { - "format": "{icon}", - "format-icons": { - "activated": "๏ฎ", - "deactivated": "๏ฐ" - } - }, - "tray": { - "icon-size": 16, - "spacing": 10 - }, - "clock": { - "format": "{:%Yๅนด%mๆ%dๆฅ %H:%M:%S}", - "tooltip-format": "{calendar}", - "calendar": { - "mode": "year", - "mode-mon-col": 3 - }, - "interval": 1 - }, - "cpu": { - "format": "{usage}% ๏", - "tooltip": false - }, - "memory": { - "format": "<span color=\"#5b8277\">๏</span> {used:0.3f}G", - "states": { - "warning": 90 - }, - "interval": 10 - }, - "temperature": { - // "thermal-zone": 2, - // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", - "critical-threshold": 80, - // "format-critical": "{temperatureC}ยฐC {icon}", - "format": "{temperatureC}ยฐC {icon}", - "format-icons": ["๏ซ", "๏", "๏ฉ"] - }, - "backlight": { - // "device": "acpi_video1", - "format": "<span color=\"#5b8277\">{icon}</span> {percent}%", - "format-icons": ["๏ช", "๏
"] - }, - "battery#bat0": { - "bat": "BAT0", - "format": "{icon} {capacity}%", - "format-charging": " <span color=\"#5b8277\">๏ฆ</span> {capacity}%", - "format-plugged": "<span color=\"#5b8277\">๏ฆ</span> {capacity}%", - "format-icons": [ - "<span color=\"#b73030\">๏</span>", - "<span color=\"#b2872f\">๏</span>", - "<span color=\"#5b8277\">๏</span>", - "<span color=\"#5b8277\">๏</span>", - "<span color=\"#5b8277\">๏</span>" - ] - }, - "battery#bat1": { - "bat": "BAT1", - "format": "{icon} {capacity}%", - "format-charging": " <span color=\"#5b8277\">๏ฆ</span> {capacity}%", - "format-plugged": "<span color=\"#5b8277\">๏ฆ</span> {capacity}%", - "format-icons": [ - "<span color=\"#b73030\">๏</span>", - "<span color=\"#b2872f\">๏</span>", - "<span color=\"#5b8277\">๏</span>", - "<span color=\"#5b8277\">๏</span>", - "<span color=\"#5b8277\">๏</span>" - ] - }, - "network": { - // "interface": "wlp2*", // (Optional) To force the use of this interface - "format-wifi": "<span color=\"#5b8277\">๏ซ</span> {essid}", - "format-ethernet": "<span color=\"#5b8277\">๏จ</span> {ifname}", - "format-linked": "<span color=\"#5b8277\">๏จ</span> {ifname}", - "format-disconnected": "๎ซ disconnected", - "format-alt": "{ifname}: {ipaddr}/{cidr}", - "tooltip-format": "{ifname}: {ipaddr}/{cidr}" - }, - "pulseaudio": { - "scroll-step": 2, // %, can be a float - "format": "<span color=\"#5b8277\">{icon}</span> {volume}%", - "format-bluetooth": "<span color=\"#5b8277\">{icon}๏</span> {volume}% {format_source}", - "format-muted": "<span color=\"#b2872f\">๏ฆ</span>", - "format-source": "{volume}% ๏ฐ", - "format-source-muted": "๏ฑ", - "format-icons": { - "headphone": "๏ฅ", - "handsfree": "๏", - "headset": "๏", - "phone": "๏", - "portable": "๏", - "car": "๏น", - "default": ["๏ฆ", "๏ง", "๏จ"] - }, - "on-click": "$TERMINAL -e ncpamixer" - }, - "custom/rec-status": { - "format": "<span color=\"#5b8277\">{}</span>", - "signal": 5, - "interval": "once", - "exec": "barrecstatus" - }, - "custom/torrent-status": { - "format": "<span color=\"#5b8277\">{}</span>", - "signal": 10, - "interval": "once", - "exec": "bartorrentstatus" - }, - "custom/mail-status": { - "format": "<span color=\"#5b8277\">๐ง</span> {}", - "signal": 9, - "interval": "once", - "exec": "barmailstatus", - "tooltip": false - }, - "custom/pac-status": { - "format": "<span color=\"#5b8277\">๏</span> {}", - "signal": 7, - "interval": "once", - "exec": "barpacstatus" - }, - "custom/news-status": { - "format": "<span color=\"#5b8277\">๏ช</span> {}", - "signal": 8, - "interval": "once", - "exec": "barnewsstatus", - "tooltip": false - }, - "custom/weather": { - "format": "{}", - "interval": 180, - "exec": "barweather" - }, - "custom/ds4battery": { - "format": "๐ฎ {}", - "interval": 180, - "exec": "bards4battery" - }, - "custom/batwatt": { - "return-type": "json", - "interval": 10, - "exec-if": "test -e /sys/class/power_supply/BAT0", - "exec": "barbatwatt", - "exec-on-event": true, - "on-click": "" - }, - "custom/swaykbd": { - "format": "{}", - "exec": "swaykbd", - "tooltip": false - }, - "niri/language": { - "on-click": "niri msg action switch-layout next", - "on-click-right": "niri msg action switch-layout prev", - "format-en": " ๐บ๐ธ EN ", - "format-es": " ๐ฒ๐ฝ ES ", - "format-ru": " ๐ท๐บ RU " - } -} + "tray", + ] +}] diff --git a/dotfiles/.config/waybar/modules.json b/dotfiles/.config/waybar/modules.json new file mode 100644 index 0000000..7f0f591 --- /dev/null +++ b/dotfiles/.config/waybar/modules.json @@ -0,0 +1,181 @@ +{ + "sway/mode": { + "format": "<span style=\"italic\">{}</span>" + }, + "mpris": { + "format": "{status_icon} {artist} - {title}", + "format-stopped": "{status_icon} - ", + "status-icons": { + "stopped": "<span color=\"#d6cda3\">๏</span>", + "paused": "<span color=\"#d6cda3\">๏</span>", + "playing": "<span color=\"#5b8277\">๏</span>" + }, + "artist-len": 20, + "title-len": 30 + }, + "tray": { + "icon-size": 16, + "spacing": 10 + }, + "clock": { + "locale": "ja_JP.UTF-8", + "format": "<span font='Sarasa Mono J' weight='600'>{:L%Yๅนด%mๆ%dๆฅ๏ผ%a๏ผ%H:%M:%S}</span>", + "format-alt": "<span font='Sarasa Mono J' weight='600'>{:%H:%M:%S}</span>", + "tooltip-format": "<span font='Sarasa Mono J'>{calendar}</span>", + "calendar": { + "mode": "month", + "on-scroll": 1, + "format": { + "months": "<span size='13pt' weight='600'>{}</span>", + "weekdays": "{}", + "today": "<span color=\"#b73030\"><b>{}</b></span>" + } + }, + "actions": { + "on-scroll-up": "shift_up", + "on-scroll-down": "shift_down" + }, + "interval": 1 + }, + "cpu": { + "format": "<span color=\"#d6cda3\">๏</span> {usage}%", + "interval": 3 + }, + "memory": { + "format": "<span color=\"#d6cda3\">๎ฟ
</span> {used:0.3f}G", + "states": { + "warning": 90 + }, + "interval": 10 + }, + "temperature": { + // "thermal-zone": 2, + // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", + "critical-threshold": 80, + // "format-critical": "{temperatureC}ยฐC {icon}", + "format": "{temperatureC}ยฐC {icon}", + "format-icons": ["๏ซ", "๏", "๏ฉ"] + }, + "backlight": { + // "device": "acpi_video1", + "format": "<span color=\"#d6cda3\">{icon}</span> {percent}%", + "format-icons": ["๏ช", "๏
"] + }, + "battery#bat0": { + "bat": "BAT0", + "format": "{icon} {capacity}%", + "format-charging": "<span color=\"#5b8277\">๏ฆ</span> {capacity}%", + "format-plugged": "<span color=\"#5b8277\">๏ฆ</span> {capacity}%", + "format-icons": [ + "<span color=\"#b73030\">๏</span>", + "<span color=\"#b2872f\">๏</span>", + "<span color=\"#5b8277\">๏</span>", + "<span color=\"#5b8277\">๏</span>", + "<span color=\"#5b8277\">๏</span>" + ] + }, + "battery#bat1": { + "bat": "BAT1", + "format": "{icon} {capacity}%", + "format-charging": "<span color=\"#5b8277\">๏ฆ</span> {capacity}%", + "format-plugged": "<span color=\"#5b8277\">๏ฆ</span> {capacity}%", + "format-icons": [ + "<span color=\"#b73030\">๏</span>", + "<span color=\"#b2872f\">๏</span>", + "<span color=\"#5b8277\">๏</span>", + "<span color=\"#5b8277\">๏</span>", + "<span color=\"#5b8277\">๏</span>" + ] + }, + "network": { + // "interface": "wlp2*", // (Optional) To force the use of this interface + "format-wifi": "<span color=\"#5b8277\">๏ซ</span>", + "format-ethernet": "<span color=\"#5b8277\">๓ฐ</span>", + "format-linked": "<span color=\"#b2872f\">๓ฐฒ</span>", + "format-disconnected": "<span color=\"#b2872f\">๓ฐ</span>", + "format-disabled": "<span color=\"#b73030\">๓ฐ</span>", + "format-alt": "<span color=\"#d6cda3\">๓ฐ</span> {ifname}: {bandwidthUpBits}<span color=\"#d6cda3\">๎ชก</span> {bandwidthDownBits}<span color=\"#d6cda3\">๎ช</span>", + "tooltip-format": "{ifname}: {essid} {ipaddr}/{cidr} {bandwidthUpBits}<span color=\"#d6cda3\">๎ชก</span> {bandwidthDownBits}<span color=\"#d6cda3\">๎ช</span>", + "interval": 3 + }, + "wireplumber": { + "scroll-step": 2, // %, can be a float + "format": "<span color=\"#5b8277\">{icon}</span> {volume}%", + "format-bluetooth": "<span color=\"#5b8277\">{icon}๏</span> {volume}% {format_source}", + "format-muted": "<span color=\"#b2872f\">๏ฆ</span>", + "format-source": "{volume}% ๏ฐ", + "format-source-muted": "๏ฑ", + "format-icons": { + "headphone": "๏ฅ", + "handsfree": "๏", + "headset": "๏", + "phone": "๏", + "portable": "๏", + "car": "๏น", + "default": ["๏ฆ", "๏ง", "๏จ"] + }, + "on-click": "$TERMINAL -e ncpamixer" + }, + "custom/rec-status": { + "format": "<span color=\"#5b8277\">{}</span>", + "signal": 5, + "interval": "once", + "exec": "barrecstatus" + }, + "custom/torrent-status": { + "format": "<span color=\"#d6cda3\">{}</span>", + "signal": 10, + "interval": "once", + "exec": "bartorrentstatus" + }, + "custom/mail-status": { + "format": "<span color=\"#d6cda3\">๓ฐบป </span>{}", + "signal": 9, + "interval": "once", + "exec": "barmailstatus", + "tooltip": false + }, + "custom/pac-status": { + "format": "๏ {}", + "signal": 7, + "interval": "once", + "exec": "barpacstatus" + }, + "custom/news-status": { + "format": "๏ช {}", + "signal": 8, + "interval": "once", + "exec": "barnewsstatus", + "tooltip": false + }, + "custom/weather": { + "format": "{}", + "interval": 180, + "exec": "barweather" + }, + "custom/ds4battery": { + "format": "๐ฎ {}", + "interval": 180, + "exec": "bards4battery" + }, + "custom/batwatt": { + "return-type": "json", + "interval": 10, + "exec-if": "test -e /sys/class/power_supply/BAT0", + "exec": "barbatwatt", + "exec-on-event": true, + "on-click": "" + }, + "custom/swaykbd": { + "format": "{}", + "exec": "swaykbd", + "tooltip": false + }, + "niri/language": { + "on-click": "niri msg action switch-layout next", + "on-click-right": "niri msg action switch-layout prev", + "format-en": " ๐บ๐ธ", + "format-es": " ๐ฒ๐ฝ", + "format-ru": " ๐ท๐บ" + } +} diff --git a/dotfiles/.config/waybar/style.css b/dotfiles/.config/waybar/style.css index a8026f1..7f8c7ba 100644 --- a/dotfiles/.config/waybar/style.css +++ b/dotfiles/.config/waybar/style.css @@ -1,67 +1,28 @@ * { - font-size: 13px; + font-size: 14px; font-family: monospace; } window#waybar { - background: #000000; - /* background: linear-gradient(#000000, #151515); */ - color: #f2eccf; + background: #1e1c1a; + color: #fcf8e2; min-height: 0; - border-bottom: 2px solid #33333a; -} -#tray, -#language, -#custom-torrent-status, -#workspaces { - background: #151517; - margin: 3px 0 3px 0; - border-style: solid; - border-color: #33333a; + border: 2px solid #33333a; } #memory.warning { color: #b2872f; } -#tray{ - border-width: 2px 2px 2px 0; -} -#custom-torrent-status{ - border-width: 2px 0 2px 0; -} -#language { - border-width: 2px 0 2px 2px; -} -#workspaces { - padding: 0; - margin-right: 6px; - border-width: 2px; -} -#workspaces button { - padding: 0 0.6em; - color: #fcf8e2; - border-radius: 0; - border: 1px solid rgba(0, 0, 0, 0); -} -#workspaces button.visible { - color: #7fac96; - border-color: #7fac96; -} -#workspaces button.focused { - color: #000000; - border-color: #7fac96; - background: linear-gradient(60deg, #5b8277, #99d0b5); -} -#workspaces button:hover { - border: 1px solid #5b8277; -} +#cpu, #mpd, #tray, -#clock, +#mpris, #memory, #battery, #network, +#language, #backlight, -#pulseaudio, +#workspaces, #temperature, +#wireplumber, #custom-weather, #custom-swaykbd, #custom-ds4battery, @@ -69,12 +30,41 @@ window#waybar { #custom-pac-status, #custom-mail-status, #custom-news-status, -#custom-waybar-mpris, #custom-batwatt, #custom-torrent-status { color: #fcf8e2; - padding: 0 6px; + padding: 0 0.4em; + margin: 2px; +} +#clock { + font-weight: 500; + color: #d6cda3; + background: #0d0906; + border: 2px inset #1e1e23; + margin: 4px 2px 4px 4px; + padding: 0 0.4em; } -#custom-weather { - color: #5b8277; +#workspaces { + padding: 0; + margin: 6px; + background: #4a4842; +} +#workspaces button { + padding: 0 0.5em; + color: #fcf8e2; + border-radius: 0; + border: 2px solid #1e1e23; +} +#workspaces button.visible, +#workspaces button.active { + color: #7fac96; + border-color: #7fac96; +} +#workspaces button.focused { + color: #000000; + border-color: #7fac96; + background: linear-gradient(60deg, #5b8277, #99d0b5); +} +#workspaces button:hover { + border-color: #5b8277; } diff --git a/dotfiles/.local/bin/barweather b/dotfiles/.local/bin/barweather index 3fc7f42..a608b80 100755 --- a/dotfiles/.local/bin/barweather +++ b/dotfiles/.local/bin/barweather @@ -12,7 +12,7 @@ update_forecast() { forecast=$(curl -s wttr.in/"$location"?format=1) if [ ${#forecast} -lt 30 ]; then - printf "%s\n" "$forecast" > "$cachefile" + printf "%s\n" "$forecast" | sed -e 's/ / /g' > "$cachefile" fi } diff --git a/dotfiles/.local/bin/mailsync b/dotfiles/.local/bin/mailsync index d67db06..7c644f6 100755 --- a/dotfiles/.local/bin/mailsync +++ b/dotfiles/.local/bin/mailsync @@ -39,7 +39,7 @@ do done if [ $thereis = 1 ]; then - mpv --really-quiet "$HOME/.local/share/soundalerts/mail.ogg" + mpv --keep-open=no --really-quiet "$HOME/.local/share/soundalerts/mail.ogg" killall -43 waybar fi diff --git a/dotfiles/.local/bin/menumako b/dotfiles/.local/bin/menumako index 628a93a..96c564b 100755 --- a/dotfiles/.local/bin/menumako +++ b/dotfiles/.local/bin/menumako @@ -1,3 +1,3 @@ #!/bin/sh -makoctl menu rofi -dmenu -p "What to do?" +makoctl menu -- rofi -dmenu -p "What to do?" diff --git a/dotfiles/.local/bin/setbg b/dotfiles/.local/bin/setbg index 2e6dfba..bc8b8a2 100755 --- a/dotfiles/.local/bin/setbg +++ b/dotfiles/.local/bin/setbg @@ -10,6 +10,7 @@ cp "$1" "$dest" if [ -n "$SWAYSOCK" ]; then updisplay elif [ -n "$NIRI_SOCKET" ]; then + niri msg action do-screen-transition -d 200 killall swaybg setsid swaybg -i "$dest" -m fill& fi diff --git a/dotfiles/.local/bin/sshwiz b/dotfiles/.local/bin/sshwiz new file mode 100755 index 0000000..ba71b08 --- /dev/null +++ b/dotfiles/.local/bin/sshwiz @@ -0,0 +1,18 @@ +#!/bin/bash + +# SSH "wizard" script. Copies the public key and installs terminfo for first +# time use of a host. + +if [ -z "$1" ]; then + echo "usage: sshwiz <destination>" + exit 1 +fi + +target=$1 + +ssh-copy-id $target +echo "installing terminfo..." +infocmp $TERM > /tmp/$TERM.terminfo +rsync /tmp/$TERM.terminfo ${target}: +ssh $target "tic -x $TERM.terminfo" +echo "done" diff --git a/dotfiles/.local/share/oculante/config.json b/dotfiles/.local/share/oculante/config.json new file mode 100644 index 0000000..87bc4ca --- /dev/null +++ b/dotfiles/.local/share/oculante/config.json @@ -0,0 +1,154 @@ +{ + "accent_color": [ + 137, + 182, + 160 + ], + "background_color": [ + 0, + 0, + 0 + ], + "vsync": true, + "force_redraw": false, + "shortcuts": { + "AlwaysOnTop": [ + "T" + ], + "Fullscreen": [ + "F" + ], + "InfoMode": [ + "I" + ], + "EditMode": [ + "E" + ], + "NextImage": [ + "N" + ], + "FirstImage": [ + "Home" + ], + "LastImage": [ + "End" + ], + "PreviousImage": [ + "P" + ], + "RedChannel": [ + "R" + ], + "GreenChannel": [ + "G" + ], + "BlueChannel": [ + "B" + ], + "AlphaChannel": [ + "A" + ], + "RGBChannel": [ + "U" + ], + "RGBAChannel": [ + "C" + ], + "ResetView": [ + "V" + ], + "ZoomOut": [ + "Minus" + ], + "ZoomIn": [ + "Equals" + ], + "ZoomActualSize": [ + "Key1" + ], + "ZoomDouble": [ + "Key2" + ], + "ZoomThree": [ + "Key3" + ], + "ZoomFour": [ + "Key4" + ], + "ZoomFive": [ + "Key5" + ], + "CompareNext": [ + "C", + "LShift" + ], + "PanLeft": [ + "L" + ], + "PanRight": [ + "H" + ], + "PanUp": [ + "J" + ], + "PanDown": [ + "K" + ], + "DeleteFile": [ + "Delete" + ], + "ClearImage": [ + "Delete", + "LShift" + ], + "LosslessRotateRight": [ + "RBracket" + ], + "LosslessRotateLeft": [ + "LBracket" + ], + "Copy": [ + "C", + "LControl" + ], + "Paste": [ + "LControl", + "V" + ], + "Browse": [ + "LControl", + "O" + ], + "Quit": [ + "Q" + ], + "ZenMode": [ + "Z" + ] + }, + "keep_view": true, + "max_cache": 30, + "show_scrub_bar": true, + "wrap_folder": true, + "keep_edits": false, + "title_format": "{APP} | {VERSION} | {FULLPATH}", + "info_enabled": true, + "edit_enabled": false, + "show_checker_background": false, + "show_minimap": false, + "show_frame": false, + "svg_scale": 1.0, + "zen_mode": false, + "theme": "System", + "linear_mag_filter": false, + "linear_min_filter": true, + "use_mipmaps": true, + "fit_image_on_window_resize": true, + "zoom_multiplier": 1.0, + "borderless": false, + "min_window_size": [ + 100, + 100 + ], + "experimental_features": false +}
\ No newline at end of file diff --git a/dotfiles/.local/share/script-data/emoji b/dotfiles/.local/share/script-data/emoji index 42fc271..d3db56e 100644 --- a/dotfiles/.local/share/script-data/emoji +++ b/dotfiles/.local/share/script-data/emoji @@ -1628,6 +1628,2054 @@ ๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ flag: England ๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ flag: Scotland ๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ flag: Wales +โ๐ป index pointing up: white skin +โ๐ผ index pointing up: tan skin +โ๐ฝ index pointing up: olive skin +โ๐พ index pointing up: brown skin +โ๐ฟ index pointing up: black skin +โน๐ป person bouncing ball: white skin +โน๐ผ person bouncing ball: tan skin +โน๐ฝ person bouncing ball: olive skin +โน๐พ person bouncing ball: brown skin +โน๐ฟ person bouncing ball: black skin +โ๐ป raised fist: white skin +โ๐ผ raised fist: tan skin +โ๐ฝ raised fist: olive skin +โ๐พ raised fist: brown skin +โ๐ฟ raised fist: black skin +โ๐ป raised hand: white skin +โ๐ผ raised hand: tan skin +โ๐ฝ raised hand: olive skin +โ๐พ raised hand: brown skin +โ๐ฟ raised hand: black skin +โ๐ป victory hand: white skin +โ๐ผ victory hand: tan skin +โ๐ฝ victory hand: olive skin +โ๐พ victory hand: brown skin +โ๐ฟ victory hand: black skin +โ๐ป writing hand: white skin +โ๐ผ writing hand: tan skin +โ๐ฝ writing hand: olive skin +โ๐พ writing hand: brown skin +โ๐ฟ writing hand: black skin +๐
๐ป Santa Claus: white skin +๐
๐ผ Santa Claus: tan skin +๐
๐ฝ Santa Claus: olive skin +๐
๐พ Santa Claus: brown skin +๐
๐ฟ Santa Claus: black skin +๐๐ป snowboarder: white skin +๐๐ผ snowboarder: tan skin +๐๐ฝ snowboarder: olive skin +๐๐พ snowboarder: brown skin +๐๐ฟ snowboarder: black skin +๐๐ป person running: white skin +๐๐ผ person running: tan skin +๐๐ฝ person running: olive skin +๐๐พ person running: brown skin +๐๐ฟ person running: black skin +๐๐ป person surfing: white skin +๐๐ผ person surfing: tan skin +๐๐ฝ person surfing: olive skin +๐๐พ person surfing: brown skin +๐๐ฟ person surfing: black skin +๐๐ป horse racing: white skin +๐๐ผ horse racing: tan skin +๐๐ฝ horse racing: olive skin +๐๐พ horse racing: brown skin +๐๐ฟ horse racing: black skin +๐๐ป person swimming: white skin +๐๐ผ person swimming: tan skin +๐๐ฝ person swimming: olive skin +๐๐พ person swimming: brown skin +๐๐ฟ person swimming: black skin +๐๐ป person lifting weights: white skin +๐๐ผ person lifting weights: tan skin +๐๐ฝ person lifting weights: olive skin +๐๐พ person lifting weights: brown skin +๐๐ฟ person lifting weights: black skin +๐๐ป person golfing: white skin +๐๐ผ person golfing: tan skin +๐๐ฝ person golfing: olive skin +๐๐พ person golfing: brown skin +๐๐ฟ person golfing: black skin +๐๐ป ear: white skin +๐๐ผ ear: tan skin +๐๐ฝ ear: olive skin +๐๐พ ear: brown skin +๐๐ฟ ear: black skin +๐๐ป nose: white skin +๐๐ผ nose: tan skin +๐๐ฝ nose: olive skin +๐๐พ nose: brown skin +๐๐ฟ nose: black skin +๐๐ป backhand index pointing up: white skin +๐๐ผ backhand index pointing up: tan skin +๐๐ฝ backhand index pointing up: olive skin +๐๐พ backhand index pointing up: brown skin +๐๐ฟ backhand index pointing up: black skin +๐๐ป backhand index pointing down: white skin +๐๐ผ backhand index pointing down: tan skin +๐๐ฝ backhand index pointing down: olive skin +๐๐พ backhand index pointing down: brown skin +๐๐ฟ backhand index pointing down: black skin +๐๐ป backhand index pointing left: white skin +๐๐ผ backhand index pointing left: tan skin +๐๐ฝ backhand index pointing left: olive skin +๐๐พ backhand index pointing left: brown skin +๐๐ฟ backhand index pointing left: black skin +๐๐ป backhand index pointing right: white skin +๐๐ผ backhand index pointing right: tan skin +๐๐ฝ backhand index pointing right: olive skin +๐๐พ backhand index pointing right: brown skin +๐๐ฟ backhand index pointing right: black skin +๐๐ป oncoming fist: white skin +๐๐ผ oncoming fist: tan skin +๐๐ฝ oncoming fist: olive skin +๐๐พ oncoming fist: brown skin +๐๐ฟ oncoming fist: black skin +๐๐ป waving hand: white skin +๐๐ผ waving hand: tan skin +๐๐ฝ waving hand: olive skin +๐๐พ waving hand: brown skin +๐๐ฟ waving hand: black skin +๐๐ป OK hand: white skin +๐๐ผ OK hand: tan skin +๐๐ฝ OK hand: olive skin +๐๐พ OK hand: brown skin +๐๐ฟ OK hand: black skin +๐๐ป thumbs up: white skin +๐๐ผ thumbs up: tan skin +๐๐ฝ thumbs up: olive skin +๐๐พ thumbs up: brown skin +๐๐ฟ thumbs up: black skin +๐๐ป thumbs down: white skin +๐๐ผ thumbs down: tan skin +๐๐ฝ thumbs down: olive skin +๐๐พ thumbs down: brown skin +๐๐ฟ thumbs down: black skin +๐๐ป clapping hands: white skin +๐๐ผ clapping hands: tan skin +๐๐ฝ clapping hands: olive skin +๐๐พ clapping hands: brown skin +๐๐ฟ clapping hands: black skin +๐๐ป open hands: white skin +๐๐ผ open hands: tan skin +๐๐ฝ open hands: olive skin +๐๐พ open hands: brown skin +๐๐ฟ open hands: black skin +๐ฆ๐ป boy: white skin +๐ฆ๐ผ boy: tan skin +๐ฆ๐ฝ boy: olive skin +๐ฆ๐พ boy: brown skin +๐ฆ๐ฟ boy: black skin +๐ง๐ป girl: white skin +๐ง๐ผ girl: tan skin +๐ง๐ฝ girl: olive skin +๐ง๐พ girl: brown skin +๐ง๐ฟ girl: black skin +๐จ๐ป man: white skin +๐จ๐ผ man: tan skin +๐จ๐ฝ man: olive skin +๐จ๐พ man: brown skin +๐จ๐ฟ man: black skin +๐ฉ๐ป woman: white skin +๐ฉ๐ผ woman: tan skin +๐ฉ๐ฝ woman: olive skin +๐ฉ๐พ woman: brown skin +๐ฉ๐ฟ woman: black skin +๐ซ๐ป woman and man holding hands: white skin +๐ซ๐ผ woman and man holding hands: tan skin +๐ซ๐ฝ woman and man holding hands: olive skin +๐ซ๐พ woman and man holding hands: brown skin +๐ซ๐ฟ woman and man holding hands: black skin +๐ฌ๐ป men holding hands: white skin +๐ฌ๐ผ men holding hands: tan skin +๐ฌ๐ฝ men holding hands: olive skin +๐ฌ๐พ men holding hands: brown skin +๐ฌ๐ฟ men holding hands: black skin +๐ญ๐ป women holding hands: white skin +๐ญ๐ผ women holding hands: tan skin +๐ญ๐ฝ women holding hands: olive skin +๐ญ๐พ women holding hands: brown skin +๐ญ๐ฟ women holding hands: black skin +๐ฎ๐ป police officer: white skin +๐ฎ๐ผ police officer: tan skin +๐ฎ๐ฝ police officer: olive skin +๐ฎ๐พ police officer: brown skin +๐ฎ๐ฟ police officer: black skin +๐ฐ๐ป person with veil: white skin +๐ฐ๐ผ person with veil: tan skin +๐ฐ๐ฝ person with veil: olive skin +๐ฐ๐พ person with veil: brown skin +๐ฐ๐ฟ person with veil: black skin +๐ฑ๐ป person: white skin, blond hair +๐ฑ๐ผ person: tan skin, blond hair +๐ฑ๐ฝ person: olive skin, blond hair +๐ฑ๐พ person: brown skin, blond hair +๐ฑ๐ฟ person: black skin, blond hair +๐ฒ๐ป person with skullcap: white skin +๐ฒ๐ผ person with skullcap: tan skin +๐ฒ๐ฝ person with skullcap: olive skin +๐ฒ๐พ person with skullcap: brown skin +๐ฒ๐ฟ person with skullcap: black skin +๐ณ๐ป person wearing turban: white skin +๐ณ๐ผ person wearing turban: tan skin +๐ณ๐ฝ person wearing turban: olive skin +๐ณ๐พ person wearing turban: brown skin +๐ณ๐ฟ person wearing turban: black skin +๐ด๐ป old man: white skin +๐ด๐ผ old man: tan skin +๐ด๐ฝ old man: olive skin +๐ด๐พ old man: brown skin +๐ด๐ฟ old man: black skin +๐ต๐ป old woman: white skin +๐ต๐ผ old woman: tan skin +๐ต๐ฝ old woman: olive skin +๐ต๐พ old woman: brown skin +๐ต๐ฟ old woman: black skin +๐ถ๐ป baby: white skin +๐ถ๐ผ baby: tan skin +๐ถ๐ฝ baby: olive skin +๐ถ๐พ baby: brown skin +๐ถ๐ฟ baby: black skin +๐ท๐ป construction worker: white skin +๐ท๐ผ construction worker: tan skin +๐ท๐ฝ construction worker: olive skin +๐ท๐พ construction worker: brown skin +๐ท๐ฟ construction worker: black skin +๐ธ๐ป princess: white skin +๐ธ๐ผ princess: tan skin +๐ธ๐ฝ princess: olive skin +๐ธ๐พ princess: brown skin +๐ธ๐ฟ princess: black skin +๐ผ๐ป baby angel: white skin +๐ผ๐ผ baby angel: tan skin +๐ผ๐ฝ baby angel: olive skin +๐ผ๐พ baby angel: brown skin +๐ผ๐ฟ baby angel: black skin +๐๐ป person tipping hand: white skin +๐๐ผ person tipping hand: tan skin +๐๐ฝ person tipping hand: olive skin +๐๐พ person tipping hand: brown skin +๐๐ฟ person tipping hand: black skin +๐๐ป guard: white skin +๐๐ผ guard: tan skin +๐๐ฝ guard: olive skin +๐๐พ guard: brown skin +๐๐ฟ guard: black skin +๐๐ป woman dancing: white skin +๐๐ผ woman dancing: tan skin +๐๐ฝ woman dancing: olive skin +๐๐พ woman dancing: brown skin +๐๐ฟ woman dancing: black skin +๐
๐ป nail polish: white skin +๐
๐ผ nail polish: tan skin +๐
๐ฝ nail polish: olive skin +๐
๐พ nail polish: brown skin +๐
๐ฟ nail polish: black skin +๐๐ป person getting massage: white skin +๐๐ผ person getting massage: tan skin +๐๐ฝ person getting massage: olive skin +๐๐พ person getting massage: brown skin +๐๐ฟ person getting massage: black skin +๐๐ป person getting haircut: white skin +๐๐ผ person getting haircut: tan skin +๐๐ฝ person getting haircut: olive skin +๐๐พ person getting haircut: brown skin +๐๐ฟ person getting haircut: black skin +๐๐ป kiss: white skin +๐๐ผ kiss: tan skin +๐๐ฝ kiss: olive skin +๐๐พ kiss: brown skin +๐๐ฟ kiss: black skin +๐๐ป couple with heart: white skin +๐๐ผ couple with heart: tan skin +๐๐ฝ couple with heart: olive skin +๐๐พ couple with heart: brown skin +๐๐ฟ couple with heart: black skin +๐ช๐ป flexed biceps: white skin +๐ช๐ผ flexed biceps: tan skin +๐ช๐ฝ flexed biceps: olive skin +๐ช๐พ flexed biceps: brown skin +๐ช๐ฟ flexed biceps: black skin +๐ด๐ป person in suit levitating: white skin +๐ด๐ผ person in suit levitating: tan skin +๐ด๐ฝ person in suit levitating: olive skin +๐ด๐พ person in suit levitating: brown skin +๐ด๐ฟ person in suit levitating: black skin +๐ต๐ป detective: white skin +๐ต๐ผ detective: tan skin +๐ต๐ฝ detective: olive skin +๐ต๐พ detective: brown skin +๐ต๐ฟ detective: black skin +๐บ๐ป man dancing: white skin +๐บ๐ผ man dancing: tan skin +๐บ๐ฝ man dancing: olive skin +๐บ๐พ man dancing: brown skin +๐บ๐ฟ man dancing: black skin +๐๐ป hand with fingers splayed: white skin +๐๐ผ hand with fingers splayed: tan skin +๐๐ฝ hand with fingers splayed: olive skin +๐๐พ hand with fingers splayed: brown skin +๐๐ฟ hand with fingers splayed: black skin +๐๐ป middle finger: white skin +๐๐ผ middle finger: tan skin +๐๐ฝ middle finger: olive skin +๐๐พ middle finger: brown skin +๐๐ฟ middle finger: black skin +๐๐ป vulcan salute: white skin +๐๐ผ vulcan salute: tan skin +๐๐ฝ vulcan salute: olive skin +๐๐พ vulcan salute: brown skin +๐๐ฟ vulcan salute: black skin +๐
๐ป person gesturing NO: white skin +๐
๐ผ person gesturing NO: tan skin +๐
๐ฝ person gesturing NO: olive skin +๐
๐พ person gesturing NO: brown skin +๐
๐ฟ person gesturing NO: black skin +๐๐ป person gesturing OK: white skin +๐๐ผ person gesturing OK: tan skin +๐๐ฝ person gesturing OK: olive skin +๐๐พ person gesturing OK: brown skin +๐๐ฟ person gesturing OK: black skin +๐๐ป person bowing: white skin +๐๐ผ person bowing: tan skin +๐๐ฝ person bowing: olive skin +๐๐พ person bowing: brown skin +๐๐ฟ person bowing: black skin +๐๐ป person raising hand: white skin +๐๐ผ person raising hand: tan skin +๐๐ฝ person raising hand: olive skin +๐๐พ person raising hand: brown skin +๐๐ฟ person raising hand: black skin +๐๐ป raising hands: white skin +๐๐ผ raising hands: tan skin +๐๐ฝ raising hands: olive skin +๐๐พ raising hands: brown skin +๐๐ฟ raising hands: black skin +๐๐ป person frowning: white skin +๐๐ผ person frowning: tan skin +๐๐ฝ person frowning: olive skin +๐๐พ person frowning: brown skin +๐๐ฟ person frowning: black skin +๐๐ป person pouting: white skin +๐๐ผ person pouting: tan skin +๐๐ฝ person pouting: olive skin +๐๐พ person pouting: brown skin +๐๐ฟ person pouting: black skin +๐๐ป folded hands: white skin +๐๐ผ folded hands: tan skin +๐๐ฝ folded hands: olive skin +๐๐พ folded hands: brown skin +๐๐ฟ folded hands: black skin +๐ฃ๐ป person rowing boat: white skin +๐ฃ๐ผ person rowing boat: tan skin +๐ฃ๐ฝ person rowing boat: olive skin +๐ฃ๐พ person rowing boat: brown skin +๐ฃ๐ฟ person rowing boat: black skin +๐ด๐ป person biking: white skin +๐ด๐ผ person biking: tan skin +๐ด๐ฝ person biking: olive skin +๐ด๐พ person biking: brown skin +๐ด๐ฟ person biking: black skin +๐ต๐ป person mountain biking: white skin +๐ต๐ผ person mountain biking: tan skin +๐ต๐ฝ person mountain biking: olive skin +๐ต๐พ person mountain biking: brown skin +๐ต๐ฟ person mountain biking: black skin +๐ถ๐ป person walking: white skin +๐ถ๐ผ person walking: tan skin +๐ถ๐ฝ person walking: olive skin +๐ถ๐พ person walking: brown skin +๐ถ๐ฟ person walking: black skin +๐๐ป person taking bath: white skin +๐๐ผ person taking bath: tan skin +๐๐ฝ person taking bath: olive skin +๐๐พ person taking bath: brown skin +๐๐ฟ person taking bath: black skin +๐๐ป person in bed: white skin +๐๐ผ person in bed: tan skin +๐๐ฝ person in bed: olive skin +๐๐พ person in bed: brown skin +๐๐ฟ person in bed: black skin +๐ค๐ป pinched fingers: white skin +๐ค๐ผ pinched fingers: tan skin +๐ค๐ฝ pinched fingers: olive skin +๐ค๐พ pinched fingers: brown skin +๐ค๐ฟ pinched fingers: black skin +๐ค๐ป pinching hand: white skin +๐ค๐ผ pinching hand: tan skin +๐ค๐ฝ pinching hand: olive skin +๐ค๐พ pinching hand: brown skin +๐ค๐ฟ pinching hand: black skin +๐ค๐ป sign of the horns: white skin +๐ค๐ผ sign of the horns: tan skin +๐ค๐ฝ sign of the horns: olive skin +๐ค๐พ sign of the horns: brown skin +๐ค๐ฟ sign of the horns: black skin +๐ค๐ป call me hand: white skin +๐ค๐ผ call me hand: tan skin +๐ค๐ฝ call me hand: olive skin +๐ค๐พ call me hand: brown skin +๐ค๐ฟ call me hand: black skin +๐ค๐ป raised back of hand: white skin +๐ค๐ผ raised back of hand: tan skin +๐ค๐ฝ raised back of hand: olive skin +๐ค๐พ raised back of hand: brown skin +๐ค๐ฟ raised back of hand: black skin +๐ค๐ป left-facing fist: white skin +๐ค๐ผ left-facing fist: tan skin +๐ค๐ฝ left-facing fist: olive skin +๐ค๐พ left-facing fist: brown skin +๐ค๐ฟ left-facing fist: black skin +๐ค๐ป right-facing fist: white skin +๐ค๐ผ right-facing fist: tan skin +๐ค๐ฝ right-facing fist: olive skin +๐ค๐พ right-facing fist: brown skin +๐ค๐ฟ right-facing fist: black skin +๐ค๐ป handshake: white skin +๐ค๐ผ handshake: tan skin +๐ค๐ฝ handshake: olive skin +๐ค๐พ handshake: brown skin +๐ค๐ฟ handshake: black skin +๐ค๐ป crossed fingers: white skin +๐ค๐ผ crossed fingers: tan skin +๐ค๐ฝ crossed fingers: olive skin +๐ค๐พ crossed fingers: brown skin +๐ค๐ฟ crossed fingers: black skin +๐ค๐ป love-you gesture: white skin +๐ค๐ผ love-you gesture: tan skin +๐ค๐ฝ love-you gesture: olive skin +๐ค๐พ love-you gesture: brown skin +๐ค๐ฟ love-you gesture: black skin +๐คฆ๐ป person facepalming: white skin +๐คฆ๐ผ person facepalming: tan skin +๐คฆ๐ฝ person facepalming: olive skin +๐คฆ๐พ person facepalming: brown skin +๐คฆ๐ฟ person facepalming: black skin +๐คฐ๐ป pregnant woman: white skin +๐คฐ๐ผ pregnant woman: tan skin +๐คฐ๐ฝ pregnant woman: olive skin +๐คฐ๐พ pregnant woman: brown skin +๐คฐ๐ฟ pregnant woman: black skin +๐คฑ๐ป breast-feeding: white skin +๐คฑ๐ผ breast-feeding: tan skin +๐คฑ๐ฝ breast-feeding: olive skin +๐คฑ๐พ breast-feeding: brown skin +๐คฑ๐ฟ breast-feeding: black skin +๐คฒ๐ป palms up together: white skin +๐คฒ๐ผ palms up together: tan skin +๐คฒ๐ฝ palms up together: olive skin +๐คฒ๐พ palms up together: brown skin +๐คฒ๐ฟ palms up together: black skin +๐คณ๐ป selfie: white skin +๐คณ๐ผ selfie: tan skin +๐คณ๐ฝ selfie: olive skin +๐คณ๐พ selfie: brown skin +๐คณ๐ฟ selfie: black skin +๐คด๐ป prince: white skin +๐คด๐ผ prince: tan skin +๐คด๐ฝ prince: olive skin +๐คด๐พ prince: brown skin +๐คด๐ฟ prince: black skin +๐คต๐ป person in tuxedo: white skin +๐คต๐ผ person in tuxedo: tan skin +๐คต๐ฝ person in tuxedo: olive skin +๐คต๐พ person in tuxedo: brown skin +๐คต๐ฟ person in tuxedo: black skin +๐คถ๐ป Mrs. Claus: white skin +๐คถ๐ผ Mrs. Claus: tan skin +๐คถ๐ฝ Mrs. Claus: olive skin +๐คถ๐พ Mrs. Claus: brown skin +๐คถ๐ฟ Mrs. Claus: black skin +๐คท๐ป person shrugging: white skin +๐คท๐ผ person shrugging: tan skin +๐คท๐ฝ person shrugging: olive skin +๐คท๐พ person shrugging: brown skin +๐คท๐ฟ person shrugging: black skin +๐คธ๐ป person cartwheeling: white skin +๐คธ๐ผ person cartwheeling: tan skin +๐คธ๐ฝ person cartwheeling: olive skin +๐คธ๐พ person cartwheeling: brown skin +๐คธ๐ฟ person cartwheeling: black skin +๐คน๐ป person juggling: white skin +๐คน๐ผ person juggling: tan skin +๐คน๐ฝ person juggling: olive skin +๐คน๐พ person juggling: brown skin +๐คน๐ฟ person juggling: black skin +๐คฝ๐ป person playing water polo: white skin +๐คฝ๐ผ person playing water polo: tan skin +๐คฝ๐ฝ person playing water polo: olive skin +๐คฝ๐พ person playing water polo: brown skin +๐คฝ๐ฟ person playing water polo: black skin +๐คพ๐ป person playing handball: white skin +๐คพ๐ผ person playing handball: tan skin +๐คพ๐ฝ person playing handball: olive skin +๐คพ๐พ person playing handball: brown skin +๐คพ๐ฟ person playing handball: black skin +๐ฅท๐ป ninja: white skin +๐ฅท๐ผ ninja: tan skin +๐ฅท๐ฝ ninja: olive skin +๐ฅท๐พ ninja: brown skin +๐ฅท๐ฟ ninja: black skin +๐ฆต๐ป leg: white skin +๐ฆต๐ผ leg: tan skin +๐ฆต๐ฝ leg: olive skin +๐ฆต๐พ leg: brown skin +๐ฆต๐ฟ leg: black skin +๐ฆถ๐ป foot: white skin +๐ฆถ๐ผ foot: tan skin +๐ฆถ๐ฝ foot: olive skin +๐ฆถ๐พ foot: brown skin +๐ฆถ๐ฟ foot: black skin +๐ฆธ๐ป superhero: white skin +๐ฆธ๐ผ superhero: tan skin +๐ฆธ๐ฝ superhero: olive skin +๐ฆธ๐พ superhero: brown skin +๐ฆธ๐ฟ superhero: black skin +๐ฆน๐ป supervillain: white skin +๐ฆน๐ผ supervillain: tan skin +๐ฆน๐ฝ supervillain: olive skin +๐ฆน๐พ supervillain: brown skin +๐ฆน๐ฟ supervillain: black skin +๐ฆป๐ป ear with hearing aid: white skin +๐ฆป๐ผ ear with hearing aid: tan skin +๐ฆป๐ฝ ear with hearing aid: olive skin +๐ฆป๐พ ear with hearing aid: brown skin +๐ฆป๐ฟ ear with hearing aid: black skin +๐ง๐ป person standing: white skin +๐ง๐ผ person standing: tan skin +๐ง๐ฝ person standing: olive skin +๐ง๐พ person standing: brown skin +๐ง๐ฟ person standing: black skin +๐ง๐ป person kneeling: white skin +๐ง๐ผ person kneeling: tan skin +๐ง๐ฝ person kneeling: olive skin +๐ง๐พ person kneeling: brown skin +๐ง๐ฟ person kneeling: black skin +๐ง๐ป deaf person: white skin +๐ง๐ผ deaf person: tan skin +๐ง๐ฝ deaf person: olive skin +๐ง๐พ deaf person: brown skin +๐ง๐ฟ deaf person: black skin +๐ง๐ป person: white skin +๐ง๐ผ person: tan skin +๐ง๐ฝ person: olive skin +๐ง๐พ person: brown skin +๐ง๐ฟ person: black skin +๐ง๐ป child: white skin +๐ง๐ผ child: tan skin +๐ง๐ฝ child: olive skin +๐ง๐พ child: brown skin +๐ง๐ฟ child: black skin +๐ง๐ป older person: white skin +๐ง๐ผ older person: tan skin +๐ง๐ฝ older person: olive skin +๐ง๐พ older person: brown skin +๐ง๐ฟ older person: black skin +๐ง๐ป person: white skin, beard +๐ง๐ผ person: tan skin, beard +๐ง๐ฝ person: olive skin, beard +๐ง๐พ person: brown skin, beard +๐ง๐ฟ person: black skin, beard +๐ง๐ป woman with headscarf: white skin +๐ง๐ผ woman with headscarf: tan skin +๐ง๐ฝ woman with headscarf: olive skin +๐ง๐พ woman with headscarf: brown skin +๐ง๐ฟ woman with headscarf: black skin +๐ง๐ป person in steamy room: white skin +๐ง๐ผ person in steamy room: tan skin +๐ง๐ฝ person in steamy room: olive skin +๐ง๐พ person in steamy room: brown skin +๐ง๐ฟ person in steamy room: black skin +๐ง๐ป person climbing: white skin +๐ง๐ผ person climbing: tan skin +๐ง๐ฝ person climbing: olive skin +๐ง๐พ person climbing: brown skin +๐ง๐ฟ person climbing: black skin +๐ง๐ป person in lotus position: white skin +๐ง๐ผ person in lotus position: tan skin +๐ง๐ฝ person in lotus position: olive skin +๐ง๐พ person in lotus position: brown skin +๐ง๐ฟ person in lotus position: black skin +๐ง๐ป mage: white skin +๐ง๐ผ mage: tan skin +๐ง๐ฝ mage: olive skin +๐ง๐พ mage: brown skin +๐ง๐ฟ mage: black skin +๐ง๐ป fairy: white skin +๐ง๐ผ fairy: tan skin +๐ง๐ฝ fairy: olive skin +๐ง๐พ fairy: brown skin +๐ง๐ฟ fairy: black skin +๐ง๐ป vampire: white skin +๐ง๐ผ vampire: tan skin +๐ง๐ฝ vampire: olive skin +๐ง๐พ vampire: brown skin +๐ง๐ฟ vampire: black skin +๐ง๐ป merperson: white skin +๐ง๐ผ merperson: tan skin +๐ง๐ฝ merperson: olive skin +๐ง๐พ merperson: brown skin +๐ง๐ฟ merperson: black skin +๐ง๐ป elf: white skin +๐ง๐ผ elf: tan skin +๐ง๐ฝ elf: olive skin +๐ง๐พ elf: brown skin +๐ง๐ฟ elf: black skin +๐ซ
๐ป person with crown: white skin +๐ซ
๐ผ person with crown: tan skin +๐ซ
๐ฝ person with crown: olive skin +๐ซ
๐พ person with crown: brown skin +๐ซ
๐ฟ person with crown: black skin +๐ซฐ๐ป hand with index finger and thumb crossed: white skin +๐ซฐ๐ผ hand with index finger and thumb crossed: tan skin +๐ซฐ๐ฝ hand with index finger and thumb crossed: olive skin +๐ซฐ๐พ hand with index finger and thumb crossed: brown skin +๐ซฐ๐ฟ hand with index finger and thumb crossed: black skin +๐ซฑ๐ป rightwards hand: white skin +๐ซฑ๐ผ rightwards hand: tan skin +๐ซฑ๐ฝ rightwards hand: olive skin +๐ซฑ๐พ rightwards hand: brown skin +๐ซฑ๐ฟ rightwards hand: black skin +๐ซฒ๐ป leftwards hand: white skin +๐ซฒ๐ผ leftwards hand: tan skin +๐ซฒ๐ฝ leftwards hand: olive skin +๐ซฒ๐พ leftwards hand: brown skin +๐ซฒ๐ฟ leftwards hand: black skin +๐ซณ๐ป palm down hand: white skin +๐ซณ๐ผ palm down hand: tan skin +๐ซณ๐ฝ palm down hand: olive skin +๐ซณ๐พ palm down hand: brown skin +๐ซณ๐ฟ palm down hand: black skin +๐ซด๐ป palm up hand: white skin +๐ซด๐ผ palm up hand: tan skin +๐ซด๐ฝ palm up hand: olive skin +๐ซด๐พ palm up hand: brown skin +๐ซด๐ฟ palm up hand: black skin +๐ซต๐ป index pointing at the viewer: white skin +๐ซต๐ผ index pointing at the viewer: tan skin +๐ซต๐ฝ index pointing at the viewer: olive skin +๐ซต๐พ index pointing at the viewer: brown skin +๐ซต๐ฟ index pointing at the viewer: black skin +๐ซถ๐ป heart hands: white skin +๐ซถ๐ผ heart hands: tan skin +๐ซถ๐ฝ heart hands: olive skin +๐ซถ๐พ heart hands: brown skin +๐ซถ๐ฟ heart hands: black skin +๐ซท๐ป leftwards pushing hand: white skin +๐ซท๐ผ leftwards pushing hand: tan skin +๐ซท๐ฝ leftwards pushing hand: olive skin +๐ซท๐พ leftwards pushing hand: brown skin +๐ซท๐ฟ leftwards pushing hand: black skin +๐ซธ๐ป rightwards pushing hand: white skin +๐ซธ๐ผ rightwards pushing hand: tan skin +๐ซธ๐ฝ rightwards pushing hand: olive skin +๐ซธ๐พ rightwards pushing hand: brown skin +๐ซธ๐ฟ rightwards pushing hand: black skin +๐จโ๐ฆ family: man, boy +๐จโ๐ฆโ๐ฆ family: man, boy, boy +๐จโ๐ง family: man, girl +๐จโ๐งโ๐ฆ family: man, girl, boy +๐จโ๐งโ๐ง family: man, girl, girl +๐จโ๐ฉโ๐ฆ family: man, woman, boy +๐จโ๐ฉโ๐ฆโ๐ฆ family: man, woman, boy, boy +๐จโ๐ฉโ๐ง family: man, woman, girl +๐จโ๐ฉโ๐งโ๐ฆ family: man, woman, girl, boy +๐จโ๐ฉโ๐งโ๐ง family: man, woman, girl, girl +๐จ๐ปโ๐คโ๐จ๐ผ men holding hands: white skin, tan skin +๐จ๐ปโ๐คโ๐จ๐ฝ men holding hands: white skin, olive skin +๐จ๐ปโ๐คโ๐จ๐พ men holding hands: white skin, brown skin +๐จ๐ปโ๐คโ๐จ๐ฟ men holding hands: white skin, black skin +๐จ๐ผโ๐คโ๐จ๐ป men holding hands: tan skin, white skin +๐จ๐ผโ๐คโ๐จ๐ฝ men holding hands: tan skin, olive skin +๐จ๐ผโ๐คโ๐จ๐พ men holding hands: tan skin, brown skin +๐จ๐ผโ๐คโ๐จ๐ฟ men holding hands: tan skin, black skin +๐จ๐ฝโ๐คโ๐จ๐ป men holding hands: olive skin, white skin +๐จ๐ฝโ๐คโ๐จ๐ผ men holding hands: olive skin, tan skin +๐จ๐ฝโ๐คโ๐จ๐พ men holding hands: olive skin, brown skin +๐จ๐ฝโ๐คโ๐จ๐ฟ men holding hands: olive skin, black skin +๐จ๐พโ๐คโ๐จ๐ป men holding hands: brown skin, white skin +๐จ๐พโ๐คโ๐จ๐ผ men holding hands: brown skin, tan skin +๐จ๐พโ๐คโ๐จ๐ฝ men holding hands: brown skin, olive skin +๐จ๐พโ๐คโ๐จ๐ฟ men holding hands: brown skin, black skin +๐จ๐ฟโ๐คโ๐จ๐ป men holding hands: black skin, white skin +๐จ๐ฟโ๐คโ๐จ๐ผ men holding hands: black skin, tan skin +๐จ๐ฟโ๐คโ๐จ๐ฝ men holding hands: black skin, olive skin +๐จ๐ฟโ๐คโ๐จ๐พ men holding hands: black skin, brown skin +๐ฉโโค๏ธโ๐จ couple with heart: woman, man +๐ฉโโค๏ธโ๐ฉ couple with heart: woman, woman +๐ฉโโค๏ธโ๐โ๐จ kiss: woman, man +๐ฉโโค๏ธโ๐โ๐ฉ kiss: woman, woman +๐ฉโ๐ฆ family: woman, boy +๐ฉโ๐ฆโ๐ฆ family: woman, boy, boy +๐ฉโ๐ง family: woman, girl +๐ฉโ๐งโ๐ฆ family: woman, girl, boy +๐ฉโ๐งโ๐ง family: woman, girl, girl +๐ฉโ๐ฉโ๐ฆ family: woman, woman, boy +๐ฉโ๐ฉโ๐ฆโ๐ฆ family: woman, woman, boy, boy +๐ฉโ๐ฉโ๐ง family: woman, woman, girl +๐ฉโ๐ฉโ๐งโ๐ฆ family: woman, woman, girl, boy +๐ฉโ๐ฉโ๐งโ๐ง family: woman, woman, girl, girl +๐ฉ๐ปโโค๏ธโ๐จ๐ป couple with heart: woman, man, white skin +๐ฉ๐ปโโค๏ธโ๐จ๐ผ couple with heart: woman, man, white skin, tan skin +๐ฉ๐ปโโค๏ธโ๐จ๐ฝ couple with heart: woman, man, white skin, olive skin +๐ฉ๐ปโโค๏ธโ๐จ๐พ couple with heart: woman, man, white skin, brown skin +๐ฉ๐ปโโค๏ธโ๐จ๐ฟ couple with heart: woman, man, white skin, black skin +๐ฉ๐ปโโค๏ธโ๐ฉ๐ป couple with heart: woman, woman, white skin +๐ฉ๐ปโโค๏ธโ๐ฉ๐ผ couple with heart: woman, woman, white skin, tan skin +๐ฉ๐ปโโค๏ธโ๐ฉ๐ฝ couple with heart: woman, woman, white skin, olive skin +๐ฉ๐ปโโค๏ธโ๐ฉ๐พ couple with heart: woman, woman, white skin, brown skin +๐ฉ๐ปโโค๏ธโ๐ฉ๐ฟ couple with heart: woman, woman, white skin, black skin +๐ฉ๐ปโโค๏ธโ๐โ๐จ๐ป kiss: woman, man, white skin +๐ฉ๐ปโโค๏ธโ๐โ๐จ๐ผ kiss: woman, man, white skin, tan skin +๐ฉ๐ปโโค๏ธโ๐โ๐จ๐ฝ kiss: woman, man, white skin, olive skin +๐ฉ๐ปโโค๏ธโ๐โ๐จ๐พ kiss: woman, man, white skin, brown skin +๐ฉ๐ปโโค๏ธโ๐โ๐จ๐ฟ kiss: woman, man, white skin, black skin +๐ฉ๐ปโโค๏ธโ๐โ๐ฉ๐ป kiss: woman, woman, white skin +๐ฉ๐ปโโค๏ธโ๐โ๐ฉ๐ผ kiss: woman, woman, white skin, tan skin +๐ฉ๐ปโโค๏ธโ๐โ๐ฉ๐ฝ kiss: woman, woman, white skin, olive skin +๐ฉ๐ปโโค๏ธโ๐โ๐ฉ๐พ kiss: woman, woman, white skin, brown skin +๐ฉ๐ปโโค๏ธโ๐โ๐ฉ๐ฟ kiss: woman, woman, white skin, black skin +๐ฉ๐ปโ๐คโ๐จ๐ผ woman and man holding hands: white skin, tan skin +๐ฉ๐ปโ๐คโ๐จ๐ฝ woman and man holding hands: white skin, olive skin +๐ฉ๐ปโ๐คโ๐จ๐พ woman and man holding hands: white skin, brown skin +๐ฉ๐ปโ๐คโ๐จ๐ฟ woman and man holding hands: white skin, black skin +๐ฉ๐ปโ๐คโ๐ฉ๐ผ women holding hands: white skin, tan skin +๐ฉ๐ปโ๐คโ๐ฉ๐ฝ women holding hands: white skin, olive skin +๐ฉ๐ปโ๐คโ๐ฉ๐พ women holding hands: white skin, brown skin +๐ฉ๐ปโ๐คโ๐ฉ๐ฟ women holding hands: white skin, black skin +๐ฉ๐ผโโค๏ธโ๐จ๐ป couple with heart: woman, man, tan skin, white skin +๐ฉ๐ผโโค๏ธโ๐จ๐ผ couple with heart: woman, man, tan skin +๐ฉ๐ผโโค๏ธโ๐จ๐ฝ couple with heart: woman, man, tan skin, olive skin +๐ฉ๐ผโโค๏ธโ๐จ๐พ couple with heart: woman, man, tan skin, brown skin +๐ฉ๐ผโโค๏ธโ๐จ๐ฟ couple with heart: woman, man, tan skin, black skin +๐ฉ๐ผโโค๏ธโ๐ฉ๐ป couple with heart: woman, woman, tan skin, white skin +๐ฉ๐ผโโค๏ธโ๐ฉ๐ผ couple with heart: woman, woman, tan skin +๐ฉ๐ผโโค๏ธโ๐ฉ๐ฝ couple with heart: woman, woman, tan skin, olive skin +๐ฉ๐ผโโค๏ธโ๐ฉ๐พ couple with heart: woman, woman, tan skin, brown skin +๐ฉ๐ผโโค๏ธโ๐ฉ๐ฟ couple with heart: woman, woman, tan skin, black skin +๐ฉ๐ผโโค๏ธโ๐โ๐จ๐ป kiss: woman, man, tan skin, white skin +๐ฉ๐ผโโค๏ธโ๐โ๐จ๐ผ kiss: woman, man, tan skin +๐ฉ๐ผโโค๏ธโ๐โ๐จ๐ฝ kiss: woman, man, tan skin, olive skin +๐ฉ๐ผโโค๏ธโ๐โ๐จ๐พ kiss: woman, man, tan skin, brown skin +๐ฉ๐ผโโค๏ธโ๐โ๐จ๐ฟ kiss: woman, man, tan skin, black skin +๐ฉ๐ผโโค๏ธโ๐โ๐ฉ๐ป kiss: woman, woman, tan skin, white skin +๐ฉ๐ผโโค๏ธโ๐โ๐ฉ๐ผ kiss: woman, woman, tan skin +๐ฉ๐ผโโค๏ธโ๐โ๐ฉ๐ฝ kiss: woman, woman, tan skin, olive skin +๐ฉ๐ผโโค๏ธโ๐โ๐ฉ๐พ kiss: woman, woman, tan skin, brown skin +๐ฉ๐ผโโค๏ธโ๐โ๐ฉ๐ฟ kiss: woman, woman, tan skin, black skin +๐ฉ๐ผโ๐คโ๐จ๐ป woman and man holding hands: tan skin, white skin +๐ฉ๐ผโ๐คโ๐จ๐ฝ woman and man holding hands: tan skin, olive skin +๐ฉ๐ผโ๐คโ๐จ๐พ woman and man holding hands: tan skin, brown skin +๐ฉ๐ผโ๐คโ๐จ๐ฟ woman and man holding hands: tan skin, black skin +๐ฉ๐ผโ๐คโ๐ฉ๐ป women holding hands: tan skin, white skin +๐ฉ๐ผโ๐คโ๐ฉ๐ฝ women holding hands: tan skin, olive skin +๐ฉ๐ผโ๐คโ๐ฉ๐พ women holding hands: tan skin, brown skin +๐ฉ๐ผโ๐คโ๐ฉ๐ฟ women holding hands: tan skin, black skin +๐ฉ๐ฝโโค๏ธโ๐จ๐ป couple with heart: woman, man, olive skin, white skin +๐ฉ๐ฝโโค๏ธโ๐จ๐ผ couple with heart: woman, man, olive skin, tan skin +๐ฉ๐ฝโโค๏ธโ๐จ๐ฝ couple with heart: woman, man, olive skin +๐ฉ๐ฝโโค๏ธโ๐จ๐พ couple with heart: woman, man, olive skin, brown skin +๐ฉ๐ฝโโค๏ธโ๐จ๐ฟ couple with heart: woman, man, olive skin, black skin +๐ฉ๐ฝโโค๏ธโ๐ฉ๐ป couple with heart: woman, woman, olive skin, white skin +๐ฉ๐ฝโโค๏ธโ๐ฉ๐ผ couple with heart: woman, woman, olive skin, tan skin +๐ฉ๐ฝโโค๏ธโ๐ฉ๐ฝ couple with heart: woman, woman, olive skin +๐ฉ๐ฝโโค๏ธโ๐ฉ๐พ couple with heart: woman, woman, olive skin, brown skin +๐ฉ๐ฝโโค๏ธโ๐ฉ๐ฟ couple with heart: woman, woman, olive skin, black skin +๐ฉ๐ฝโโค๏ธโ๐โ๐จ๐ป kiss: woman, man, olive skin, white skin +๐ฉ๐ฝโโค๏ธโ๐โ๐จ๐ผ kiss: woman, man, olive skin, tan skin +๐ฉ๐ฝโโค๏ธโ๐โ๐จ๐ฝ kiss: woman, man, olive skin +๐ฉ๐ฝโโค๏ธโ๐โ๐จ๐พ kiss: woman, man, olive skin, brown skin +๐ฉ๐ฝโโค๏ธโ๐โ๐จ๐ฟ kiss: woman, man, olive skin, black skin +๐ฉ๐ฝโโค๏ธโ๐โ๐ฉ๐ป kiss: woman, woman, olive skin, white skin +๐ฉ๐ฝโโค๏ธโ๐โ๐ฉ๐ผ kiss: woman, woman, olive skin, tan skin +๐ฉ๐ฝโโค๏ธโ๐โ๐ฉ๐ฝ kiss: woman, woman, olive skin +๐ฉ๐ฝโโค๏ธโ๐โ๐ฉ๐พ kiss: woman, woman, olive skin, brown skin +๐ฉ๐ฝโโค๏ธโ๐โ๐ฉ๐ฟ kiss: woman, woman, olive skin, black skin +๐ฉ๐ฝโ๐คโ๐จ๐ป woman and man holding hands: olive skin, white skin +๐ฉ๐ฝโ๐คโ๐จ๐ผ woman and man holding hands: olive skin, tan skin +๐ฉ๐ฝโ๐คโ๐จ๐พ woman and man holding hands: olive skin, brown skin +๐ฉ๐ฝโ๐คโ๐จ๐ฟ woman and man holding hands: olive skin, black skin +๐ฉ๐ฝโ๐คโ๐ฉ๐ป women holding hands: olive skin, white skin +๐ฉ๐ฝโ๐คโ๐ฉ๐ผ women holding hands: olive skin, tan skin +๐ฉ๐ฝโ๐คโ๐ฉ๐พ women holding hands: olive skin, brown skin +๐ฉ๐ฝโ๐คโ๐ฉ๐ฟ women holding hands: olive skin, black skin +๐ฉ๐พโโค๏ธโ๐จ๐ป couple with heart: woman, man, brown skin, white skin +๐ฉ๐พโโค๏ธโ๐จ๐ผ couple with heart: woman, man, brown skin, tan skin +๐ฉ๐พโโค๏ธโ๐จ๐ฝ couple with heart: woman, man, brown skin, olive skin +๐ฉ๐พโโค๏ธโ๐จ๐พ couple with heart: woman, man, brown skin +๐ฉ๐พโโค๏ธโ๐จ๐ฟ couple with heart: woman, man, brown skin, black skin +๐ฉ๐พโโค๏ธโ๐ฉ๐ป couple with heart: woman, woman, brown skin, white skin +๐ฉ๐พโโค๏ธโ๐ฉ๐ผ couple with heart: woman, woman, brown skin, tan skin +๐ฉ๐พโโค๏ธโ๐ฉ๐ฝ couple with heart: woman, woman, brown skin, olive skin +๐ฉ๐พโโค๏ธโ๐ฉ๐พ couple with heart: woman, woman, brown skin +๐ฉ๐พโโค๏ธโ๐ฉ๐ฟ couple with heart: woman, woman, brown skin, black skin +๐ฉ๐พโโค๏ธโ๐โ๐จ๐ป kiss: woman, man, brown skin, white skin +๐ฉ๐พโโค๏ธโ๐โ๐จ๐ผ kiss: woman, man, brown skin, tan skin +๐ฉ๐พโโค๏ธโ๐โ๐จ๐ฝ kiss: woman, man, brown skin, olive skin +๐ฉ๐พโโค๏ธโ๐โ๐จ๐พ kiss: woman, man, brown skin +๐ฉ๐พโโค๏ธโ๐โ๐จ๐ฟ kiss: woman, man, brown skin, black skin +๐ฉ๐พโโค๏ธโ๐โ๐ฉ๐ป kiss: woman, woman, brown skin, white skin +๐ฉ๐พโโค๏ธโ๐โ๐ฉ๐ผ kiss: woman, woman, brown skin, tan skin +๐ฉ๐พโโค๏ธโ๐โ๐ฉ๐ฝ kiss: woman, woman, brown skin, olive skin +๐ฉ๐พโโค๏ธโ๐โ๐ฉ๐พ kiss: woman, woman, brown skin +๐ฉ๐พโโค๏ธโ๐โ๐ฉ๐ฟ kiss: woman, woman, brown skin, black skin +๐ฉ๐พโ๐คโ๐จ๐ป woman and man holding hands: brown skin, white skin +๐ฉ๐พโ๐คโ๐จ๐ผ woman and man holding hands: brown skin, tan skin +๐ฉ๐พโ๐คโ๐จ๐ฝ woman and man holding hands: brown skin, olive skin +๐ฉ๐พโ๐คโ๐จ๐ฟ woman and man holding hands: brown skin, black skin +๐ฉ๐พโ๐คโ๐ฉ๐ป women holding hands: brown skin, white skin +๐ฉ๐พโ๐คโ๐ฉ๐ผ women holding hands: brown skin, tan skin +๐ฉ๐พโ๐คโ๐ฉ๐ฝ women holding hands: brown skin, olive skin +๐ฉ๐พโ๐คโ๐ฉ๐ฟ women holding hands: brown skin, black skin +๐ฉ๐ฟโโค๏ธโ๐จ๐ป couple with heart: woman, man, black skin, white skin +๐ฉ๐ฟโโค๏ธโ๐จ๐ผ couple with heart: woman, man, black skin, tan skin +๐ฉ๐ฟโโค๏ธโ๐จ๐ฝ couple with heart: woman, man, black skin, olive skin +๐ฉ๐ฟโโค๏ธโ๐จ๐พ couple with heart: woman, man, black skin, brown skin +๐ฉ๐ฟโโค๏ธโ๐จ๐ฟ couple with heart: woman, man, black skin +๐ฉ๐ฟโโค๏ธโ๐ฉ๐ป couple with heart: woman, woman, black skin, white skin +๐ฉ๐ฟโโค๏ธโ๐ฉ๐ผ couple with heart: woman, woman, black skin, tan skin +๐ฉ๐ฟโโค๏ธโ๐ฉ๐ฝ couple with heart: woman, woman, black skin, olive skin +๐ฉ๐ฟโโค๏ธโ๐ฉ๐พ couple with heart: woman, woman, black skin, brown skin +๐ฉ๐ฟโโค๏ธโ๐ฉ๐ฟ couple with heart: woman, woman, black skin +๐ฉ๐ฟโโค๏ธโ๐โ๐จ๐ป kiss: woman, man, black skin, white skin +๐ฉ๐ฟโโค๏ธโ๐โ๐จ๐ผ kiss: woman, man, black skin, tan skin +๐ฉ๐ฟโโค๏ธโ๐โ๐จ๐ฝ kiss: woman, man, black skin, olive skin +๐ฉ๐ฟโโค๏ธโ๐โ๐จ๐พ kiss: woman, man, black skin, brown skin +๐ฉ๐ฟโโค๏ธโ๐โ๐จ๐ฟ kiss: woman, man, black skin +๐ฉ๐ฟโโค๏ธโ๐โ๐ฉ๐ป kiss: woman, woman, black skin, white skin +๐ฉ๐ฟโโค๏ธโ๐โ๐ฉ๐ผ kiss: woman, woman, black skin, tan skin +๐ฉ๐ฟโโค๏ธโ๐โ๐ฉ๐ฝ kiss: woman, woman, black skin, olive skin +๐ฉ๐ฟโโค๏ธโ๐โ๐ฉ๐พ kiss: woman, woman, black skin, brown skin +๐ฉ๐ฟโโค๏ธโ๐โ๐ฉ๐ฟ kiss: woman, woman, black skin +๐ฉ๐ฟโ๐คโ๐จ๐ป woman and man holding hands: black skin, white skin +๐ฉ๐ฟโ๐คโ๐จ๐ผ woman and man holding hands: black skin, tan skin +๐ฉ๐ฟโ๐คโ๐จ๐ฝ woman and man holding hands: black skin, olive skin +๐ฉ๐ฟโ๐คโ๐จ๐พ woman and man holding hands: black skin, brown skin +๐ฉ๐ฟโ๐คโ๐ฉ๐ป women holding hands: black skin, white skin +๐ฉ๐ฟโ๐คโ๐ฉ๐ผ women holding hands: black skin, tan skin +๐ฉ๐ฟโ๐คโ๐ฉ๐ฝ women holding hands: black skin, olive skin +๐ฉ๐ฟโ๐คโ๐ฉ๐พ women holding hands: black skin, brown skin +๐งโ๐คโ๐ง people holding hands +๐งโ๐งโ๐ง family: adult, adult, child +๐งโ๐งโ๐งโ๐ง family: adult, adult, child, child +๐งโ๐ง family: adult, child +๐งโ๐งโ๐ง family: adult, child, child +๐ง๐ปโโค๏ธโ๐โ๐ง๐ผ kiss: person, person, white skin, tan skin +๐ง๐ปโโค๏ธโ๐โ๐ง๐ฝ kiss: person, person, white skin, olive skin +๐ง๐ปโโค๏ธโ๐โ๐ง๐พ kiss: person, person, white skin, brown skin +๐ง๐ปโโค๏ธโ๐โ๐ง๐ฟ kiss: person, person, white skin, black skin +๐ง๐ปโโค๏ธโ๐ง๐ผ couple with heart: person, person, white skin, tan skin +๐ง๐ปโโค๏ธโ๐ง๐ฝ couple with heart: person, person, white skin, olive skin +๐ง๐ปโโค๏ธโ๐ง๐พ couple with heart: person, person, white skin, brown skin +๐ง๐ปโโค๏ธโ๐ง๐ฟ couple with heart: person, person, white skin, black skin +๐ง๐ปโ๐คโ๐ง๐ป people holding hands: white skin +๐ง๐ปโ๐คโ๐ง๐ผ people holding hands: white skin, tan skin +๐ง๐ปโ๐คโ๐ง๐ฝ people holding hands: white skin, olive skin +๐ง๐ปโ๐คโ๐ง๐พ people holding hands: white skin, brown skin +๐ง๐ปโ๐คโ๐ง๐ฟ people holding hands: white skin, black skin +๐ง๐ผโโค๏ธโ๐โ๐ง๐ป kiss: person, person, tan skin, white skin +๐ง๐ผโโค๏ธโ๐โ๐ง๐ฝ kiss: person, person, tan skin, olive skin +๐ง๐ผโโค๏ธโ๐โ๐ง๐พ kiss: person, person, tan skin, brown skin +๐ง๐ผโโค๏ธโ๐โ๐ง๐ฟ kiss: person, person, tan skin, black skin +๐ง๐ผโโค๏ธโ๐ง๐ป couple with heart: person, person, tan skin, white skin +๐ง๐ผโโค๏ธโ๐ง๐ฝ couple with heart: person, person, tan skin, olive skin +๐ง๐ผโโค๏ธโ๐ง๐พ couple with heart: person, person, tan skin, brown skin +๐ง๐ผโโค๏ธโ๐ง๐ฟ couple with heart: person, person, tan skin, black skin +๐ง๐ผโ๐คโ๐ง๐ป people holding hands: tan skin, white skin +๐ง๐ผโ๐คโ๐ง๐ผ people holding hands: tan skin +๐ง๐ผโ๐คโ๐ง๐ฝ people holding hands: tan skin, olive skin +๐ง๐ผโ๐คโ๐ง๐พ people holding hands: tan skin, brown skin +๐ง๐ผโ๐คโ๐ง๐ฟ people holding hands: tan skin, black skin +๐ง๐ฝโโค๏ธโ๐โ๐ง๐ป kiss: person, person, olive skin, white skin +๐ง๐ฝโโค๏ธโ๐โ๐ง๐ผ kiss: person, person, olive skin, tan skin +๐ง๐ฝโโค๏ธโ๐โ๐ง๐พ kiss: person, person, olive skin, brown skin +๐ง๐ฝโโค๏ธโ๐โ๐ง๐ฟ kiss: person, person, olive skin, black skin +๐ง๐ฝโโค๏ธโ๐ง๐ป couple with heart: person, person, olive skin, white skin +๐ง๐ฝโโค๏ธโ๐ง๐ผ couple with heart: person, person, olive skin, tan skin +๐ง๐ฝโโค๏ธโ๐ง๐พ couple with heart: person, person, olive skin, brown skin +๐ง๐ฝโโค๏ธโ๐ง๐ฟ couple with heart: person, person, olive skin, black skin +๐ง๐ฝโ๐คโ๐ง๐ป people holding hands: olive skin, white skin +๐ง๐ฝโ๐คโ๐ง๐ผ people holding hands: olive skin, tan skin +๐ง๐ฝโ๐คโ๐ง๐ฝ people holding hands: olive skin +๐ง๐ฝโ๐คโ๐ง๐พ people holding hands: olive skin, brown skin +๐ง๐ฝโ๐คโ๐ง๐ฟ people holding hands: olive skin, black skin +๐ง๐พโโค๏ธโ๐โ๐ง๐ป kiss: person, person, brown skin, white skin +๐ง๐พโโค๏ธโ๐โ๐ง๐ผ kiss: person, person, brown skin, tan skin +๐ง๐พโโค๏ธโ๐โ๐ง๐ฝ kiss: person, person, brown skin, olive skin +๐ง๐พโโค๏ธโ๐โ๐ง๐ฟ kiss: person, person, brown skin, black skin +๐ง๐พโโค๏ธโ๐ง๐ป couple with heart: person, person, brown skin, white skin +๐ง๐พโโค๏ธโ๐ง๐ผ couple with heart: person, person, brown skin, tan skin +๐ง๐พโโค๏ธโ๐ง๐ฝ couple with heart: person, person, brown skin, olive skin +๐ง๐พโโค๏ธโ๐ง๐ฟ couple with heart: person, person, brown skin, black skin +๐ง๐พโ๐คโ๐ง๐ป people holding hands: brown skin, white skin +๐ง๐พโ๐คโ๐ง๐ผ people holding hands: brown skin, tan skin +๐ง๐พโ๐คโ๐ง๐ฝ people holding hands: brown skin, olive skin +๐ง๐พโ๐คโ๐ง๐พ people holding hands: brown skin +๐ง๐พโ๐คโ๐ง๐ฟ people holding hands: brown skin, black skin +๐ง๐ฟโโค๏ธโ๐โ๐ง๐ป kiss: person, person, black skin, white skin +๐ง๐ฟโโค๏ธโ๐โ๐ง๐ผ kiss: person, person, black skin, tan skin +๐ง๐ฟโโค๏ธโ๐โ๐ง๐ฝ kiss: person, person, black skin, olive skin +๐ง๐ฟโโค๏ธโ๐โ๐ง๐พ kiss: person, person, black skin, brown skin +๐ง๐ฟโโค๏ธโ๐ง๐ป couple with heart: person, person, black skin, white skin +๐ง๐ฟโโค๏ธโ๐ง๐ผ couple with heart: person, person, black skin, tan skin +๐ง๐ฟโโค๏ธโ๐ง๐ฝ couple with heart: person, person, black skin, olive skin +๐ง๐ฟโโค๏ธโ๐ง๐พ couple with heart: person, person, black skin, brown skin +๐ง๐ฟโ๐คโ๐ง๐ป people holding hands: black skin, white skin +๐ง๐ฟโ๐คโ๐ง๐ผ people holding hands: black skin, tan skin +๐ง๐ฟโ๐คโ๐ง๐ฝ people holding hands: black skin, olive skin +๐ง๐ฟโ๐คโ๐ง๐พ people holding hands: black skin, brown skin +๐ง๐ฟโ๐คโ๐ง๐ฟ people holding hands: black skin +๐ซฑ๐ปโ๐ซฒ๐ผ handshake: white skin, tan skin +๐ซฑ๐ปโ๐ซฒ๐ฝ handshake: white skin, olive skin +๐ซฑ๐ปโ๐ซฒ๐พ handshake: white skin, brown skin +๐ซฑ๐ปโ๐ซฒ๐ฟ handshake: white skin, black skin +๐ซฑ๐ผโ๐ซฒ๐ป handshake: tan skin, white skin +๐ซฑ๐ผโ๐ซฒ๐ฝ handshake: tan skin, olive skin +๐ซฑ๐ผโ๐ซฒ๐พ handshake: tan skin, brown skin +๐ซฑ๐ผโ๐ซฒ๐ฟ handshake: tan skin, black skin +๐ซฑ๐ฝโ๐ซฒ๐ป handshake: olive skin, white skin +๐ซฑ๐ฝโ๐ซฒ๐ผ handshake: olive skin, tan skin +๐ซฑ๐ฝโ๐ซฒ๐พ handshake: olive skin, brown skin +๐ซฑ๐ฝโ๐ซฒ๐ฟ handshake: olive skin, black skin +๐ซฑ๐พโ๐ซฒ๐ป handshake: brown skin, white skin +๐ซฑ๐พโ๐ซฒ๐ผ handshake: brown skin, tan skin +๐ซฑ๐พโ๐ซฒ๐ฝ handshake: brown skin, olive skin +๐ซฑ๐พโ๐ซฒ๐ฟ handshake: brown skin, black skin +๐ซฑ๐ฟโ๐ซฒ๐ป handshake: black skin, white skin +๐ซฑ๐ฟโ๐ซฒ๐ผ handshake: black skin, tan skin +๐ซฑ๐ฟโ๐ซฒ๐ฝ handshake: black skin, olive skin +๐ซฑ๐ฟโ๐ซฒ๐พ handshake: black skin, brown skin +๐โโก๏ธ person running facing right +๐๐ปโโก๏ธ person running facing right: white skin +๐๐ผโโก๏ธ person running facing right: tan skin +๐๐ฝโโก๏ธ person running facing right: olive skin +๐๐พโโก๏ธ person running facing right: brown skin +๐๐ฟโโก๏ธ person running facing right: black skin +๐จโโ๏ธ man health worker +๐จโโ๏ธ man judge +๐จโโ๏ธ man pilot +๐จโ๐พ man farmer +๐จโ๐ณ man cook +๐จโ๐ผ man feeding baby +๐จโ๐ man student +๐จโ๐ค man singer +๐จโ๐จ man artist +๐จโ๐ซ man teacher +๐จโ๐ญ man factory worker +๐จโ๐ป man technologist +๐จโ๐ผ man office worker +๐จโ๐ง man mechanic +๐จโ๐ฌ man scientist +๐จโ๐ man astronaut +๐จโ๐ man firefighter +๐จโ๐ฆฏ man with white cane +๐จโ๐ฆฏโโก๏ธ man with white cane facing right +๐จโ๐ฆผ man in motorized wheelchair +๐จโ๐ฆผโโก๏ธ man in motorized wheelchair facing right +๐จโ๐ฆฝ man in manual wheelchair +๐จโ๐ฆฝโโก๏ธ man in manual wheelchair facing right +๐จ๐ปโโ๏ธ man health worker: white skin +๐จ๐ปโโ๏ธ man judge: white skin +๐จ๐ปโโ๏ธ man pilot: white skin +๐จ๐ปโ๐พ man farmer: white skin +๐จ๐ปโ๐ณ man cook: white skin +๐จ๐ปโ๐ผ man feeding baby: white skin +๐จ๐ปโ๐ man student: white skin +๐จ๐ปโ๐ค man singer: white skin +๐จ๐ปโ๐จ man artist: white skin +๐จ๐ปโ๐ซ man teacher: white skin +๐จ๐ปโ๐ญ man factory worker: white skin +๐จ๐ปโ๐ป man technologist: white skin +๐จ๐ปโ๐ผ man office worker: white skin +๐จ๐ปโ๐ง man mechanic: white skin +๐จ๐ปโ๐ฌ man scientist: white skin +๐จ๐ปโ๐ man astronaut: white skin +๐จ๐ปโ๐ man firefighter: white skin +๐จ๐ปโ๐ฆฏ man with white cane: white skin +๐จ๐ปโ๐ฆฏโโก๏ธ man with white cane facing right: white skin +๐จ๐ปโ๐ฆผ man in motorized wheelchair: white skin +๐จ๐ปโ๐ฆผโโก๏ธ man in motorized wheelchair facing right: white skin +๐จ๐ปโ๐ฆฝ man in manual wheelchair: white skin +๐จ๐ปโ๐ฆฝโโก๏ธ man in manual wheelchair facing right: white skin +๐จ๐ผโโ๏ธ man health worker: tan skin +๐จ๐ผโโ๏ธ man judge: tan skin +๐จ๐ผโโ๏ธ man pilot: tan skin +๐จ๐ผโ๐พ man farmer: tan skin +๐จ๐ผโ๐ณ man cook: tan skin +๐จ๐ผโ๐ผ man feeding baby: tan skin +๐จ๐ผโ๐ man student: tan skin +๐จ๐ผโ๐ค man singer: tan skin +๐จ๐ผโ๐จ man artist: tan skin +๐จ๐ผโ๐ซ man teacher: tan skin +๐จ๐ผโ๐ญ man factory worker: tan skin +๐จ๐ผโ๐ป man technologist: tan skin +๐จ๐ผโ๐ผ man office worker: tan skin +๐จ๐ผโ๐ง man mechanic: tan skin +๐จ๐ผโ๐ฌ man scientist: tan skin +๐จ๐ผโ๐ man astronaut: tan skin +๐จ๐ผโ๐ man firefighter: tan skin +๐จ๐ผโ๐ฆฏ man with white cane: tan skin +๐จ๐ผโ๐ฆฏโโก๏ธ man with white cane facing right: tan skin +๐จ๐ผโ๐ฆผ man in motorized wheelchair: tan skin +๐จ๐ผโ๐ฆผโโก๏ธ man in motorized wheelchair facing right: tan skin +๐จ๐ผโ๐ฆฝ man in manual wheelchair: tan skin +๐จ๐ผโ๐ฆฝโโก๏ธ man in manual wheelchair facing right: tan skin +๐จ๐ฝโโ๏ธ man health worker: olive skin +๐จ๐ฝโโ๏ธ man judge: olive skin +๐จ๐ฝโโ๏ธ man pilot: olive skin +๐จ๐ฝโ๐พ man farmer: olive skin +๐จ๐ฝโ๐ณ man cook: olive skin +๐จ๐ฝโ๐ผ man feeding baby: olive skin +๐จ๐ฝโ๐ man student: olive skin +๐จ๐ฝโ๐ค man singer: olive skin +๐จ๐ฝโ๐จ man artist: olive skin +๐จ๐ฝโ๐ซ man teacher: olive skin +๐จ๐ฝโ๐ญ man factory worker: olive skin +๐จ๐ฝโ๐ป man technologist: olive skin +๐จ๐ฝโ๐ผ man office worker: olive skin +๐จ๐ฝโ๐ง man mechanic: olive skin +๐จ๐ฝโ๐ฌ man scientist: olive skin +๐จ๐ฝโ๐ man astronaut: olive skin +๐จ๐ฝโ๐ man firefighter: olive skin +๐จ๐ฝโ๐ฆฏ man with white cane: olive skin +๐จ๐ฝโ๐ฆฏโโก๏ธ man with white cane facing right: olive skin +๐จ๐ฝโ๐ฆผ man in motorized wheelchair: olive skin +๐จ๐ฝโ๐ฆผโโก๏ธ man in motorized wheelchair facing right: olive skin +๐จ๐ฝโ๐ฆฝ man in manual wheelchair: olive skin +๐จ๐ฝโ๐ฆฝโโก๏ธ man in manual wheelchair facing right: olive skin +๐จ๐พโโ๏ธ man health worker: brown skin +๐จ๐พโโ๏ธ man judge: brown skin +๐จ๐พโโ๏ธ man pilot: brown skin +๐จ๐พโ๐พ man farmer: brown skin +๐จ๐พโ๐ณ man cook: brown skin +๐จ๐พโ๐ผ man feeding baby: brown skin +๐จ๐พโ๐ man student: brown skin +๐จ๐พโ๐ค man singer: brown skin +๐จ๐พโ๐จ man artist: brown skin +๐จ๐พโ๐ซ man teacher: brown skin +๐จ๐พโ๐ญ man factory worker: brown skin +๐จ๐พโ๐ป man technologist: brown skin +๐จ๐พโ๐ผ man office worker: brown skin +๐จ๐พโ๐ง man mechanic: brown skin +๐จ๐พโ๐ฌ man scientist: brown skin +๐จ๐พโ๐ man astronaut: brown skin +๐จ๐พโ๐ man firefighter: brown skin +๐จ๐พโ๐ฆฏ man with white cane: brown skin +๐จ๐พโ๐ฆฏโโก๏ธ man with white cane facing right: brown skin +๐จ๐พโ๐ฆผ man in motorized wheelchair: brown skin +๐จ๐พโ๐ฆผโโก๏ธ man in motorized wheelchair facing right: brown skin +๐จ๐พโ๐ฆฝ man in manual wheelchair: brown skin +๐จ๐พโ๐ฆฝโโก๏ธ man in manual wheelchair facing right: brown skin +๐จ๐ฟโโ๏ธ man health worker: black skin +๐จ๐ฟโโ๏ธ man judge: black skin +๐จ๐ฟโโ๏ธ man pilot: black skin +๐จ๐ฟโ๐พ man farmer: black skin +๐จ๐ฟโ๐ณ man cook: black skin +๐จ๐ฟโ๐ผ man feeding baby: black skin +๐จ๐ฟโ๐ man student: black skin +๐จ๐ฟโ๐ค man singer: black skin +๐จ๐ฟโ๐จ man artist: black skin +๐จ๐ฟโ๐ซ man teacher: black skin +๐จ๐ฟโ๐ญ man factory worker: black skin +๐จ๐ฟโ๐ป man technologist: black skin +๐จ๐ฟโ๐ผ man office worker: black skin +๐จ๐ฟโ๐ง man mechanic: black skin +๐จ๐ฟโ๐ฌ man scientist: black skin +๐จ๐ฟโ๐ man astronaut: black skin +๐จ๐ฟโ๐ man firefighter: black skin +๐จ๐ฟโ๐ฆฏ man with white cane: black skin +๐จ๐ฟโ๐ฆฏโโก๏ธ man with white cane facing right: black skin +๐จ๐ฟโ๐ฆผ man in motorized wheelchair: black skin +๐จ๐ฟโ๐ฆผโโก๏ธ man in motorized wheelchair facing right: black skin +๐จ๐ฟโ๐ฆฝ man in manual wheelchair: black skin +๐จ๐ฟโ๐ฆฝโโก๏ธ man in manual wheelchair facing right: black skin +๐ฉโโ๏ธ woman health worker +๐ฉโโ๏ธ woman judge +๐ฉโโ๏ธ woman pilot +๐ฉโ๐พ woman farmer +๐ฉโ๐ณ woman cook +๐ฉโ๐ผ woman feeding baby +๐ฉโ๐ woman student +๐ฉโ๐ค woman singer +๐ฉโ๐จ woman artist +๐ฉโ๐ซ woman teacher +๐ฉโ๐ญ woman factory worker +๐ฉโ๐ป woman technologist +๐ฉโ๐ผ woman office worker +๐ฉโ๐ง woman mechanic +๐ฉโ๐ฌ woman scientist +๐ฉโ๐ woman astronaut +๐ฉโ๐ woman firefighter +๐ฉโ๐ฆฏ woman with white cane +๐ฉโ๐ฆฏโโก๏ธ woman with white cane facing right +๐ฉโ๐ฆผ woman in motorized wheelchair +๐ฉโ๐ฆผโโก๏ธ woman in motorized wheelchair facing right +๐ฉโ๐ฆฝ woman in manual wheelchair +๐ฉโ๐ฆฝโโก๏ธ woman in manual wheelchair facing right +๐ฉ๐ปโโ๏ธ woman health worker: white skin +๐ฉ๐ปโโ๏ธ woman judge: white skin +๐ฉ๐ปโโ๏ธ woman pilot: white skin +๐ฉ๐ปโ๐พ woman farmer: white skin +๐ฉ๐ปโ๐ณ woman cook: white skin +๐ฉ๐ปโ๐ผ woman feeding baby: white skin +๐ฉ๐ปโ๐ woman student: white skin +๐ฉ๐ปโ๐ค woman singer: white skin +๐ฉ๐ปโ๐จ woman artist: white skin +๐ฉ๐ปโ๐ซ woman teacher: white skin +๐ฉ๐ปโ๐ญ woman factory worker: white skin +๐ฉ๐ปโ๐ป woman technologist: white skin +๐ฉ๐ปโ๐ผ woman office worker: white skin +๐ฉ๐ปโ๐ง woman mechanic: white skin +๐ฉ๐ปโ๐ฌ woman scientist: white skin +๐ฉ๐ปโ๐ woman astronaut: white skin +๐ฉ๐ปโ๐ woman firefighter: white skin +๐ฉ๐ปโ๐ฆฏ woman with white cane: white skin +๐ฉ๐ปโ๐ฆฏโโก๏ธ woman with white cane facing right: white skin +๐ฉ๐ปโ๐ฆผ woman in motorized wheelchair: white skin +๐ฉ๐ปโ๐ฆผโโก๏ธ woman in motorized wheelchair facing right: white skin +๐ฉ๐ปโ๐ฆฝ woman in manual wheelchair: white skin +๐ฉ๐ปโ๐ฆฝโโก๏ธ woman in manual wheelchair facing right: white skin +๐ฉ๐ผโโ๏ธ woman health worker: tan skin +๐ฉ๐ผโโ๏ธ woman judge: tan skin +๐ฉ๐ผโโ๏ธ woman pilot: tan skin +๐ฉ๐ผโ๐พ woman farmer: tan skin +๐ฉ๐ผโ๐ณ woman cook: tan skin +๐ฉ๐ผโ๐ผ woman feeding baby: tan skin +๐ฉ๐ผโ๐ woman student: tan skin +๐ฉ๐ผโ๐ค woman singer: tan skin +๐ฉ๐ผโ๐จ woman artist: tan skin +๐ฉ๐ผโ๐ซ woman teacher: tan skin +๐ฉ๐ผโ๐ญ woman factory worker: tan skin +๐ฉ๐ผโ๐ป woman technologist: tan skin +๐ฉ๐ผโ๐ผ woman office worker: tan skin +๐ฉ๐ผโ๐ง woman mechanic: tan skin +๐ฉ๐ผโ๐ฌ woman scientist: tan skin +๐ฉ๐ผโ๐ woman astronaut: tan skin +๐ฉ๐ผโ๐ woman firefighter: tan skin +๐ฉ๐ผโ๐ฆฏ woman with white cane: tan skin +๐ฉ๐ผโ๐ฆฏโโก๏ธ woman with white cane facing right: tan skin +๐ฉ๐ผโ๐ฆผ woman in motorized wheelchair: tan skin +๐ฉ๐ผโ๐ฆผโโก๏ธ woman in motorized wheelchair facing right: tan skin +๐ฉ๐ผโ๐ฆฝ woman in manual wheelchair: tan skin +๐ฉ๐ผโ๐ฆฝโโก๏ธ woman in manual wheelchair facing right: tan skin +๐ฉ๐ฝโโ๏ธ woman health worker: olive skin +๐ฉ๐ฝโโ๏ธ woman judge: olive skin +๐ฉ๐ฝโโ๏ธ woman pilot: olive skin +๐ฉ๐ฝโ๐พ woman farmer: olive skin +๐ฉ๐ฝโ๐ณ woman cook: olive skin +๐ฉ๐ฝโ๐ผ woman feeding baby: olive skin +๐ฉ๐ฝโ๐ woman student: olive skin +๐ฉ๐ฝโ๐ค woman singer: olive skin +๐ฉ๐ฝโ๐จ woman artist: olive skin +๐ฉ๐ฝโ๐ซ woman teacher: olive skin +๐ฉ๐ฝโ๐ญ woman factory worker: olive skin +๐ฉ๐ฝโ๐ป woman technologist: olive skin +๐ฉ๐ฝโ๐ผ woman office worker: olive skin +๐ฉ๐ฝโ๐ง woman mechanic: olive skin +๐ฉ๐ฝโ๐ฌ woman scientist: olive skin +๐ฉ๐ฝโ๐ woman astronaut: olive skin +๐ฉ๐ฝโ๐ woman firefighter: olive skin +๐ฉ๐ฝโ๐ฆฏ woman with white cane: olive skin +๐ฉ๐ฝโ๐ฆฏโโก๏ธ woman with white cane facing right: olive skin +๐ฉ๐ฝโ๐ฆผ woman in motorized wheelchair: olive skin +๐ฉ๐ฝโ๐ฆผโโก๏ธ woman in motorized wheelchair facing right: olive skin +๐ฉ๐ฝโ๐ฆฝ woman in manual wheelchair: olive skin +๐ฉ๐ฝโ๐ฆฝโโก๏ธ woman in manual wheelchair facing right: olive skin +๐ฉ๐พโโ๏ธ woman health worker: brown skin +๐ฉ๐พโโ๏ธ woman judge: brown skin +๐ฉ๐พโโ๏ธ woman pilot: brown skin +๐ฉ๐พโ๐พ woman farmer: brown skin +๐ฉ๐พโ๐ณ woman cook: brown skin +๐ฉ๐พโ๐ผ woman feeding baby: brown skin +๐ฉ๐พโ๐ woman student: brown skin +๐ฉ๐พโ๐ค woman singer: brown skin +๐ฉ๐พโ๐จ woman artist: brown skin +๐ฉ๐พโ๐ซ woman teacher: brown skin +๐ฉ๐พโ๐ญ woman factory worker: brown skin +๐ฉ๐พโ๐ป woman technologist: brown skin +๐ฉ๐พโ๐ผ woman office worker: brown skin +๐ฉ๐พโ๐ง woman mechanic: brown skin +๐ฉ๐พโ๐ฌ woman scientist: brown skin +๐ฉ๐พโ๐ woman astronaut: brown skin +๐ฉ๐พโ๐ woman firefighter: brown skin +๐ฉ๐พโ๐ฆฏ woman with white cane: brown skin +๐ฉ๐พโ๐ฆฏโโก๏ธ woman with white cane facing right: brown skin +๐ฉ๐พโ๐ฆผ woman in motorized wheelchair: brown skin +๐ฉ๐พโ๐ฆผโโก๏ธ woman in motorized wheelchair facing right: brown skin +๐ฉ๐พโ๐ฆฝ woman in manual wheelchair: brown skin +๐ฉ๐พโ๐ฆฝโโก๏ธ woman in manual wheelchair facing right: brown skin +๐ฉ๐ฟโโ๏ธ woman health worker: black skin +๐ฉ๐ฟโโ๏ธ woman judge: black skin +๐ฉ๐ฟโโ๏ธ woman pilot: black skin +๐ฉ๐ฟโ๐พ woman farmer: black skin +๐ฉ๐ฟโ๐ณ woman cook: black skin +๐ฉ๐ฟโ๐ผ woman feeding baby: black skin +๐ฉ๐ฟโ๐ woman student: black skin +๐ฉ๐ฟโ๐ค woman singer: black skin +๐ฉ๐ฟโ๐จ woman artist: black skin +๐ฉ๐ฟโ๐ซ woman teacher: black skin +๐ฉ๐ฟโ๐ญ woman factory worker: black skin +๐ฉ๐ฟโ๐ป woman technologist: black skin +๐ฉ๐ฟโ๐ผ woman office worker: black skin +๐ฉ๐ฟโ๐ง woman mechanic: black skin +๐ฉ๐ฟโ๐ฌ woman scientist: black skin +๐ฉ๐ฟโ๐ woman astronaut: black skin +๐ฉ๐ฟโ๐ woman firefighter: black skin +๐ฉ๐ฟโ๐ฆฏ woman with white cane: black skin +๐ฉ๐ฟโ๐ฆฏโโก๏ธ woman with white cane facing right: black skin +๐ฉ๐ฟโ๐ฆผ woman in motorized wheelchair: black skin +๐ฉ๐ฟโ๐ฆผโโก๏ธ woman in motorized wheelchair facing right: black skin +๐ฉ๐ฟโ๐ฆฝ woman in manual wheelchair: black skin +๐ฉ๐ฟโ๐ฆฝโโก๏ธ woman in manual wheelchair facing right: black skin +๐ถโโก๏ธ person walking facing right +๐ถ๐ปโโก๏ธ person walking facing right: white skin +๐ถ๐ผโโก๏ธ person walking facing right: tan skin +๐ถ๐ฝโโก๏ธ person walking facing right: olive skin +๐ถ๐พโโก๏ธ person walking facing right: brown skin +๐ถ๐ฟโโก๏ธ person walking facing right: black skin +๐งโโก๏ธ person kneeling facing right +๐ง๐ปโโก๏ธ person kneeling facing right: white skin +๐ง๐ผโโก๏ธ person kneeling facing right: tan skin +๐ง๐ฝโโก๏ธ person kneeling facing right: olive skin +๐ง๐พโโก๏ธ person kneeling facing right: brown skin +๐ง๐ฟโโก๏ธ person kneeling facing right: black skin +๐งโโ๏ธ health worker +๐งโโ๏ธ judge +๐งโโ๏ธ pilot +๐งโ๐พ farmer +๐งโ๐ณ cook +๐งโ๐ผ person feeding baby +๐งโ๐ Mx Claus +๐งโ๐ student +๐งโ๐ค singer +๐งโ๐จ artist +๐งโ๐ซ teacher +๐งโ๐ญ factory worker +๐งโ๐ป technologist +๐งโ๐ผ office worker +๐งโ๐ง mechanic +๐งโ๐ฌ scientist +๐งโ๐ astronaut +๐งโ๐ firefighter +๐งโ๐ฆฏ person with white cane +๐งโ๐ฆฏโโก๏ธ person with white cane facing right +๐งโ๐ฆผ person in motorized wheelchair +๐งโ๐ฆผโโก๏ธ person in motorized wheelchair facing right +๐งโ๐ฆฝ person in manual wheelchair +๐งโ๐ฆฝโโก๏ธ person in manual wheelchair facing right +๐ง๐ปโโ๏ธ health worker: white skin +๐ง๐ปโโ๏ธ judge: white skin +๐ง๐ปโโ๏ธ pilot: white skin +๐ง๐ปโ๐พ farmer: white skin +๐ง๐ปโ๐ณ cook: white skin +๐ง๐ปโ๐ผ person feeding baby: white skin +๐ง๐ปโ๐ Mx Claus: white skin +๐ง๐ปโ๐ student: white skin +๐ง๐ปโ๐ค singer: white skin +๐ง๐ปโ๐จ artist: white skin +๐ง๐ปโ๐ซ teacher: white skin +๐ง๐ปโ๐ญ factory worker: white skin +๐ง๐ปโ๐ป technologist: white skin +๐ง๐ปโ๐ผ office worker: white skin +๐ง๐ปโ๐ง mechanic: white skin +๐ง๐ปโ๐ฌ scientist: white skin +๐ง๐ปโ๐ astronaut: white skin +๐ง๐ปโ๐ firefighter: white skin +๐ง๐ปโ๐ฆฏ person with white cane: white skin +๐ง๐ปโ๐ฆฏโโก๏ธ person with white cane facing right: white skin +๐ง๐ปโ๐ฆผ person in motorized wheelchair: white skin +๐ง๐ปโ๐ฆผโโก๏ธ person in motorized wheelchair facing right: white skin +๐ง๐ปโ๐ฆฝ person in manual wheelchair: white skin +๐ง๐ปโ๐ฆฝโโก๏ธ person in manual wheelchair facing right: white skin +๐ง๐ผโโ๏ธ health worker: tan skin +๐ง๐ผโโ๏ธ judge: tan skin +๐ง๐ผโโ๏ธ pilot: tan skin +๐ง๐ผโ๐พ farmer: tan skin +๐ง๐ผโ๐ณ cook: tan skin +๐ง๐ผโ๐ผ person feeding baby: tan skin +๐ง๐ผโ๐ Mx Claus: tan skin +๐ง๐ผโ๐ student: tan skin +๐ง๐ผโ๐ค singer: tan skin +๐ง๐ผโ๐จ artist: tan skin +๐ง๐ผโ๐ซ teacher: tan skin +๐ง๐ผโ๐ญ factory worker: tan skin +๐ง๐ผโ๐ป technologist: tan skin +๐ง๐ผโ๐ผ office worker: tan skin +๐ง๐ผโ๐ง mechanic: tan skin +๐ง๐ผโ๐ฌ scientist: tan skin +๐ง๐ผโ๐ astronaut: tan skin +๐ง๐ผโ๐ firefighter: tan skin +๐ง๐ผโ๐ฆฏ person with white cane: tan skin +๐ง๐ผโ๐ฆฏโโก๏ธ person with white cane facing right: tan skin +๐ง๐ผโ๐ฆผ person in motorized wheelchair: tan skin +๐ง๐ผโ๐ฆผโโก๏ธ person in motorized wheelchair facing right: tan skin +๐ง๐ผโ๐ฆฝ person in manual wheelchair: tan skin +๐ง๐ผโ๐ฆฝโโก๏ธ person in manual wheelchair facing right: tan skin +๐ง๐ฝโโ๏ธ health worker: olive skin +๐ง๐ฝโโ๏ธ judge: olive skin +๐ง๐ฝโโ๏ธ pilot: olive skin +๐ง๐ฝโ๐พ farmer: olive skin +๐ง๐ฝโ๐ณ cook: olive skin +๐ง๐ฝโ๐ผ person feeding baby: olive skin +๐ง๐ฝโ๐ Mx Claus: olive skin +๐ง๐ฝโ๐ student: olive skin +๐ง๐ฝโ๐ค singer: olive skin +๐ง๐ฝโ๐จ artist: olive skin +๐ง๐ฝโ๐ซ teacher: olive skin +๐ง๐ฝโ๐ญ factory worker: olive skin +๐ง๐ฝโ๐ป technologist: olive skin +๐ง๐ฝโ๐ผ office worker: olive skin +๐ง๐ฝโ๐ง mechanic: olive skin +๐ง๐ฝโ๐ฌ scientist: olive skin +๐ง๐ฝโ๐ astronaut: olive skin +๐ง๐ฝโ๐ firefighter: olive skin +๐ง๐ฝโ๐ฆฏ person with white cane: olive skin +๐ง๐ฝโ๐ฆฏโโก๏ธ person with white cane facing right: olive skin +๐ง๐ฝโ๐ฆผ person in motorized wheelchair: olive skin +๐ง๐ฝโ๐ฆผโโก๏ธ person in motorized wheelchair facing right: olive skin +๐ง๐ฝโ๐ฆฝ person in manual wheelchair: olive skin +๐ง๐ฝโ๐ฆฝโโก๏ธ person in manual wheelchair facing right: olive skin +๐ง๐พโโ๏ธ health worker: brown skin +๐ง๐พโโ๏ธ judge: brown skin +๐ง๐พโโ๏ธ pilot: brown skin +๐ง๐พโ๐พ farmer: brown skin +๐ง๐พโ๐ณ cook: brown skin +๐ง๐พโ๐ผ person feeding baby: brown skin +๐ง๐พโ๐ Mx Claus: brown skin +๐ง๐พโ๐ student: brown skin +๐ง๐พโ๐ค singer: brown skin +๐ง๐พโ๐จ artist: brown skin +๐ง๐พโ๐ซ teacher: brown skin +๐ง๐พโ๐ญ factory worker: brown skin +๐ง๐พโ๐ป technologist: brown skin +๐ง๐พโ๐ผ office worker: brown skin +๐ง๐พโ๐ง mechanic: brown skin +๐ง๐พโ๐ฌ scientist: brown skin +๐ง๐พโ๐ astronaut: brown skin +๐ง๐พโ๐ firefighter: brown skin +๐ง๐พโ๐ฆฏ person with white cane: brown skin +๐ง๐พโ๐ฆฏโโก๏ธ person with white cane facing right: brown skin +๐ง๐พโ๐ฆผ person in motorized wheelchair: brown skin +๐ง๐พโ๐ฆผโโก๏ธ person in motorized wheelchair facing right: brown skin +๐ง๐พโ๐ฆฝ person in manual wheelchair: brown skin +๐ง๐พโ๐ฆฝโโก๏ธ person in manual wheelchair facing right: brown skin +๐ง๐ฟโโ๏ธ health worker: black skin +๐ง๐ฟโโ๏ธ judge: black skin +๐ง๐ฟโโ๏ธ pilot: black skin +๐ง๐ฟโ๐พ farmer: black skin +๐ง๐ฟโ๐ณ cook: black skin +๐ง๐ฟโ๐ผ person feeding baby: black skin +๐ง๐ฟโ๐ Mx Claus: black skin +๐ง๐ฟโ๐ student: black skin +๐ง๐ฟโ๐ค singer: black skin +๐ง๐ฟโ๐จ artist: black skin +๐ง๐ฟโ๐ซ teacher: black skin +๐ง๐ฟโ๐ญ factory worker: black skin +๐ง๐ฟโ๐ป technologist: black skin +๐ง๐ฟโ๐ผ office worker: black skin +๐ง๐ฟโ๐ง mechanic: black skin +๐ง๐ฟโ๐ฌ scientist: black skin +๐ง๐ฟโ๐ astronaut: black skin +๐ง๐ฟโ๐ firefighter: black skin +๐ง๐ฟโ๐ฆฏ person with white cane: black skin +๐ง๐ฟโ๐ฆฏโโก๏ธ person with white cane facing right: black skin +๐ง๐ฟโ๐ฆผ person in motorized wheelchair: black skin +๐ง๐ฟโ๐ฆผโโก๏ธ person in motorized wheelchair facing right: black skin +๐ง๐ฟโ๐ฆฝ person in manual wheelchair: black skin +๐ง๐ฟโ๐ฆฝโโก๏ธ person in manual wheelchair facing right: black skin +โน๐ปโโ๏ธ woman bouncing ball: white skin +โน๐ปโโ๏ธ man bouncing ball: white skin +โน๐ผโโ๏ธ woman bouncing ball: tan skin +โน๐ผโโ๏ธ man bouncing ball: tan skin +โน๐ฝโโ๏ธ woman bouncing ball: olive skin +โน๐ฝโโ๏ธ man bouncing ball: olive skin +โน๐พโโ๏ธ woman bouncing ball: brown skin +โน๐พโโ๏ธ man bouncing ball: brown skin +โน๐ฟโโ๏ธ woman bouncing ball: black skin +โน๐ฟโโ๏ธ man bouncing ball: black skin +โน๏ธโโ๏ธ woman bouncing ball +โน๏ธโโ๏ธ man bouncing ball +๐โโ๏ธ woman running +๐โโ๏ธโโก๏ธ woman running facing right +๐โโ๏ธ man running +๐โโ๏ธโโก๏ธ man running facing right +๐๐ปโโ๏ธ woman running: white skin +๐๐ปโโ๏ธโโก๏ธ woman running facing right: white skin +๐๐ปโโ๏ธ man running: white skin +๐๐ปโโ๏ธโโก๏ธ man running facing right: white skin +๐๐ผโโ๏ธ woman running: tan skin +๐๐ผโโ๏ธโโก๏ธ woman running facing right: tan skin +๐๐ผโโ๏ธ man running: tan skin +๐๐ผโโ๏ธโโก๏ธ man running facing right: tan skin +๐๐ฝโโ๏ธ woman running: olive skin +๐๐ฝโโ๏ธโโก๏ธ woman running facing right: olive skin +๐๐ฝโโ๏ธ man running: olive skin +๐๐ฝโโ๏ธโโก๏ธ man running facing right: olive skin +๐๐พโโ๏ธ woman running: brown skin +๐๐พโโ๏ธโโก๏ธ woman running facing right: brown skin +๐๐พโโ๏ธ man running: brown skin +๐๐พโโ๏ธโโก๏ธ man running facing right: brown skin +๐๐ฟโโ๏ธ woman running: black skin +๐๐ฟโโ๏ธโโก๏ธ woman running facing right: black skin +๐๐ฟโโ๏ธ man running: black skin +๐๐ฟโโ๏ธโโก๏ธ man running facing right: black skin +๐โโ๏ธ woman surfing +๐โโ๏ธ man surfing +๐๐ปโโ๏ธ woman surfing: white skin +๐๐ปโโ๏ธ man surfing: white skin +๐๐ผโโ๏ธ woman surfing: tan skin +๐๐ผโโ๏ธ man surfing: tan skin +๐๐ฝโโ๏ธ woman surfing: olive skin +๐๐ฝโโ๏ธ man surfing: olive skin +๐๐พโโ๏ธ woman surfing: brown skin +๐๐พโโ๏ธ man surfing: brown skin +๐๐ฟโโ๏ธ woman surfing: black skin +๐๐ฟโโ๏ธ man surfing: black skin +๐โโ๏ธ woman swimming +๐โโ๏ธ man swimming +๐๐ปโโ๏ธ woman swimming: white skin +๐๐ปโโ๏ธ man swimming: white skin +๐๐ผโโ๏ธ woman swimming: tan skin +๐๐ผโโ๏ธ man swimming: tan skin +๐๐ฝโโ๏ธ woman swimming: olive skin +๐๐ฝโโ๏ธ man swimming: olive skin +๐๐พโโ๏ธ woman swimming: brown skin +๐๐พโโ๏ธ man swimming: brown skin +๐๐ฟโโ๏ธ woman swimming: black skin +๐๐ฟโโ๏ธ man swimming: black skin +๐๐ปโโ๏ธ woman lifting weights: white skin +๐๐ปโโ๏ธ man lifting weights: white skin +๐๐ผโโ๏ธ woman lifting weights: tan skin +๐๐ผโโ๏ธ man lifting weights: tan skin +๐๐ฝโโ๏ธ woman lifting weights: olive skin +๐๐ฝโโ๏ธ man lifting weights: olive skin +๐๐พโโ๏ธ woman lifting weights: brown skin +๐๐พโโ๏ธ man lifting weights: brown skin +๐๐ฟโโ๏ธ woman lifting weights: black skin +๐๐ฟโโ๏ธ man lifting weights: black skin +๐๏ธโโ๏ธ woman lifting weights +๐๏ธโโ๏ธ man lifting weights +๐๐ปโโ๏ธ woman golfing: white skin +๐๐ปโโ๏ธ man golfing: white skin +๐๐ผโโ๏ธ woman golfing: tan skin +๐๐ผโโ๏ธ man golfing: tan skin +๐๐ฝโโ๏ธ woman golfing: olive skin +๐๐ฝโโ๏ธ man golfing: olive skin +๐๐พโโ๏ธ woman golfing: brown skin +๐๐พโโ๏ธ man golfing: brown skin +๐๐ฟโโ๏ธ woman golfing: black skin +๐๐ฟโโ๏ธ man golfing: black skin +๐๏ธโโ๏ธ woman golfing +๐๏ธโโ๏ธ man golfing +๐ฎโโ๏ธ woman police officer +๐ฎโโ๏ธ man police officer +๐ฎ๐ปโโ๏ธ woman police officer: white skin +๐ฎ๐ปโโ๏ธ man police officer: white skin +๐ฎ๐ผโโ๏ธ woman police officer: tan skin +๐ฎ๐ผโโ๏ธ man police officer: tan skin +๐ฎ๐ฝโโ๏ธ woman police officer: olive skin +๐ฎ๐ฝโโ๏ธ man police officer: olive skin +๐ฎ๐พโโ๏ธ woman police officer: brown skin +๐ฎ๐พโโ๏ธ man police officer: brown skin +๐ฎ๐ฟโโ๏ธ woman police officer: black skin +๐ฎ๐ฟโโ๏ธ man police officer: black skin +๐ฏโโ๏ธ women with bunny ears +๐ฏโโ๏ธ men with bunny ears +๐ฐโโ๏ธ woman with veil +๐ฐโโ๏ธ man with veil +๐ฐ๐ปโโ๏ธ woman with veil: white skin +๐ฐ๐ปโโ๏ธ man with veil: white skin +๐ฐ๐ผโโ๏ธ woman with veil: tan skin +๐ฐ๐ผโโ๏ธ man with veil: tan skin +๐ฐ๐ฝโโ๏ธ woman with veil: olive skin +๐ฐ๐ฝโโ๏ธ man with veil: olive skin +๐ฐ๐พโโ๏ธ woman with veil: brown skin +๐ฐ๐พโโ๏ธ man with veil: brown skin +๐ฐ๐ฟโโ๏ธ woman with veil: black skin +๐ฐ๐ฟโโ๏ธ man with veil: black skin +๐ฑโโ๏ธ woman: blond hair +๐ฑโโ๏ธ man: blond hair +๐ฑ๐ปโโ๏ธ woman: white skin, blond hair +๐ฑ๐ปโโ๏ธ man: white skin, blond hair +๐ฑ๐ผโโ๏ธ woman: tan skin, blond hair +๐ฑ๐ผโโ๏ธ man: tan skin, blond hair +๐ฑ๐ฝโโ๏ธ woman: olive skin, blond hair +๐ฑ๐ฝโโ๏ธ man: olive skin, blond hair +๐ฑ๐พโโ๏ธ woman: brown skin, blond hair +๐ฑ๐พโโ๏ธ man: brown skin, blond hair +๐ฑ๐ฟโโ๏ธ woman: black skin, blond hair +๐ฑ๐ฟโโ๏ธ man: black skin, blond hair +๐ณโโ๏ธ woman wearing turban +๐ณโโ๏ธ man wearing turban +๐ณ๐ปโโ๏ธ woman wearing turban: white skin +๐ณ๐ปโโ๏ธ man wearing turban: white skin +๐ณ๐ผโโ๏ธ woman wearing turban: tan skin +๐ณ๐ผโโ๏ธ man wearing turban: tan skin +๐ณ๐ฝโโ๏ธ woman wearing turban: olive skin +๐ณ๐ฝโโ๏ธ man wearing turban: olive skin +๐ณ๐พโโ๏ธ woman wearing turban: brown skin +๐ณ๐พโโ๏ธ man wearing turban: brown skin +๐ณ๐ฟโโ๏ธ woman wearing turban: black skin +๐ณ๐ฟโโ๏ธ man wearing turban: black skin +๐ทโโ๏ธ woman construction worker +๐ทโโ๏ธ man construction worker +๐ท๐ปโโ๏ธ woman construction worker: white skin +๐ท๐ปโโ๏ธ man construction worker: white skin +๐ท๐ผโโ๏ธ woman construction worker: tan skin +๐ท๐ผโโ๏ธ man construction worker: tan skin +๐ท๐ฝโโ๏ธ woman construction worker: olive skin +๐ท๐ฝโโ๏ธ man construction worker: olive skin +๐ท๐พโโ๏ธ woman construction worker: brown skin +๐ท๐พโโ๏ธ man construction worker: brown skin +๐ท๐ฟโโ๏ธ woman construction worker: black skin +๐ท๐ฟโโ๏ธ man construction worker: black skin +๐โโ๏ธ woman tipping hand +๐โโ๏ธ man tipping hand +๐๐ปโโ๏ธ woman tipping hand: white skin +๐๐ปโโ๏ธ man tipping hand: white skin +๐๐ผโโ๏ธ woman tipping hand: tan skin +๐๐ผโโ๏ธ man tipping hand: tan skin +๐๐ฝโโ๏ธ woman tipping hand: olive skin +๐๐ฝโโ๏ธ man tipping hand: olive skin +๐๐พโโ๏ธ woman tipping hand: brown skin +๐๐พโโ๏ธ man tipping hand: brown skin +๐๐ฟโโ๏ธ woman tipping hand: black skin +๐๐ฟโโ๏ธ man tipping hand: black skin +๐โโ๏ธ woman guard +๐โโ๏ธ man guard +๐๐ปโโ๏ธ woman guard: white skin +๐๐ปโโ๏ธ man guard: white skin +๐๐ผโโ๏ธ woman guard: tan skin +๐๐ผโโ๏ธ man guard: tan skin +๐๐ฝโโ๏ธ woman guard: olive skin +๐๐ฝโโ๏ธ man guard: olive skin +๐๐พโโ๏ธ woman guard: brown skin +๐๐พโโ๏ธ man guard: brown skin +๐๐ฟโโ๏ธ woman guard: black skin +๐๐ฟโโ๏ธ man guard: black skin +๐โโ๏ธ woman getting massage +๐โโ๏ธ man getting massage +๐๐ปโโ๏ธ woman getting massage: white skin +๐๐ปโโ๏ธ man getting massage: white skin +๐๐ผโโ๏ธ woman getting massage: tan skin +๐๐ผโโ๏ธ man getting massage: tan skin +๐๐ฝโโ๏ธ woman getting massage: olive skin +๐๐ฝโโ๏ธ man getting massage: olive skin +๐๐พโโ๏ธ woman getting massage: brown skin +๐๐พโโ๏ธ man getting massage: brown skin +๐๐ฟโโ๏ธ woman getting massage: black skin +๐๐ฟโโ๏ธ man getting massage: black skin +๐โโ๏ธ woman getting haircut +๐โโ๏ธ man getting haircut +๐๐ปโโ๏ธ woman getting haircut: white skin +๐๐ปโโ๏ธ man getting haircut: white skin +๐๐ผโโ๏ธ woman getting haircut: tan skin +๐๐ผโโ๏ธ man getting haircut: tan skin +๐๐ฝโโ๏ธ woman getting haircut: olive skin +๐๐ฝโโ๏ธ man getting haircut: olive skin +๐๐พโโ๏ธ woman getting haircut: brown skin +๐๐พโโ๏ธ man getting haircut: brown skin +๐๐ฟโโ๏ธ woman getting haircut: black skin +๐๐ฟโโ๏ธ man getting haircut: black skin +๐ต๐ปโโ๏ธ woman detective: white skin +๐ต๐ปโโ๏ธ man detective: white skin +๐ต๐ผโโ๏ธ woman detective: tan skin +๐ต๐ผโโ๏ธ man detective: tan skin +๐ต๐ฝโโ๏ธ woman detective: olive skin +๐ต๐ฝโโ๏ธ man detective: olive skin +๐ต๐พโโ๏ธ woman detective: brown skin +๐ต๐พโโ๏ธ man detective: brown skin +๐ต๐ฟโโ๏ธ woman detective: black skin +๐ต๐ฟโโ๏ธ man detective: black skin +๐ต๏ธโโ๏ธ woman detective +๐ต๏ธโโ๏ธ man detective +๐
โโ๏ธ woman gesturing NO +๐
โโ๏ธ man gesturing NO +๐
๐ปโโ๏ธ woman gesturing NO: white skin +๐
๐ปโโ๏ธ man gesturing NO: white skin +๐
๐ผโโ๏ธ woman gesturing NO: tan skin +๐
๐ผโโ๏ธ man gesturing NO: tan skin +๐
๐ฝโโ๏ธ woman gesturing NO: olive skin +๐
๐ฝโโ๏ธ man gesturing NO: olive skin +๐
๐พโโ๏ธ woman gesturing NO: brown skin +๐
๐พโโ๏ธ man gesturing NO: brown skin +๐
๐ฟโโ๏ธ woman gesturing NO: black skin +๐
๐ฟโโ๏ธ man gesturing NO: black skin +๐โโ๏ธ woman gesturing OK +๐โโ๏ธ man gesturing OK +๐๐ปโโ๏ธ woman gesturing OK: white skin +๐๐ปโโ๏ธ man gesturing OK: white skin +๐๐ผโโ๏ธ woman gesturing OK: tan skin +๐๐ผโโ๏ธ man gesturing OK: tan skin +๐๐ฝโโ๏ธ woman gesturing OK: olive skin +๐๐ฝโโ๏ธ man gesturing OK: olive skin +๐๐พโโ๏ธ woman gesturing OK: brown skin +๐๐พโโ๏ธ man gesturing OK: brown skin +๐๐ฟโโ๏ธ woman gesturing OK: black skin +๐๐ฟโโ๏ธ man gesturing OK: black skin +๐โโ๏ธ woman bowing +๐โโ๏ธ man bowing +๐๐ปโโ๏ธ woman bowing: white skin +๐๐ปโโ๏ธ man bowing: white skin +๐๐ผโโ๏ธ woman bowing: tan skin +๐๐ผโโ๏ธ man bowing: tan skin +๐๐ฝโโ๏ธ woman bowing: olive skin +๐๐ฝโโ๏ธ man bowing: olive skin +๐๐พโโ๏ธ woman bowing: brown skin +๐๐พโโ๏ธ man bowing: brown skin +๐๐ฟโโ๏ธ woman bowing: black skin +๐๐ฟโโ๏ธ man bowing: black skin +๐โโ๏ธ woman raising hand +๐โโ๏ธ man raising hand +๐๐ปโโ๏ธ woman raising hand: white skin +๐๐ปโโ๏ธ man raising hand: white skin +๐๐ผโโ๏ธ woman raising hand: tan skin +๐๐ผโโ๏ธ man raising hand: tan skin +๐๐ฝโโ๏ธ woman raising hand: olive skin +๐๐ฝโโ๏ธ man raising hand: olive skin +๐๐พโโ๏ธ woman raising hand: brown skin +๐๐พโโ๏ธ man raising hand: brown skin +๐๐ฟโโ๏ธ woman raising hand: black skin +๐๐ฟโโ๏ธ man raising hand: black skin +๐โโ๏ธ woman frowning +๐โโ๏ธ man frowning +๐๐ปโโ๏ธ woman frowning: white skin +๐๐ปโโ๏ธ man frowning: white skin +๐๐ผโโ๏ธ woman frowning: tan skin +๐๐ผโโ๏ธ man frowning: tan skin +๐๐ฝโโ๏ธ woman frowning: olive skin +๐๐ฝโโ๏ธ man frowning: olive skin +๐๐พโโ๏ธ woman frowning: brown skin +๐๐พโโ๏ธ man frowning: brown skin +๐๐ฟโโ๏ธ woman frowning: black skin +๐๐ฟโโ๏ธ man frowning: black skin +๐โโ๏ธ woman pouting +๐โโ๏ธ man pouting +๐๐ปโโ๏ธ woman pouting: white skin +๐๐ปโโ๏ธ man pouting: white skin +๐๐ผโโ๏ธ woman pouting: tan skin +๐๐ผโโ๏ธ man pouting: tan skin +๐๐ฝโโ๏ธ woman pouting: olive skin +๐๐ฝโโ๏ธ man pouting: olive skin +๐๐พโโ๏ธ woman pouting: brown skin +๐๐พโโ๏ธ man pouting: brown skin +๐๐ฟโโ๏ธ woman pouting: black skin +๐๐ฟโโ๏ธ man pouting: black skin +๐ฃโโ๏ธ woman rowing boat +๐ฃโโ๏ธ man rowing boat +๐ฃ๐ปโโ๏ธ woman rowing boat: white skin +๐ฃ๐ปโโ๏ธ man rowing boat: white skin +๐ฃ๐ผโโ๏ธ woman rowing boat: tan skin +๐ฃ๐ผโโ๏ธ man rowing boat: tan skin +๐ฃ๐ฝโโ๏ธ woman rowing boat: olive skin +๐ฃ๐ฝโโ๏ธ man rowing boat: olive skin +๐ฃ๐พโโ๏ธ woman rowing boat: brown skin +๐ฃ๐พโโ๏ธ man rowing boat: brown skin +๐ฃ๐ฟโโ๏ธ woman rowing boat: black skin +๐ฃ๐ฟโโ๏ธ man rowing boat: black skin +๐ดโโ๏ธ woman biking +๐ดโโ๏ธ man biking +๐ด๐ปโโ๏ธ woman biking: white skin +๐ด๐ปโโ๏ธ man biking: white skin +๐ด๐ผโโ๏ธ woman biking: tan skin +๐ด๐ผโโ๏ธ man biking: tan skin +๐ด๐ฝโโ๏ธ woman biking: olive skin +๐ด๐ฝโโ๏ธ man biking: olive skin +๐ด๐พโโ๏ธ woman biking: brown skin +๐ด๐พโโ๏ธ man biking: brown skin +๐ด๐ฟโโ๏ธ woman biking: black skin +๐ด๐ฟโโ๏ธ man biking: black skin +๐ตโโ๏ธ woman mountain biking +๐ตโโ๏ธ man mountain biking +๐ต๐ปโโ๏ธ woman mountain biking: white skin +๐ต๐ปโโ๏ธ man mountain biking: white skin +๐ต๐ผโโ๏ธ woman mountain biking: tan skin +๐ต๐ผโโ๏ธ man mountain biking: tan skin +๐ต๐ฝโโ๏ธ woman mountain biking: olive skin +๐ต๐ฝโโ๏ธ man mountain biking: olive skin +๐ต๐พโโ๏ธ woman mountain biking: brown skin +๐ต๐พโโ๏ธ man mountain biking: brown skin +๐ต๐ฟโโ๏ธ woman mountain biking: black skin +๐ต๐ฟโโ๏ธ man mountain biking: black skin +๐ถโโ๏ธ woman walking +๐ถโโ๏ธโโก๏ธ woman walking facing right +๐ถโโ๏ธ man walking +๐ถโโ๏ธโโก๏ธ man walking facing right +๐ถ๐ปโโ๏ธ woman walking: white skin +๐ถ๐ปโโ๏ธโโก๏ธ woman walking facing right: white skin +๐ถ๐ปโโ๏ธ man walking: white skin +๐ถ๐ปโโ๏ธโโก๏ธ man walking facing right: white skin +๐ถ๐ผโโ๏ธ woman walking: tan skin +๐ถ๐ผโโ๏ธโโก๏ธ woman walking facing right: tan skin +๐ถ๐ผโโ๏ธ man walking: tan skin +๐ถ๐ผโโ๏ธโโก๏ธ man walking facing right: tan skin +๐ถ๐ฝโโ๏ธ woman walking: olive skin +๐ถ๐ฝโโ๏ธโโก๏ธ woman walking facing right: olive skin +๐ถ๐ฝโโ๏ธ man walking: olive skin +๐ถ๐ฝโโ๏ธโโก๏ธ man walking facing right: olive skin +๐ถ๐พโโ๏ธ woman walking: brown skin +๐ถ๐พโโ๏ธโโก๏ธ woman walking facing right: brown skin +๐ถ๐พโโ๏ธ man walking: brown skin +๐ถ๐พโโ๏ธโโก๏ธ man walking facing right: brown skin +๐ถ๐ฟโโ๏ธ woman walking: black skin +๐ถ๐ฟโโ๏ธโโก๏ธ woman walking facing right: black skin +๐ถ๐ฟโโ๏ธ man walking: black skin +๐ถ๐ฟโโ๏ธโโก๏ธ man walking facing right: black skin +๐คฆโโ๏ธ woman facepalming +๐คฆโโ๏ธ man facepalming +๐คฆ๐ปโโ๏ธ woman facepalming: white skin +๐คฆ๐ปโโ๏ธ man facepalming: white skin +๐คฆ๐ผโโ๏ธ woman facepalming: tan skin +๐คฆ๐ผโโ๏ธ man facepalming: tan skin +๐คฆ๐ฝโโ๏ธ woman facepalming: olive skin +๐คฆ๐ฝโโ๏ธ man facepalming: olive skin +๐คฆ๐พโโ๏ธ woman facepalming: brown skin +๐คฆ๐พโโ๏ธ man facepalming: brown skin +๐คฆ๐ฟโโ๏ธ woman facepalming: black skin +๐คฆ๐ฟโโ๏ธ man facepalming: black skin +๐คตโโ๏ธ woman in tuxedo +๐คตโโ๏ธ man in tuxedo +๐คต๐ปโโ๏ธ woman in tuxedo: white skin +๐คต๐ปโโ๏ธ man in tuxedo: white skin +๐คต๐ผโโ๏ธ woman in tuxedo: tan skin +๐คต๐ผโโ๏ธ man in tuxedo: tan skin +๐คต๐ฝโโ๏ธ woman in tuxedo: olive skin +๐คต๐ฝโโ๏ธ man in tuxedo: olive skin +๐คต๐พโโ๏ธ woman in tuxedo: brown skin +๐คต๐พโโ๏ธ man in tuxedo: brown skin +๐คต๐ฟโโ๏ธ woman in tuxedo: black skin +๐คต๐ฟโโ๏ธ man in tuxedo: black skin +๐คทโโ๏ธ woman shrugging +๐คทโโ๏ธ man shrugging +๐คท๐ปโโ๏ธ woman shrugging: white skin +๐คท๐ปโโ๏ธ man shrugging: white skin +๐คท๐ผโโ๏ธ woman shrugging: tan skin +๐คท๐ผโโ๏ธ man shrugging: tan skin +๐คท๐ฝโโ๏ธ woman shrugging: olive skin +๐คท๐ฝโโ๏ธ man shrugging: olive skin +๐คท๐พโโ๏ธ woman shrugging: brown skin +๐คท๐พโโ๏ธ man shrugging: brown skin +๐คท๐ฟโโ๏ธ woman shrugging: black skin +๐คท๐ฟโโ๏ธ man shrugging: black skin +๐คธโโ๏ธ woman cartwheeling +๐คธโโ๏ธ man cartwheeling +๐คธ๐ปโโ๏ธ woman cartwheeling: white skin +๐คธ๐ปโโ๏ธ man cartwheeling: white skin +๐คธ๐ผโโ๏ธ woman cartwheeling: tan skin +๐คธ๐ผโโ๏ธ man cartwheeling: tan skin +๐คธ๐ฝโโ๏ธ woman cartwheeling: olive skin +๐คธ๐ฝโโ๏ธ man cartwheeling: olive skin +๐คธ๐พโโ๏ธ woman cartwheeling: brown skin +๐คธ๐พโโ๏ธ man cartwheeling: brown skin +๐คธ๐ฟโโ๏ธ woman cartwheeling: black skin +๐คธ๐ฟโโ๏ธ man cartwheeling: black skin +๐คนโโ๏ธ woman juggling +๐คนโโ๏ธ man juggling +๐คน๐ปโโ๏ธ woman juggling: white skin +๐คน๐ปโโ๏ธ man juggling: white skin +๐คน๐ผโโ๏ธ woman juggling: tan skin +๐คน๐ผโโ๏ธ man juggling: tan skin +๐คน๐ฝโโ๏ธ woman juggling: olive skin +๐คน๐ฝโโ๏ธ man juggling: olive skin +๐คน๐พโโ๏ธ woman juggling: brown skin +๐คน๐พโโ๏ธ man juggling: brown skin +๐คน๐ฟโโ๏ธ woman juggling: black skin +๐คน๐ฟโโ๏ธ man juggling: black skin +๐คผโโ๏ธ women wrestling +๐คผโโ๏ธ men wrestling +๐คฝโโ๏ธ woman playing water polo +๐คฝโโ๏ธ man playing water polo +๐คฝ๐ปโโ๏ธ woman playing water polo: white skin +๐คฝ๐ปโโ๏ธ man playing water polo: white skin +๐คฝ๐ผโโ๏ธ woman playing water polo: tan skin +๐คฝ๐ผโโ๏ธ man playing water polo: tan skin +๐คฝ๐ฝโโ๏ธ woman playing water polo: olive skin +๐คฝ๐ฝโโ๏ธ man playing water polo: olive skin +๐คฝ๐พโโ๏ธ woman playing water polo: brown skin +๐คฝ๐พโโ๏ธ man playing water polo: brown skin +๐คฝ๐ฟโโ๏ธ woman playing water polo: black skin +๐คฝ๐ฟโโ๏ธ man playing water polo: black skin +๐คพโโ๏ธ woman playing handball +๐คพโโ๏ธ man playing handball +๐คพ๐ปโโ๏ธ woman playing handball: white skin +๐คพ๐ปโโ๏ธ man playing handball: white skin +๐คพ๐ผโโ๏ธ woman playing handball: tan skin +๐คพ๐ผโโ๏ธ man playing handball: tan skin +๐คพ๐ฝโโ๏ธ woman playing handball: olive skin +๐คพ๐ฝโโ๏ธ man playing handball: olive skin +๐คพ๐พโโ๏ธ woman playing handball: brown skin +๐คพ๐พโโ๏ธ man playing handball: brown skin +๐คพ๐ฟโโ๏ธ woman playing handball: black skin +๐คพ๐ฟโโ๏ธ man playing handball: black skin +๐ฆธโโ๏ธ woman superhero +๐ฆธโโ๏ธ man superhero +๐ฆธ๐ปโโ๏ธ woman superhero: white skin +๐ฆธ๐ปโโ๏ธ man superhero: white skin +๐ฆธ๐ผโโ๏ธ woman superhero: tan skin +๐ฆธ๐ผโโ๏ธ man superhero: tan skin +๐ฆธ๐ฝโโ๏ธ woman superhero: olive skin +๐ฆธ๐ฝโโ๏ธ man superhero: olive skin +๐ฆธ๐พโโ๏ธ woman superhero: brown skin +๐ฆธ๐พโโ๏ธ man superhero: brown skin +๐ฆธ๐ฟโโ๏ธ woman superhero: black skin +๐ฆธ๐ฟโโ๏ธ man superhero: black skin +๐ฆนโโ๏ธ woman supervillain +๐ฆนโโ๏ธ man supervillain +๐ฆน๐ปโโ๏ธ woman supervillain: white skin +๐ฆน๐ปโโ๏ธ man supervillain: white skin +๐ฆน๐ผโโ๏ธ woman supervillain: tan skin +๐ฆน๐ผโโ๏ธ man supervillain: tan skin +๐ฆน๐ฝโโ๏ธ woman supervillain: olive skin +๐ฆน๐ฝโโ๏ธ man supervillain: olive skin +๐ฆน๐พโโ๏ธ woman supervillain: brown skin +๐ฆน๐พโโ๏ธ man supervillain: brown skin +๐ฆน๐ฟโโ๏ธ woman supervillain: black skin +๐ฆน๐ฟโโ๏ธ man supervillain: black skin +๐งโโ๏ธ woman standing +๐งโโ๏ธ man standing +๐ง๐ปโโ๏ธ woman standing: white skin +๐ง๐ปโโ๏ธ man standing: white skin +๐ง๐ผโโ๏ธ woman standing: tan skin +๐ง๐ผโโ๏ธ man standing: tan skin +๐ง๐ฝโโ๏ธ woman standing: olive skin +๐ง๐ฝโโ๏ธ man standing: olive skin +๐ง๐พโโ๏ธ woman standing: brown skin +๐ง๐พโโ๏ธ man standing: brown skin +๐ง๐ฟโโ๏ธ woman standing: black skin +๐ง๐ฟโโ๏ธ man standing: black skin +๐งโโ๏ธ woman kneeling +๐งโโ๏ธโโก๏ธ woman kneeling facing right +๐งโโ๏ธ man kneeling +๐งโโ๏ธโโก๏ธ man kneeling facing right +๐ง๐ปโโ๏ธ woman kneeling: white skin +๐ง๐ปโโ๏ธโโก๏ธ woman kneeling facing right: white skin +๐ง๐ปโโ๏ธ man kneeling: white skin +๐ง๐ปโโ๏ธโโก๏ธ man kneeling facing right: white skin +๐ง๐ผโโ๏ธ woman kneeling: tan skin +๐ง๐ผโโ๏ธโโก๏ธ woman kneeling facing right: tan skin +๐ง๐ผโโ๏ธ man kneeling: tan skin +๐ง๐ผโโ๏ธโโก๏ธ man kneeling facing right: tan skin +๐ง๐ฝโโ๏ธ woman kneeling: olive skin +๐ง๐ฝโโ๏ธโโก๏ธ woman kneeling facing right: olive skin +๐ง๐ฝโโ๏ธ man kneeling: olive skin +๐ง๐ฝโโ๏ธโโก๏ธ man kneeling facing right: olive skin +๐ง๐พโโ๏ธ woman kneeling: brown skin +๐ง๐พโโ๏ธโโก๏ธ woman kneeling facing right: brown skin +๐ง๐พโโ๏ธ man kneeling: brown skin +๐ง๐พโโ๏ธโโก๏ธ man kneeling facing right: brown skin +๐ง๐ฟโโ๏ธ woman kneeling: black skin +๐ง๐ฟโโ๏ธโโก๏ธ woman kneeling facing right: black skin +๐ง๐ฟโโ๏ธ man kneeling: black skin +๐ง๐ฟโโ๏ธโโก๏ธ man kneeling facing right: black skin +๐งโโ๏ธ deaf woman +๐งโโ๏ธ deaf man +๐ง๐ปโโ๏ธ deaf woman: white skin +๐ง๐ปโโ๏ธ deaf man: white skin +๐ง๐ผโโ๏ธ deaf woman: tan skin +๐ง๐ผโโ๏ธ deaf man: tan skin +๐ง๐ฝโโ๏ธ deaf woman: olive skin +๐ง๐ฝโโ๏ธ deaf man: olive skin +๐ง๐พโโ๏ธ deaf woman: brown skin +๐ง๐พโโ๏ธ deaf man: brown skin +๐ง๐ฟโโ๏ธ deaf woman: black skin +๐ง๐ฟโโ๏ธ deaf man: black skin +๐งโโ๏ธ man: beard +๐ง๐ปโโ๏ธ man: white skin, beard +๐ง๐ผโโ๏ธ man: tan skin, beard +๐ง๐ฝโโ๏ธ man: olive skin, beard +๐ง๐พโโ๏ธ man: brown skin, beard +๐ง๐ฟโโ๏ธ man: black skin, beard +๐งโโ๏ธ woman in steamy room +๐งโโ๏ธ man in steamy room +๐ง๐ปโโ๏ธ woman in steamy room: white skin +๐ง๐ปโโ๏ธ man in steamy room: white skin +๐ง๐ผโโ๏ธ woman in steamy room: tan skin +๐ง๐ผโโ๏ธ man in steamy room: tan skin +๐ง๐ฝโโ๏ธ woman in steamy room: olive skin +๐ง๐ฝโโ๏ธ man in steamy room: olive skin +๐ง๐พโโ๏ธ woman in steamy room: brown skin +๐ง๐พโโ๏ธ man in steamy room: brown skin +๐ง๐ฟโโ๏ธ woman in steamy room: black skin +๐ง๐ฟโโ๏ธ man in steamy room: black skin +๐งโโ๏ธ woman climbing +๐งโโ๏ธ man climbing +๐ง๐ปโโ๏ธ woman climbing: white skin +๐ง๐ปโโ๏ธ man climbing: white skin +๐ง๐ผโโ๏ธ woman climbing: tan skin +๐ง๐ผโโ๏ธ man climbing: tan skin +๐ง๐ฝโโ๏ธ woman climbing: olive skin +๐ง๐ฝโโ๏ธ man climbing: olive skin +๐ง๐พโโ๏ธ woman climbing: brown skin +๐ง๐พโโ๏ธ man climbing: brown skin +๐ง๐ฟโโ๏ธ woman climbing: black skin +๐ง๐ฟโโ๏ธ man climbing: black skin +๐งโโ๏ธ woman in lotus position +๐งโโ๏ธ man in lotus position +๐ง๐ปโโ๏ธ woman in lotus position: white skin +๐ง๐ปโโ๏ธ man in lotus position: white skin +๐ง๐ผโโ๏ธ woman in lotus position: tan skin +๐ง๐ผโโ๏ธ man in lotus position: tan skin +๐ง๐ฝโโ๏ธ woman in lotus position: olive skin +๐ง๐ฝโโ๏ธ man in lotus position: olive skin +๐ง๐พโโ๏ธ woman in lotus position: brown skin +๐ง๐พโโ๏ธ man in lotus position: brown skin +๐ง๐ฟโโ๏ธ woman in lotus position: black skin +๐ง๐ฟโโ๏ธ man in lotus position: black skin +๐งโโ๏ธ woman mage +๐งโโ๏ธ man mage +๐ง๐ปโโ๏ธ woman mage: white skin +๐ง๐ปโโ๏ธ man mage: white skin +๐ง๐ผโโ๏ธ woman mage: tan skin +๐ง๐ผโโ๏ธ man mage: tan skin +๐ง๐ฝโโ๏ธ woman mage: olive skin +๐ง๐ฝโโ๏ธ man mage: olive skin +๐ง๐พโโ๏ธ woman mage: brown skin +๐ง๐พโโ๏ธ man mage: brown skin +๐ง๐ฟโโ๏ธ woman mage: black skin +๐ง๐ฟโโ๏ธ man mage: black skin +๐งโโ๏ธ woman fairy +๐งโโ๏ธ man fairy +๐ง๐ปโโ๏ธ woman fairy: white skin +๐ง๐ปโโ๏ธ man fairy: white skin +๐ง๐ผโโ๏ธ woman fairy: tan skin +๐ง๐ผโโ๏ธ man fairy: tan skin +๐ง๐ฝโโ๏ธ woman fairy: olive skin +๐ง๐ฝโโ๏ธ man fairy: olive skin +๐ง๐พโโ๏ธ woman fairy: brown skin +๐ง๐พโโ๏ธ man fairy: brown skin +๐ง๐ฟโโ๏ธ woman fairy: black skin +๐ง๐ฟโโ๏ธ man fairy: black skin +๐งโโ๏ธ woman vampire +๐งโโ๏ธ man vampire +๐ง๐ปโโ๏ธ woman vampire: white skin +๐ง๐ปโโ๏ธ man vampire: white skin +๐ง๐ผโโ๏ธ woman vampire: tan skin +๐ง๐ผโโ๏ธ man vampire: tan skin +๐ง๐ฝโโ๏ธ woman vampire: olive skin +๐ง๐ฝโโ๏ธ man vampire: olive skin +๐ง๐พโโ๏ธ woman vampire: brown skin +๐ง๐พโโ๏ธ man vampire: brown skin +๐ง๐ฟโโ๏ธ woman vampire: black skin +๐ง๐ฟโโ๏ธ man vampire: black skin +๐งโโ๏ธ mermaid +๐งโโ๏ธ merman +๐ง๐ปโโ๏ธ mermaid: white skin +๐ง๐ปโโ๏ธ merman: white skin +๐ง๐ผโโ๏ธ mermaid: tan skin +๐ง๐ผโโ๏ธ merman: tan skin +๐ง๐ฝโโ๏ธ mermaid: olive skin +๐ง๐ฝโโ๏ธ merman: olive skin +๐ง๐พโโ๏ธ mermaid: brown skin +๐ง๐พโโ๏ธ merman: brown skin +๐ง๐ฟโโ๏ธ mermaid: black skin +๐ง๐ฟโโ๏ธ merman: black skin +๐งโโ๏ธ woman elf +๐งโโ๏ธ man elf +๐ง๐ปโโ๏ธ woman elf: white skin +๐ง๐ปโโ๏ธ man elf: white skin +๐ง๐ผโโ๏ธ woman elf: tan skin +๐ง๐ผโโ๏ธ man elf: tan skin +๐ง๐ฝโโ๏ธ woman elf: olive skin +๐ง๐ฝโโ๏ธ man elf: olive skin +๐ง๐พโโ๏ธ woman elf: brown skin +๐ง๐พโโ๏ธ man elf: brown skin +๐ง๐ฟโโ๏ธ woman elf: black skin +๐ง๐ฟโโ๏ธ man elf: black skin +๐งโโ๏ธ woman genie +๐งโโ๏ธ man genie +๐งโโ๏ธ woman zombie +๐งโโ๏ธ man zombie +๐จโ๐ฆฐ man: red hair +๐จโ๐ฆฑ man: curly hair +๐จโ๐ฆฒ man: bald +๐จโ๐ฆณ man: white hair +๐จ๐ปโ๐ฆฐ man: white skin, red hair +๐จ๐ปโ๐ฆฑ man: white skin, curly hair +๐จ๐ปโ๐ฆฒ man: white skin, bald +๐จ๐ปโ๐ฆณ man: white skin, white hair +๐จ๐ผโ๐ฆฐ man: tan skin, red hair +๐จ๐ผโ๐ฆฑ man: tan skin, curly hair +๐จ๐ผโ๐ฆฒ man: tan skin, bald +๐จ๐ผโ๐ฆณ man: tan skin, white hair +๐จ๐ฝโ๐ฆฐ man: olive skin, red hair +๐จ๐ฝโ๐ฆฑ man: olive skin, curly hair +๐จ๐ฝโ๐ฆฒ man: olive skin, bald +๐จ๐ฝโ๐ฆณ man: olive skin, white hair +๐จ๐พโ๐ฆฐ man: brown skin, red hair +๐จ๐พโ๐ฆฑ man: brown skin, curly hair +๐จ๐พโ๐ฆฒ man: brown skin, bald +๐จ๐พโ๐ฆณ man: brown skin, white hair +๐จ๐ฟโ๐ฆฐ man: black skin, red hair +๐จ๐ฟโ๐ฆฑ man: black skin, curly hair +๐จ๐ฟโ๐ฆฒ man: black skin, bald +๐จ๐ฟโ๐ฆณ man: black skin, white hair +๐ฉโ๐ฆฐ woman: red hair +๐ฉโ๐ฆฑ woman: curly hair +๐ฉโ๐ฆฒ woman: bald +๐ฉโ๐ฆณ woman: white hair +๐ฉ๐ปโ๐ฆฐ woman: white skin, red hair +๐ฉ๐ปโ๐ฆฑ woman: white skin, curly hair +๐ฉ๐ปโ๐ฆฒ woman: white skin, bald +๐ฉ๐ปโ๐ฆณ woman: white skin, white hair +๐ฉ๐ผโ๐ฆฐ woman: tan skin, red hair +๐ฉ๐ผโ๐ฆฑ woman: tan skin, curly hair +๐ฉ๐ผโ๐ฆฒ woman: tan skin, bald +๐ฉ๐ผโ๐ฆณ woman: tan skin, white hair +๐ฉ๐ฝโ๐ฆฐ woman: olive skin, red hair +๐ฉ๐ฝโ๐ฆฑ woman: olive skin, curly hair +๐ฉ๐ฝโ๐ฆฒ woman: olive skin, bald +๐ฉ๐ฝโ๐ฆณ woman: olive skin, white hair +๐ฉ๐พโ๐ฆฐ woman: brown skin, red hair +๐ฉ๐พโ๐ฆฑ woman: brown skin, curly hair +๐ฉ๐พโ๐ฆฒ woman: brown skin, bald +๐ฉ๐พโ๐ฆณ woman: brown skin, white hair +๐ฉ๐ฟโ๐ฆฐ woman: black skin, red hair +๐ฉ๐ฟโ๐ฆฑ woman: black skin, curly hair +๐ฉ๐ฟโ๐ฆฒ woman: black skin, bald +๐ฉ๐ฟโ๐ฆณ woman: black skin, white hair +๐งโ๐ฆฐ person: red hair +๐งโ๐ฆฑ person: curly hair +๐งโ๐ฆฒ person: bald +๐งโ๐ฆณ person: white hair +๐ง๐ปโ๐ฆฐ person: white skin, red hair +๐ง๐ปโ๐ฆฑ person: white skin, curly hair +๐ง๐ปโ๐ฆฒ person: white skin, bald +๐ง๐ปโ๐ฆณ person: white skin, white hair +๐ง๐ผโ๐ฆฐ person: tan skin, red hair +๐ง๐ผโ๐ฆฑ person: tan skin, curly hair +๐ง๐ผโ๐ฆฒ person: tan skin, bald +๐ง๐ผโ๐ฆณ person: tan skin, white hair +๐ง๐ฝโ๐ฆฐ person: olive skin, red hair +๐ง๐ฝโ๐ฆฑ person: olive skin, curly hair +๐ง๐ฝโ๐ฆฒ person: olive skin, bald +๐ง๐ฝโ๐ฆณ person: olive skin, white hair +๐ง๐พโ๐ฆฐ person: brown skin, red hair +๐ง๐พโ๐ฆฑ person: brown skin, curly hair +๐ง๐พโ๐ฆฒ person: brown skin, bald +๐ง๐พโ๐ฆณ person: brown skin, white hair +๐ง๐ฟโ๐ฆฐ person: black skin, red hair +๐ง๐ฟโ๐ฆฑ person: black skin, curly hair +๐ง๐ฟโ๐ฆฒ person: black skin, bald +๐ง๐ฟโ๐ฆณ person: black skin, white hair +โ๏ธโ๐ฅ broken chain +โค๏ธโ๐ฅ heart on fire +โค๏ธโ๐ฉน mending heart +๐โ๐ซ brown mushroom +๐โ๐ฉ lime +๐ดโโ ๏ธ pirate flag +๐โโฌ black cat +๐โ๐ฆบ service dog +๐ฆโโฌ black bird +๐ฆโ๐ฅ phoenix +๐ปโโ๏ธ polar bear +๐๏ธโ๐จ๏ธ eye in speech bubble +๐ฎโ๐จ face exhaling +๐ตโ๐ซ face with spiral eyes +๐ถโ๐ซ๏ธ face in clouds +๐โโ๏ธ head shaking horizontally +๐โโ๏ธ head shaking vertically เฒ _เฒ not amused face ( อกยฐ อส อกยฐ) lenny face (โ_สโ) wide eyes face diff --git a/dotfiles/.profile b/dotfiles/.profile index 12dfd13..71b6b96 100644 --- a/dotfiles/.profile +++ b/dotfiles/.profile @@ -1,7 +1,7 @@ export PATH=$PATH:$HOME/.local/bin # Wayland-specific -#export GDK_BACKEND=wayland +export GDK_BACKEND=wayland export EGL_PLATFORM=wayland export CLUTTER_PLATFORM=wayland export SDL_VIDEODRIVER=wayland |
