├── src ├── font │ ├── OpenDyslexic-Bold.woff │ ├── OpenDyslexic-Italic.woff │ ├── OpenDyslexic-Regular.woff │ ├── OpenDyslexic-BoldItalic.woff │ └── LICENSE └── base.css ├── manifest.json ├── powercord_manifest.json ├── dyslexia.theme.css ├── LICENSE └── README.md /src/font/OpenDyslexic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/discord-dyslexia/HEAD/src/font/OpenDyslexic-Bold.woff -------------------------------------------------------------------------------- /src/font/OpenDyslexic-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/discord-dyslexia/HEAD/src/font/OpenDyslexic-Italic.woff -------------------------------------------------------------------------------- /src/font/OpenDyslexic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/discord-dyslexia/HEAD/src/font/OpenDyslexic-Regular.woff -------------------------------------------------------------------------------- /src/font/OpenDyslexic-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscordStyles/discord-dyslexia/HEAD/src/font/OpenDyslexic-BoldItalic.woff -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dyslexia", 3 | "description": "A simple discord theme which makes the app more accommodating to people with dyslexia.", 4 | "version": "1.0", 5 | "author": "Tropical#8908 & Qwerasd#5202", 6 | "theme": "dyslexia.theme.css", 7 | "license": "MIT" 8 | } 9 | -------------------------------------------------------------------------------- /powercord_manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dyslexia", 3 | "description": "A simple discord theme which makes the app more accommodating to people with dyslexia.", 4 | "version": "1.0", 5 | "author": "Tropical#8908 & Qwerasd#5202", 6 | "theme": "dyslexia.theme.css", 7 | "license": "MIT" 8 | } 9 | -------------------------------------------------------------------------------- /src/font/LICENSE: -------------------------------------------------------------------------------- 1 | The following license applies to the OpenDyslexic fonts in this directory: 2 | 3 | Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (“Fonts”) and associated documentation files (the “Font Software”), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. -------------------------------------------------------------------------------- /dyslexia.theme.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @name Dyslexia 3 | * @author Tropical#8908 & Qwerasd#5202 4 | * @version 1.0 5 | * @description A simple discord theme which makes the app more accommodating to people with dyslexia. 6 | * @source https://github.com/DiscordStyles/discord-dyslexia/ 7 | */ 8 | 9 | /* ----------------------------------------------------------------------- */ 10 | 11 | /* IMPORT SOURCE CODE */ 12 | 13 | @import url(https://discordstyles.github.io/discord-dyslexia/src/base.css); 14 | 15 | /* ----------------------------------------------------------------------- */ 16 | 17 | /* SETTINGS */ 18 | 19 | :root { 20 | --word-spacing: 3px; /* Word spacing */ 21 | --letter-spacing: 0.25px; /* Letter Spacing */ 22 | --message-line-spacing: 2; /* Line spacing on messages */ 23 | } 24 | 25 | /* ----------------------------------------------------------------------- */ 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 DiscordStyles 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 |

discord-dyslexia

2 | 3 |

4 | Overview | 5 | Installation | 6 | Credits 7 |

8 | 9 |

10 | Preview 11 |

12 | 13 |

A simple discord theme which makes the app more accommodating to people with dyslexia.

14 | 15 | --- 16 | 17 | # Installation 18 | 19 | ### BetterDiscord 20 | 21 | 1. Download the theme file [here](https://betterdiscord.net/ghdl?id=3474). 22 | 2. Open your BetterDiscord themes folder. 23 | 3. Drag the file you downloaded into the folder. Ensure there isn't a copy identifier (eg `Name.theme(1).css`) at the end of the filename. 24 | 25 | ### Powercord 26 | 27 | > Ensure you have [git](https://git-scm.com/) installed before downloading powercord or vizality related content. 28 | 29 | 1. Open your terminal of choice. 30 | 2. Run `cd powercord/src/Powercord/themes && git clone https://github.com/DiscordStyles/discord-dyslexia`. 31 | 32 | ### Vizality 33 | 34 | > Ensure you have [git](https://git-scm.com/) installed before downloading powercord or vizality related content. 35 | 36 | 1. Open your terminal of choice. 37 | 2. Run `cd vizality/addons/themes && git clone https://github.com/DiscordStyles/discord-dyslexia`. 38 | 39 | # Credits 40 | - [OpenDyslexic font](https://opendyslexic.org/) 41 | - [Qwerasd205](https://github.com/qwerasd205) 42 | -------------------------------------------------------------------------------- /src/base.css: -------------------------------------------------------------------------------- 1 | /* Import OpenDyslexic */ 2 | 3 | @font-face { 4 | font-family: 'OpenDyslexic'; 5 | src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-Regular.woff'); 6 | font-style: normal; 7 | font-weight: normal; 8 | } 9 | 10 | @font-face { 11 | font-family: 'OpenDyslexic'; 12 | src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-Italic.woff'); 13 | font-style: italic; 14 | font-weight: normal; 15 | } 16 | 17 | @font-face { 18 | font-family: 'OpenDyslexic'; 19 | src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-Bold.woff'); 20 | font-weight: bold; 21 | font-style: normal; 22 | } 23 | 24 | @font-face { 25 | font-family: 'OpenDyslexic'; 26 | src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-BoldItalic.woff'); 27 | font-weight: bold; 28 | font-style: italic; 29 | } 30 | 31 | /* ----------------------------------------------------------------------- */ 32 | 33 | /* Backwards Compatibility */ 34 | 35 | :root { 36 | --line-spacing: var(--message-line-spacing); 37 | } 38 | 39 | /* Apply styles */ 40 | 41 | ::-webkit-input-placeholder, body, button, input, select, textarea { 42 | font-family: 'OpenDyslexic', 'Whitney', sans-serif !important; 43 | word-spacing: var(--word-spacing, initial); 44 | letter-spacing: var(--letter-spacing, initial); 45 | } 46 | 47 | /* Adjust formatted text line-height */ 48 | 49 | [class*="messageContent-" i] { 50 | line-height: var(--message-line-spacing, initial) !important; 51 | } 52 | 53 | /* Scale up timestamps & "Edited" text */ 54 | 55 | [class*="group-spacing" i] [class*="timestamp"], 56 | [class*="messageContent-" i] time { 57 | font-size: .9rem; 58 | } 59 | --------------------------------------------------------------------------------