├── LICENSE ├── README.md ├── aligned-intensified.gif ├── aligned.png ├── canceled.png ├── check.png ├── ongoing.png ├── paused.png ├── progress.png └── todo.png /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Bobby Giangeruso 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Slack Emojis 2 | preview 3 | 4 | A system of Slack emojis, used for sharing progress updates and reacting to posts. 5 | 6 | ## Usage 7 | Appears in the Slack of Heart Hands, Figma, Vercel, Campsite, Dust, and friends. 8 | - `:todo:` upcoming focus or reading post later 9 | - `:in-progress:` active focus 10 | - `:done:` completed focus or read post 11 | - `:paused:` paused focus 12 | - `:canceled:` canceled focus 13 | - `:ongoing:` ongoing focus, no foreseeable done state 14 | - `:aligned:` aligned with a decision 15 | - `:aligned-intensified:` super aligned with a decision 16 | 17 | ## Credits 18 | - Designed by [Bobby Giangeruso](https://x.com/_bgian) 19 | - `:Aligned:` symbol by [Ben Pasternak](https://x.com/pasternak) 20 | - System by [Jean-Charles Samuelian-Werve](https://x.com/jcsamuelian) and [Charles Gorintin](https://x.com/Gorintic) 21 | -------------------------------------------------------------------------------- /aligned-intensified.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/aligned-intensified.gif -------------------------------------------------------------------------------- /aligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/aligned.png -------------------------------------------------------------------------------- /canceled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/canceled.png -------------------------------------------------------------------------------- /check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/check.png -------------------------------------------------------------------------------- /ongoing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/ongoing.png -------------------------------------------------------------------------------- /paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/paused.png -------------------------------------------------------------------------------- /progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/progress.png -------------------------------------------------------------------------------- /todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgian/slack-emojis/23fd051515ce84b492030a6b0c250295fa049d99/todo.png --------------------------------------------------------------------------------