├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── greetings.yml │ ├── label.yml │ ├── powershell.yml │ └── stale.yml ├── .gitignore ├── .vscode └── settings.json ├── Assets ├── Banners │ └── Native Banner V1.png ├── Logos │ └── logo.png ├── Previews │ └── Native Banner V1.png └── Profiles │ ├── Bob.png │ ├── Butterscootch.png │ ├── Nates-World.png │ └── Woof.png ├── Clients ├── aliucord.css ├── betterdiscord.css ├── goosemod.css ├── powercord.css ├── vizality.css └── web.css ├── Databases ├── SVRBG.css ├── badges.css └── friend-banners.css ├── Dev ├── Tools │ ├── Debug │ │ ├── debug.ps1 │ │ └── dist.ps1 │ ├── Installers │ │ └── powercord.bat │ └── bump_version.sh └── dev.scss ├── Docs ├── addons.md ├── changelog.md ├── contributing.md ├── credits.md ├── customizable.md └── features.md ├── LICENSE ├── Modules ├── Addons │ ├── Avatar-Shapes │ │ ├── hexagon.css │ │ ├── octogon.css │ │ ├── rounded.css │ │ ├── square.css │ │ └── squircle.css │ ├── Chat-Bubbles │ │ ├── left.css │ │ └── right.css │ ├── Context-Menus │ │ └── styling.css │ ├── Emoji-Replace │ │ ├── apple.css │ │ ├── facebook.css │ │ ├── google.css │ │ ├── guilded.css │ │ ├── joypixels.css │ │ ├── lg.css │ │ ├── messenger.css │ │ ├── mircosoft.css │ │ ├── mozilla.css │ │ ├── openmoji.css │ │ ├── revolt.css │ │ ├── samsung.css │ │ ├── skype.css │ │ ├── twitter.css │ │ └── whatsapp.css │ ├── Revert │ │ ├── connections.css │ │ └── models.css │ ├── SVRBG.css │ ├── Settings-Icons │ │ ├── goosemod.css │ │ ├── powercord.css │ │ └── source.css │ ├── badges.css │ ├── banner-tags.css │ ├── blur.css │ ├── blurple.css │ ├── button-icons.css │ ├── category-icons.css │ ├── category-names.css │ ├── channel-banners.css │ ├── channel-buttons.css │ ├── channel-icons.css │ ├── channel-names.css │ ├── codeblock-icons.css │ ├── contextmenu-icons.css │ ├── discolored.css │ ├── events-grid.css │ ├── friend-banners.css │ ├── friends-grid.css │ ├── games-grid.css │ ├── github-stats.css │ ├── guild-progressbars.css │ ├── image-gallery.css │ ├── interactive-links.css │ ├── link-buttons.css │ ├── link-text.css │ ├── perm-colors.css │ ├── plugin-grid.css │ ├── pop.css │ ├── pronoun-db.css │ ├── radial-statuses.css │ ├── role-icons.css │ ├── server-banners.css │ ├── server-icons.css │ ├── settings-header.css │ ├── settings-popouts.css │ ├── snippet-grid.css │ ├── spicy-friends.css │ ├── status-shapes.css │ ├── text-selection.css │ ├── theme-grid.css │ ├── theme-warnings.css │ ├── thread-icons.css │ ├── user-tags.css │ └── voice-links.css ├── Alignment │ ├── Bottom │ │ ├── guild.css │ │ ├── hsl.css │ │ ├── index.css │ │ ├── responsive.css │ │ ├── settings.css │ │ └── size.css │ ├── Left │ │ ├── guild.css │ │ ├── index.css │ │ ├── responsive.css │ │ ├── settings.css │ │ └── size.css │ ├── Right │ │ ├── guild.css │ │ ├── index.css │ │ ├── responsive.css │ │ ├── settings.css │ │ └── size.css │ ├── Top │ │ ├── guild.css │ │ ├── hsl.css │ │ ├── index.css │ │ ├── responsive.css │ │ ├── settings.css │ │ └── size.css │ └── focus-mode.css ├── Animations │ ├── context-menus.css │ ├── hide-channels.css │ ├── hide-pannels.css │ ├── media-popout.css │ └── upload.css ├── Effects │ ├── confetti.css │ ├── leaves.css │ ├── none.css │ ├── rain.css │ └── snow.css ├── Events │ ├── christmas.css │ ├── easter.css │ └── thanksgiving.css ├── Fonts │ ├── dash2space.css │ └── source.css ├── Modification │ ├── betterdiscord.css │ ├── goosemod.css │ ├── powercord.css │ ├── vizality.css │ └── web.css ├── Plugins │ ├── betterdiscord.css │ ├── goosemod.css │ ├── powercord.css │ └── vizality.css ├── Remove │ ├── beta.css │ ├── connections.css │ ├── context-buttons.css │ ├── no-emoji.css │ ├── no-gif.css │ ├── no-gift.css │ ├── no-help.css │ ├── no-nitro.css │ ├── no-number.css │ ├── no-spotify.css │ ├── no-sticker.css │ ├── no-threads.css │ ├── timestamp.css │ ├── user-settings.css │ └── welcome.css ├── Skins │ ├── Amoled │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Comfy │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Community │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Discord │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Fluidcord │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Lode │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── MS-Teams │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Nebula │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Nord │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Ovel │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Quarrel │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Rebrand │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Revamp │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Slate │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ ├── Spotify │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css │ └── WindowsXI │ │ ├── aliucord.json │ │ ├── palette.css │ │ └── splash.css ├── Splash │ ├── Client │ │ ├── android.css │ │ ├── iphone.css │ │ ├── linux.css │ │ ├── mac.css │ │ ├── web.css │ │ └── windows.css │ └── source.css └── Styles │ ├── Flat │ └── flat.css │ ├── Glassmorphism │ └── glassmorphism.css │ ├── Neumorphism │ └── neumorphism.css │ └── Skeuomorphism │ └── skeuomorphism.css ├── README.md ├── manifest.json ├── native.theme.css ├── powercord_manifest.json ├── src ├── Base │ ├── i18n.css │ ├── layout.css │ ├── loading.css │ ├── login.css │ ├── notice.css │ ├── scrollbars.css │ ├── testing.css │ ├── titlebar.css │ ├── tooltip.css │ └── wallpaper.css ├── Componets │ ├── channels.css │ ├── content.css │ ├── guild.css │ ├── header.css │ ├── home.css │ ├── input.css │ ├── members.css │ └── pannel.css ├── Custom │ ├── channel-hover.css │ ├── connections.css │ ├── disabled.css │ ├── dropdowns.css │ ├── edited.css │ ├── embeds.css │ ├── fixes.css │ ├── invites.css │ ├── media.css │ ├── messages.css │ ├── pings.css │ ├── replies.css │ ├── role-icons.css │ ├── search-dms.css │ ├── spotify.css │ ├── status.css │ └── toasts.css ├── Pages │ ├── boost.css │ ├── explore.css │ ├── favourites.css │ ├── friends.css │ ├── home.css │ ├── libary.css │ ├── nitro.css │ ├── settings.css │ └── subscription.css ├── Popouts │ ├── active-threads.css │ ├── autocomplete.css │ ├── bots.css │ ├── calendar.css │ ├── emoji-picker.css │ ├── events.css │ ├── home.css │ ├── inbox.css │ ├── pins.css │ ├── profile-large.css │ ├── profile-small.css │ ├── roles.css │ ├── rtc.css │ ├── rules.css │ ├── search.css │ ├── slash.css │ ├── status-picker.css │ ├── threads.css │ ├── topic.css │ ├── upload.css │ └── voice.css ├── Variables │ ├── Addons │ │ ├── Chat-Bubbles │ │ │ ├── left.css │ │ │ └── right.css │ │ ├── avatar-shapes.css │ │ ├── blurple.css │ │ ├── button-icons.css │ │ ├── category-icons.css │ │ ├── category-names.css │ │ ├── channel-banners.css │ │ ├── channel-buttons.css │ │ ├── channel-icons.css │ │ ├── channel-names.css │ │ ├── codeblock-icons.css │ │ ├── contextmenu-icons.css │ │ ├── discolored.css │ │ ├── events-grid.css │ │ ├── friend-banners.css │ │ ├── friends-grid.css │ │ ├── games-grid.css │ │ ├── guild-progressbars.css │ │ ├── link-buttons.css │ │ ├── link-text.css │ │ ├── perm-colors.css │ │ ├── plugin-grid.css │ │ ├── pop.css │ │ ├── pronoun-db.css │ │ ├── radial-statuses.css │ │ ├── server-banners.css │ │ ├── server-icons.css │ │ ├── settings-popouts.css │ │ ├── status-shapes.css │ │ ├── theme-grid.css │ │ ├── thread-icons.css │ │ └── user-tags.css │ └── theme-variables.css ├── source.css └── source.scss └── theme.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: Nate_Devs 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help me 4 | title: "[Bug Report]" 5 | labels: Bug 6 | assignees: NatesWorld 7 | --- 8 | 9 | **Describe the bug** 10 | A clear and concise description of what the bug is. 11 | 12 | **To Reproduce** 13 | Steps to reproduce the behaviour: 14 | 15 | 1. Go to "..." 16 | 2. Click on "...." 17 | 3. Scroll down to "...." 18 | 4. See error 19 | 20 | **Expected behaviour** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Operating System:** 27 | Which operating system do you use? 28 | 29 | - Linux 30 | - Windows 31 | - macOS 32 | 33 | **Additional context** 34 | Add any other context about the problem here -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- 1 | name: Greetings 2 | 3 | on: [pull_request, issues] 4 | 5 | jobs: 6 | greeting: 7 | runs-on: ubuntu-latest 8 | permissions: 9 | issues: write 10 | pull-requests: write 11 | steps: 12 | - uses: actions/first-interaction@v1 13 | with: 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | issue-message: 'Message that will be displayed on users first issue' 16 | pr-message: 'Message that will be displayed on users first pull request' 17 | -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- 1 | # This workflow will triage pull requests and apply a label based on the 2 | # paths that are modified in the pull request. 3 | # 4 | # To use this workflow, you will need to set up a .github/labeler.yml 5 | # file with configuration. For more information, see: 6 | # https://github.com/actions/labeler 7 | 8 | name: Labeler 9 | on: [pull_request] 10 | 11 | jobs: 12 | label: 13 | 14 | runs-on: ubuntu-latest 15 | permissions: 16 | contents: read 17 | pull-requests: write 18 | 19 | steps: 20 | - uses: actions/labeler@v2 21 | with: 22 | repo-token: "${{ secrets.GITHUB_TOKEN }}" 23 | -------------------------------------------------------------------------------- /.github/workflows/powershell.yml: -------------------------------------------------------------------------------- 1 | # This workflow uses actions that are not certified by GitHub. 2 | # They are provided by a third-party and are governed by 3 | # separate terms of service, privacy policy, and support 4 | # documentation. 5 | # 6 | # https://github.com/microsoft/action-psscriptanalyzer 7 | # For more information on PSScriptAnalyzer in general, see 8 | # https://github.com/PowerShell/PSScriptAnalyzer 9 | 10 | name: PSScriptAnalyzer 11 | 12 | on: 13 | push: 14 | branches: [ Master ] 15 | pull_request: 16 | branches: [ Master ] 17 | schedule: 18 | - cron: '22 9 * * 3' 19 | 20 | jobs: 21 | build: 22 | name: PSScriptAnalyzer 23 | runs-on: ubuntu-latest 24 | steps: 25 | - uses: actions/checkout@v2 26 | 27 | - name: Run PSScriptAnalyzer 28 | uses: microsoft/psscriptanalyzer-action@2044ae068e37d0161fa2127de04c19633882f061 29 | with: 30 | # Check https://github.com/microsoft/action-psscriptanalyzer for more info about the options. 31 | # The below set up runs PSScriptAnalyzer to your entire repository and runs some basic security rules. 32 | path: .\ 33 | recurse: true 34 | # Include your own basic security rules. Removing this option will run all the rules 35 | includeRule: '"PSAvoidGlobalAliases", "PSAvoidUsingConvertToSecureStringWithPlainText"' 36 | output: results.sarif 37 | 38 | # Upload the SARIF file generated in the previous step 39 | - name: Upload SARIF results file 40 | uses: github/codeql-action/upload-sarif@v1 41 | with: 42 | sarif_file: results.sarif 43 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. 2 | # 3 | # You can adjust the behavior by modifying this file. 4 | # For more information, see: 5 | # https://github.com/actions/stale 6 | name: Mark stale issues and pull requests 7 | 8 | on: 9 | schedule: 10 | - cron: '43 0 * * *' 11 | 12 | jobs: 13 | stale: 14 | 15 | runs-on: ubuntu-latest 16 | permissions: 17 | issues: write 18 | pull-requests: write 19 | 20 | steps: 21 | - uses: actions/stale@v3 22 | with: 23 | repo-token: ${{ secrets.GITHUB_TOKEN }} 24 | stale-issue-message: 'Stale issue message' 25 | stale-pr-message: 'Stale pull request message' 26 | stale-issue-label: 'no-issue-activity' 27 | stale-pr-label: 'no-pr-activity' 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | # ║ Gitignore ║ Paths ║ 3 | # ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | 5 | $RECYCLE.BIN/ 6 | .VSCodeCounter/ 7 | .history/ 8 | .ionide/ 9 | .idea/ 10 | 11 | # ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 12 | # ║ Gitignore ║ Files ║ 13 | # ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 14 | 15 | [Dd]esktop.ini 16 | *.stackdump 17 | *.cab 18 | *.msi 19 | *.msix 20 | *.msm 21 | *.msp 22 | *.lnk 23 | *.iml 24 | # ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 25 | # ║ Gitignore ║ Cache ║ 26 | # ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 27 | 28 | Thumbs.db 29 | Thumbs.db:encryptable 30 | ehthumbs.db 31 | ehthumbs_vista.db -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // CSS 2 | "css.hover.references": false, 3 | "css.lint.universalSelector": "warning", 4 | 5 | // SCSS 6 | "liveSassCompile.settings.generateMap": false, 7 | "liveSassCompile.settings.watchOnLaunch": true, 8 | "liveSassCompile.settings.autoprefix": ["defaults"], 9 | "liveSassCompile.settings.showOutputWindowOn": "Warning", 10 | "liveSassCompile.settings.formats": [ 11 | { 12 | "format": "compressed", 13 | "extensionName": ".css", 14 | "savePath": null 15 | } 16 | ], 17 | "liveSassCompile.settings.excludeList": ["/.VSCodeCounter/**", "/.vscode/**", "/.sorting/**", "/dev.scss"] -------------------------------------------------------------------------------- /Assets/Banners/Native Banner V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Assets/Banners/Native Banner V1.png -------------------------------------------------------------------------------- /Assets/Logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Assets/Logos/logo.png -------------------------------------------------------------------------------- /Assets/Previews/Native Banner V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Assets/Previews/Native Banner V1.png -------------------------------------------------------------------------------- /Assets/Profiles/Bob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Assets/Profiles/Bob.png -------------------------------------------------------------------------------- /Assets/Profiles/Butterscootch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Assets/Profiles/Butterscootch.png -------------------------------------------------------------------------------- /Assets/Profiles/Nates-World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Assets/Profiles/Nates-World.png -------------------------------------------------------------------------------- /Assets/Profiles/Woof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Assets/Profiles/Woof.png -------------------------------------------------------------------------------- /Clients/aliucord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Clients/aliucord.css -------------------------------------------------------------------------------- /Clients/betterdiscord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Clients/betterdiscord.css -------------------------------------------------------------------------------- /Clients/goosemod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Clients/goosemod.css -------------------------------------------------------------------------------- /Clients/powercord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Clients/powercord.css -------------------------------------------------------------------------------- /Clients/vizality.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Clients/vizality.css -------------------------------------------------------------------------------- /Clients/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Clients/web.css -------------------------------------------------------------------------------- /Databases/SVRBG.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Databases/SVRBG.css -------------------------------------------------------------------------------- /Databases/badges.css: -------------------------------------------------------------------------------- 1 | /* Badges */ 2 | :root { 3 | --developers: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.4 10.6L2.8 6L7.4 1.4L6 0L0 6L6 12L7.4 10.6ZM12.6 10.6L17.2 6L12.6 1.4L14 0L20 6L14 12L12.6 10.6V10.6Z' fill='white'/%3E%3C/svg%3E%0A"); 4 | } 5 | 6 | .userPopout-2j1gM4[aria-label="Nate's World"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 7 | content: var(--developers); 8 | margin-right: 5px; 9 | } 10 | 11 | .userPopout-2j1gM4[aria-label="ModuleMinecraft"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 12 | content: var(--developers); 13 | margin-right: 5px; 14 | } 15 | 16 | .userPopout-2j1gM4[aria-label="Butterscootch"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 17 | content: var(--developers); 18 | margin-right: 5px; 19 | } 20 | 21 | .userPopout-2j1gM4[aria-label="Woof1209"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 22 | content: var(--developers); 23 | margin-right: 5px; 24 | } 25 | 26 | .userPopout-2j1gM4[aria-label="bob218191"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 27 | content: var(--developers); 28 | margin-right: 5px; 29 | } 30 | 31 | .userPopout-2j1gM4[aria-label="IGL"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 32 | content: var(--developers); 33 | margin-right: 5px; 34 | } 35 | 36 | .userPopout-2j1gM4[aria-label="CorellanStoma"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 37 | content: var(--developers); 38 | margin-right: 5px; 39 | } 40 | 41 | .userPopout-2j1gM4[aria-label="Ball Buster Bob 9000"] .profileBadges-2pItdR, .badgeList-2aoHPw::before { 42 | content: var(--developers); 43 | margin-right: 5px; 44 | } -------------------------------------------------------------------------------- /Databases/friend-banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Databases/friend-banners.css -------------------------------------------------------------------------------- /Dev/Tools/Debug/debug.ps1: -------------------------------------------------------------------------------- 1 | (Get-Content -path ".\src\buildvars.scss") -replace "DEBUG: false", "DEBUG: true" | Set-Content -Path ".\src\buildvars.scss" -------------------------------------------------------------------------------- /Dev/Tools/Debug/dist.ps1: -------------------------------------------------------------------------------- 1 | (Get-Content -path ".\src\buildvars.scss") -replace "DEBUG: true", "DEBUG: false" | Set-Content -Path ".\src\buildvars.scss" -------------------------------------------------------------------------------- /Dev/Tools/Installers/powercord.bat: -------------------------------------------------------------------------------- 1 | echo Installer by Nate's World#2102 2 | cd %USERPROFILE% 3 | git clone https://github.com/powercord-org/powercord 4 | cd powercord 5 | npm i 6 | npm run plug && pause 7 | cd %USERPROFILE% 8 | cd powercord/src/Powercord/plugins && git clone https://github.com/redstonekasi/theme-toggler 9 | cd ..\..\..\..\ 10 | cd powercord/src/Powercord/plugins && git clone https://github.com/ploogins/PowercordThemeDownloader 11 | cd ..\..\..\..\ 12 | cd powercord/src/Powercord/plugins && git clone https://github.com/LandenStephenss/PowercordPluginDownloader 13 | cd ..\..\..\..\ 14 | cd powercord/src/Powercord/themes && git clone https://github.com/Nates-World-Projects/Native 15 | taskkill /IM DiscordCanary.exe /F 16 | start %USERPROFILE%\AppData\Local\DiscordCanary\Update.exe --processStart DiscordCanary.exe 17 | pause -------------------------------------------------------------------------------- /Dev/Tools/bump_version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo -e "Version to bump to:" 4 | read version 5 | 6 | # Check if we're on DEV 7 | nomeDellaCartella=${PWD##*/} 8 | nomeDellaTema="Native" 9 | filePtr="index.css" 10 | 11 | if [ "$nomeDellaCartella" = "Native - Release" ] 12 | then 13 | nomeDellaTema="Native" 14 | filePtr="index.css" 15 | else 16 | nomeDellaTema="Native (DEV)" 17 | filePtr="dist.css" 18 | fi 19 | 20 | # Write the files 21 | echo -e "{\n \"name\": \"${nomeDellaTema}\",\n \"description\": \" A Discord Theme that adds features to Discord in a somewhat neat & native style \",\n \"version\": \"${version}\",\n \"license\": \"MIT\",\n \"theme\": \"${filePtr}\",\n \"consent\": \"false\",\n \"splashTheme\": \"splash.css\",\n \"author\": \"Nate's World\"\n}" > manifest.json 22 | echo -e "{\n \"name\": \"${nomeDellaTema}\",\n \"description\": \"A Discord Theme that adds features to Discord in a somewhat neat & native style\",\n \"version\": \"${version}\",\n \"license\": \"MIT\",\n \"theme\": \"${filePtr}\",\n \"consent\": \"false\",\n \"splashTheme\": \"splash.css\",\n \"author\": \"Nate's Wolrd\"\n}" > powercord_manifest.json 23 | echo -e "/**\n * @name Native\n * @author Nate's World\n * @version ${version}\n * @description A Discord Theme that adds features to Discord in a somewhat neat & native style\n * @source https://github.com/Nates-World-Community/Native\n*/\n\n@import \"dist\";\n\n" > betterdiscord_dev.scss 24 | echo -e "/**\n * @name Native\n * @author Nate's World\n * @version ${version}\n * @description A Discord Theme that adds features to Discord in a somewhat neat & native style\n * @source https://github.com/Nates-World-Community/Native\n * @updateUrl https://raw.githubusercontent.com/Nates-World-Community/Native/main/Native.theme.css\n*/\n\n@import \"index\";\n\n" > betterdiscord.scss 25 | echo -e "// BUILD VARS\n\$version: \"Native v${version}\";\n" > ./src/_buildvars.scss -------------------------------------------------------------------------------- /Dev/dev.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Dev/dev.scss -------------------------------------------------------------------------------- /Docs/addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Docs/addons.md -------------------------------------------------------------------------------- /Docs/changelog.md: -------------------------------------------------------------------------------- 1 |

Change Log

2 | 3 |

V1.0.0

4 | 5 | * Added Directories 6 | * Addded File Structure 7 | * Added **68** Theme Addons 8 | * Added Guild Alignment Options 9 | * Resizeable 10 | * Focus Mode 11 | * Customizablity 12 | * Theme Effects 13 | * Supports **Glasscord** 14 | * Supports Future Modification 15 | * Supports a range of **BetterDiscord**, **Powercord**, **Goosemod** & **Vizality** Plugins 16 | * Added removeablity options 17 | * Skin Support 18 | * Splash Support 19 | * Added optional Animations 20 | * Supports ***Most*** clients (BetterDiscord, Powercord, Goosemod, Vizality, Stylus) 21 | * Added **Custom** folder for snippets 22 | -------------------------------------------------------------------------------- /Docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Docs/contributing.md -------------------------------------------------------------------------------- /Docs/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Docs/credits.md -------------------------------------------------------------------------------- /Docs/customizable.md: -------------------------------------------------------------------------------- 1 |

Theme Customization

2 | 3 |

Theme Variables

4 | 5 | 6 | 7 |

Addon Variables

-------------------------------------------------------------------------------- /Docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Docs/features.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | 21 | Copyright (c) 2022 Nate's World Projects -------------------------------------------------------------------------------- /Modules/Addons/Avatar-Shapes/hexagon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Avatar-Shapes/hexagon.css -------------------------------------------------------------------------------- /Modules/Addons/Avatar-Shapes/octogon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Avatar-Shapes/octogon.css -------------------------------------------------------------------------------- /Modules/Addons/Avatar-Shapes/rounded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Avatar-Shapes/rounded.css -------------------------------------------------------------------------------- /Modules/Addons/Chat-Bubbles/right.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Chat-Bubbles/right.css -------------------------------------------------------------------------------- /Modules/Addons/Context-Menus/styling.css: -------------------------------------------------------------------------------- 1 | .toolbar-37BrJ5 { 2 | display: flex; 3 | flex-direction: column; 4 | height: auto; 5 | width: 150px; 6 | transform: translate(28px, -84%); 7 | } 8 | 9 | .toolbar-37BrJ5 .button-lA2rvH { 10 | width: 100%; 11 | } 12 | 13 | .toolbar-37BrJ5 .button-lA2rvH::after { 14 | color: var(--text-normal); 15 | width: calc(100% - 32px); 16 | text-align: left; 17 | } 18 | 19 | .toolbar-37BrJ5 .button-lA2rvH:hover::after { 20 | color: #fff; 21 | } 22 | 23 | .toolbar-37BrJ5 .button-lA2rvH.active-136ioF::after { 24 | color: #fff; 25 | } 26 | 27 | .toolbar-37BrJ5 .button-lA2rvH .contents-3ca1mk { 28 | margin: 6px; 29 | } 30 | 31 | .toolbar-37BrJ5 .button-lA2rvH:nth-of-type(1)::after { 32 | content: "Bold"; 33 | } 34 | 35 | .toolbar-37BrJ5 .button-lA2rvH:nth-of-type(2)::after { 36 | content: "Italics"; 37 | } 38 | 39 | .toolbar-37BrJ5 .button-lA2rvH:nth-of-type(3)::after { 40 | content: "Strikethrough"; 41 | } 42 | 43 | .toolbar-37BrJ5 .button-lA2rvH:nth-of-type(4)::after { 44 | content: "Quote"; 45 | } 46 | 47 | .toolbar-37BrJ5 .button-lA2rvH:nth-of-type(5)::after { 48 | content: "Codeblock"; 49 | } 50 | 51 | .toolbar-37BrJ5 .button-lA2rvH:nth-of-type(6)::after { 52 | content: "Spoiler"; 53 | } 54 | 55 | .divider-3NY7PF { 56 | height: 0; 57 | border-left: none; 58 | border-bottom: 1px solid hsla(0, 0%, 100%, .06); 59 | margin: 4px 5px; 60 | } 61 | 62 | .toolbar-37BrJ5 .button-lA2rvH:first-of-type { 63 | border-radius: 4px 4px 0px 0px; 64 | } 65 | 66 | .toolbar-37BrJ5 .button-lA2rvH:last-of-type { 67 | border-radius: 0px 0px 4px 4px; 68 | } -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/apple.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Apple.css"); -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/facebook.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Facebook.css"); -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/google.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Google.css"); -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/guilded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Emoji-Replace/guilded.css -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/joypixels.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/JoyPixels.css"); -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/lg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Emoji-Replace/lg.css -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/messenger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Emoji-Replace/messenger.css -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/mircosoft.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Mircosoft.css"); -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/mozilla.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Emoji-Replace/mozilla.css -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/openmoji.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/OpenMoji.css"); -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/revolt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Emoji-Replace/revolt.css -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/samsung.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Samsung.css"); -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/skype.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Emoji-Replace/skype.css -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/twitter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/Emoji-Replace/twitter.css -------------------------------------------------------------------------------- /Modules/Addons/Emoji-Replace/whatsapp.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/WhatsApp.css"); -------------------------------------------------------------------------------- /Modules/Addons/Revert/connections.css: -------------------------------------------------------------------------------- 1 | .theme-light .connectionAccountValue-3gVX0m, 2 | .theme-light .connectionOptionSwitch-FwkEHS .subEnabledTitle-2MHkAH { 3 | color: #ffffff; 4 | } 5 | 6 | .theme-light .connectionAccountLabel-HkwS6X { 7 | color: #b9bbbe; 8 | } 9 | 10 | .theme-light .connectionDelete-XXTMqE svg path { 11 | fill: #f1f1f1; 12 | } 13 | 14 | .theme-light .connectionDelete-XXTMqE:hover svg path { 15 | fill: #ffffff; 16 | } 17 | 18 | .connectionAccountLabel-HkwS6X { 19 | visibility: hidden; 20 | } 21 | 22 | .connectionAccountLabel-HkwS6X::before { 23 | visibility: visible; 24 | content: "Account Name"; 25 | } 26 | 27 | .connectionDelete-XXTMqE { 28 | display: flex; 29 | align-items: center; 30 | height: 30px; 31 | width: 30px; 32 | border: #fff5 1px solid; 33 | border-radius: 4px; 34 | } 35 | 36 | .connectionDelete-XXTMqE svg { 37 | margin: 0 auto; 38 | display: block; 39 | width: 18px; 40 | height: 18px; 41 | color: #b9bbbe; 42 | } 43 | 44 | .connection-107AGH { 45 | z-index: 0; 46 | overflow: hidden; 47 | margin-bottom: -10px; 48 | } 49 | 50 | .connection-107AGH .container-2nx-BQ:not([style*="125"]) { 51 | background-color: #fff5 !important; 52 | } 53 | 54 | .connection-107AGH .container-2nx-BQ[style*="125"] { 55 | background-color: #0003 !important; 56 | } 57 | 58 | .connection-107AGH svg.slider-32CRPX svg { 59 | display: none; 60 | } 61 | 62 | .connectionHeader-2rV1ze { 63 | background: #0002; 64 | border-bottom: #0003 1px solid; 65 | } 66 | 67 | .connectionHeader-2rV1ze > img + *::before { 68 | content: ""; 69 | position: absolute; 70 | top: 0; 71 | left: 0; 72 | z-index: -1; 73 | pointer-events: none; 74 | width: 100%; 75 | height: 10000000px; 76 | background-color: var(--connection-color); 77 | } 78 | 79 | img[alt*="Battle.net"] + * { 80 | --connection-color: #009ae4; 81 | } 82 | 83 | img[alt*="Facebook"] + * { 84 | --connection-color: #3d4e84; 85 | } 86 | 87 | img[alt*="GitHub"] + * { 88 | --connection-color: #191717; 89 | } 90 | 91 | img[alt*="League of Legends"] + * { 92 | --connection-color: #ae914b; 93 | } 94 | 95 | img[alt*="Reddit"] + * { 96 | --connection-color: #ec5528; 97 | } 98 | 99 | img[alt*="Spotify"] + * { 100 | --connection-color: #1db954; 101 | } 102 | 103 | img[alt*="Skype"] + * { 104 | --connection-color: #009dd7; 105 | } 106 | 107 | img[alt*="Steam"] + * { 108 | --connection-color: #171a21; 109 | } 110 | 111 | img[alt*="Twitch"] + * { 112 | --connection-color: #593695; 113 | } 114 | 115 | img[alt*="Twitter"] + * { 116 | --connection-color: #1da1f2; 117 | } 118 | 119 | img[alt*="YouTube"] + * { 120 | --connection-color: #ba342b; 121 | } 122 | 123 | img[alt*="Xbox Live"] + * { 124 | --connection-color: #0e6f0e; 125 | } 126 | 127 | .connectionIcon-3nqZDW[alt*="Battle.net"] { 128 | content: url("https://discord.com/assets/3a257c4cab129e956b05bd50047eb0f9.png"); 129 | } 130 | 131 | .connectionIcon-3nqZDW[alt*="Facebook"] { 132 | content: url("https://discord.com/assets/c926e69c482dac25b8e940db74496813.png"); 133 | } 134 | 135 | .connectionIcon-3nqZDW[alt*="GitHub"] { 136 | content: url("https://discord.com/assets/9e2893717851c493b4bff518f8b63ee7.png"); 137 | } 138 | 139 | .connectionIcon-3nqZDW[alt*="League of Legends"] { 140 | content: url("https://discord.com/assets/fbbd224a0d94747c102515090682bbe1.png"); 141 | } 142 | 143 | .connectionIcon-3nqZDW[alt*="Reddit"] { 144 | content: url("https://discord.com/assets/bcc7bc0c0b27f9cbadaa1a47ea79db22.png"); 145 | } 146 | 147 | .connectionIcon-3nqZDW[alt*="Spotify"] { 148 | content: url("https://discord.com/assets/fe3770614c2658a07dea3ecb286ce745.png"); 149 | } 150 | 151 | .connectionIcon-3nqZDW[alt*="Skype"] { 152 | content: url("https://discord.com/assets/de5fb9e860729912c65048c1c657e1a3.png"); 153 | } 154 | 155 | .connectionIcon-3nqZDW[alt*="Steam"] { 156 | content: url("https://discord.com/assets/baf4bdd36b7ef74e8f34b402e66f81f4.png"); 157 | } 158 | 159 | .connectionIcon-3nqZDW[alt*="Twitch"] { 160 | content: url("https://discord.com/assets/4c1bab3f945269a5c1be0b3a2c177141.png"); 161 | } 162 | 163 | .connectionIcon-3nqZDW[alt*="Twitter"] { 164 | content: url("https://discord.com/assets/2ac50d286a1c883f28b5149239a8ad36.png"); 165 | } 166 | 167 | .connectionIcon-3nqZDW[alt*="YouTube"] { 168 | content: url("https://discord.com/assets/0ef81742942677bcef0bebdfb7061d29.png"); 169 | } 170 | 171 | .connectionIcon-3nqZDW[alt*="Xbox Live"] { 172 | content: url("https://discord.com/assets/850ed4fcf5839b7a32651f5959e8511e.png"); 173 | } -------------------------------------------------------------------------------- /Modules/Addons/Revert/models.css: -------------------------------------------------------------------------------- 1 | /* Light theme away */ 2 | html.theme-dark .theme-light { 3 | --header-primary: #fff; 4 | --header-secondary: #b9bbbe; 5 | --text-normal: #dcddde; 6 | --text-muted: #72767d; 7 | --text-link: #00b0f4; 8 | --channels-default: #8e9297; 9 | --interactive-normal: #b9bbbe; 10 | --interactive-hover: #dcddde; 11 | --interactive-active: #fff; 12 | --interactive-muted: #4f545c; 13 | --background-primary: #36393f; 14 | --background-secondary: #2f3136; 15 | --background-secondary-alt: #292b2f; 16 | --background-tertiary: #202225; 17 | --background-accent: #4f545c; 18 | --background-floating: #18191c; 19 | --background-mobile-primary: #36393f; 20 | --background-mobile-secondary: #2f3136; 21 | --background-modifier-hover: rgba(79,84,92,0.16); 22 | --background-modifier-active: rgba(79,84,92,0.24); 23 | --background-modifier-selected: rgba(79,84,92,0.32); 24 | --background-modifier-accent: hsla(0,0%,100%,0.06); 25 | --scrollbar-thin-thumb: #202225; 26 | --scrollbar-thin-track: transparent; 27 | --scrollbar-auto-thumb: #202225; 28 | --scrollbar-auto-track: #2e3338; 29 | --focus-primary: #00b0f4; 30 | } 31 | 32 | html.theme-dark .theme-light .root-g14mjS { 33 | background-color: #36393f; 34 | -webkit-box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 2px 10px 0 rgba(0,0,0,.2); 35 | box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 2px 10px 0 rgba(0,0,0,.2); 36 | } 37 | 38 | html.theme-dark .theme-light .footer-31IekZ { 39 | background-color: #2f3136; 40 | -webkit-box-shadow: inset 0 1px 0 rgba(47,49,54,.6); 41 | box-shadow: inset 0 1px 0 rgba(47,49,54,.6); 42 | color: var(--text-normal); 43 | } -------------------------------------------------------------------------------- /Modules/Addons/SVRBG.css: -------------------------------------------------------------------------------- 1 | /* Import the Banners */ 2 | @import url("https://therealgwjosh.github.io/BannerBG/src/banners.css"); 3 | 4 | :root { 5 | 6 | --BannerBG-Header-Height: block; 7 | --BannerBG-Header-Padding: 16px; 8 | --BannerBG-Header-Box-Shadow: revert; 9 | 10 | --BannerBG-Server-Banner: block; 11 | --BannerBG-Server-Width: block; 12 | --BannerBG-Server-Height: block; 13 | --BannerBG-Server-Top: block; 14 | --BannerBG-Server-Left: block; 15 | --BannerBG-Server-Z-Index: block; 16 | --BannerBG-Server-Position: block; 17 | 18 | } 19 | 20 | /* BannerBG Main Code */ 21 | [class*="container-3w7J-x"] [class*="header-2V-4Sw"] { 22 | height: var(--BannerBG-Header-Height); 23 | padding: var(--BannerBG-Header-Padding); 24 | box-shadow: var(--BannerBG-Header-Box-Shadow); 25 | align-items: flex-start; 26 | } 27 | 28 | [class*="container-3w7J-x"] [class*="header-2V-4Sw"]::before { 29 | content: ""; 30 | position: var(--BannerBG-Server-Position); 31 | top: var(--BannerBG-Server-Top); 32 | left: var(--BannerBG-Server-Left); 33 | z-index: var(--BannerBG-Server-Z-Index); 34 | width: var(--BannerBG-Server-Width); 35 | height: var(--BannerBG-Server-Height); 36 | background: var(--BannerBG-Server-Banner) center/cover no-repeat; 37 | -webkit-mask: linear-gradient(var(--background-secondary), transparent); 38 | } 39 | 40 | /* Shrink server banners to header instead of disappearing. */ 41 | [class*="animatedContainer-"] { 42 | opacity: 1 !important; 43 | transition: opacity .5s; 44 | } 45 | 46 | [class*="animatedContainer-"] > [class*="bannerImage-"] { 47 | transition: margin .5s; 48 | } 49 | 50 | :not([class*="bannerVisible-"]) > [class*="animatedContainer-"] { 51 | opacity: .35 !important; 52 | height: 138px; 53 | } 54 | 55 | :not([class*="bannerVisible-"]) > [class*="animatedContainer-"] > [class*="bannerImage-"] { 56 | margin-top: -12px; 57 | } -------------------------------------------------------------------------------- /Modules/Addons/Settings-Icons/powercord.css: -------------------------------------------------------------------------------- 1 | .sidebar-nqHbhN .item-3XjbnG[aria-controls=pc-general-tab]::before{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M3 18c0 .55.45 1 1 1h5v-2H4c-.55 0-1 .45-1 1zM3 6c0 .55.45 1 1 1h9V5H4c-.55 0-1 .45-1 1zm10 14v-1h7c.55 0 1-.45 1-1s-.45-1-1-1h-7v-1c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1zM7 10v1H4c-.55 0-1 .45-1 1s.45 1 1 1h3v1c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1zm14 2c0-.55-.45-1-1-1h-9v2h9c.55 0 1-.45 1-1zm-5-3c.55 0 1-.45 1-1V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z'/%3E%3C/svg%3E") !important;z-index:2}.sidebar-nqHbhN .item-3XjbnG[aria-controls=pc-modulemanager-plugins-tab]::before{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z'/%3E%3C/svg%3E") !important;z-index:2}.sidebar-nqHbhN .item-3XjbnG[aria-controls=pc-modulemanager-themes-tab]::before{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37l-1.34-1.34c-.39-.39-1.02-.39-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z'/%3E%3C/svg%3E") !important;z-index:2}.sidebar-nqHbhN .item-3XjbnG[aria-controls=pc-updater-tab]::before{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 24 24' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cg%3E%3Crect fill='none' height='24' width='24'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M11,8.75v3.68c0,0.35,0.19,0.68,0.49,0.86l3.12,1.85c0.36,0.21,0.82,0.09,1.03-0.26c0.21-0.36,0.1-0.82-0.26-1.03 l-2.87-1.71v-3.4C12.5,8.34,12.16,8,11.75,8S11,8.34,11,8.75z M21,9.5V4.21c0-0.45-0.54-0.67-0.85-0.35l-1.78,1.78 c-1.81-1.81-4.39-2.85-7.21-2.6c-4.19,0.38-7.64,3.75-8.1,7.94C2.46,16.4,6.69,21,12,21c4.59,0,8.38-3.44,8.93-7.88 c0.07-0.6-0.4-1.12-1-1.12c-0.5,0-0.92,0.37-0.98,0.86c-0.43,3.49-3.44,6.19-7.05,6.14c-3.71-0.05-6.84-3.18-6.9-6.9 C4.94,8.2,8.11,5,12,5c1.93,0,3.68,0.79,4.95,2.05l-2.09,2.09C14.54,9.46,14.76,10,15.21,10h5.29C20.78,10,21,9.78,21,9.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;z-index:2} -------------------------------------------------------------------------------- /Modules/Addons/banner-tags.css: -------------------------------------------------------------------------------- 1 | [class*="userPopout-"] .banner-1YaD3N:not(.popoutBannerPremium-3i5EEI):not(.bannerPremium-kkSkPv):before { 2 | content: 'Color'; 3 | padding: 5px; 4 | border-radius: var(--radius-secondary, 8px); 5 | background: var(--brand-experiment); 6 | position: absolute; 7 | font-size: 10px !important; 8 | font-weight: 600; 9 | font-family: var(--font-primary); 10 | height: auto; 11 | width: auto; 12 | color: var(--header-primary); 13 | text-transform: uppercase; 14 | top: 8px; 15 | left: 250px; 16 | } 17 | 18 | [class*="userPopout-"] .popoutBannerPremium-3i5EEI::before { 19 | content: 'USRBG'; 20 | padding: 5px; 21 | border-radius: var(--radius-secondary, 8px); 22 | background: var(--brand-experiment); 23 | position: absolute; 24 | font-size: 10px !important; 25 | font-weight: 600; 26 | font-family: var(--font-primary); 27 | height: auto; 28 | width: auto; 29 | color: var(--header-primary); 30 | text-transform: uppercase; 31 | top: 8px; 32 | left: 250px; 33 | } 34 | [class*="userPopout-"] [class*="premiumIconWrapper-"], 35 | [class*="userPopout-"] [class*="platformIcon-"], 36 | [class*="userPopout-"] [class*="banner"] div { 37 | display: none !important; 38 | } -------------------------------------------------------------------------------- /Modules/Addons/blur.css: -------------------------------------------------------------------------------- 1 | .textContent-TsKzji.textContent-TsKzji { 2 | filter: blur(10px); 3 | transition: .2s cubic-bezier(.2, .11, 0, 1); 4 | } 5 | .textContent-TsKzji.textContent-TsKzji:hover { 6 | filter: none; 7 | transition: .5s; 8 | } 9 | 10 | /* Title */ 11 | .children-1xdcWE .fieldTitle-2g5r_V { 12 | margin-left: 4px; 13 | } 14 | 15 | /* My Account */ 16 | .children-1xdcWE .fieldList-in8WkP .size16-rrJ6ag { 17 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 18 | filter: blur(3px); 19 | opacity: 0.8; 20 | margin-left: 4px; 21 | } 22 | 23 | .children-1xdcWE .fieldList-in8WkP .size16-rrJ6ag:hover { 24 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 25 | filter: none; 26 | opacity: 1; 27 | margin-left: 4px; 28 | } 29 | 30 | /* Payment Methods */ 31 | .paymentSourceRow-1z8x7Z .subText-3Yps8e { 32 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 33 | filter: blur(3px); 34 | opacity: 0.8; 35 | } 36 | 37 | .paymentSourceRow-1z8x7Z .subText-3Yps8e:hover { 38 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 39 | filter: none; 40 | opacity: 1; 41 | } 42 | 43 | /* Transaction History */ 44 | .theme-dark .verticalFit-21XL0v .summaryInfo-3hcuop, 45 | .theme-light .verticalFit-21XL0v .summaryInfo-3hcuop { 46 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 47 | filter: blur(8px); 48 | opacity: 0.8; 49 | } 50 | 51 | .theme-dark .verticalFit-21XL0v:hover .summaryInfo-3hcuop, 52 | .theme-light .verticalFit-21XL0v:hover .summaryInfo-3hcuop { 53 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 54 | filter: none; 55 | opacity: 1; 56 | } 57 | 58 | /* Subscriptions */ 59 | .detailsBlock-FoDTGA .paymentSourceLabel-1z_EVr { 60 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 61 | filter: blur(3px); 62 | } 63 | 64 | .detailsBlock-FoDTGA .paymentSourceLabel-1z_EVr:hover { 65 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 66 | filter: none; 67 | opacity: 1; 68 | } 69 | 70 | /* Links */ 71 | .contents-2MsGLg .anchor-1MIwyf { 72 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 73 | filter: blur(3px); 74 | opacity: 0.8; 75 | } 76 | 77 | .contents-2MsGLg .anchor-1MIwyf:hover { 78 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 79 | filter: none; 80 | opacity: 1; 81 | } 82 | /* Connected Accounts */ 83 | .connectionAccountValue-3gVX0m{ 84 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 85 | filter: blur(8px); 86 | opacity: 0.8; 87 | } 88 | .connectionAccountValue-3gVX0m:hover{ 89 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 90 | filter: none; 91 | opacity: 1; 92 | } 93 | /* Authorised Apps Blur */ 94 | .authedApp-1tw-eT { 95 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 96 | filter: blur(8px); 97 | opacity: 0.8; 98 | } 99 | .authedApp-1tw-eT:hover { 100 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 101 | filter: none; 102 | opacity: 1; 103 | } 104 | /* Connections Blur */ 105 | .gameName-Uw4dbt { 106 | transition: all 40ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 107 | filter: blur(8px); 108 | opacity: 0.8; 109 | } 110 | .gameName-Uw4dbt:hover { 111 | transition: all 40ms cubic-bezier(0.55, 0.09, 0.68, 0.53); 112 | filter: none; 113 | opacity: 1; 114 | } 115 | 116 | #private-channels > .content-2a4AW9 > [role="listitem"]:not(.selected-1-Z6gm):not(#private-channels-0) { 117 | filter: blur(3px) 118 | } 119 | #private-channels > .content-2a4AW9 > [role="listitem"]:hover:not(#private-channels-0){ 120 | filter: blur(0); 121 | transition: filter .5s 122 | } 123 | 124 | .firstDMSpamBanner-DKjHgv { 125 | border-radius: 20px 20px 0px 20px; 126 | background-color: transparent; 127 | position: absolute; 128 | width: 200px; 129 | height: 30px; 130 | bottom: 0; 131 | right: 0; 132 | } 133 | .actionButtons-tk5wmT > button { 134 | transform: translate(-25%, -125%); 135 | top:40%!important; 136 | left: 50%; 137 | } 138 | .actionButtons-tk5wmT > button > div { 139 | font-size: 0px; 140 | } 141 | .sizeMedium-2bFIHr { 142 | min-width: 40px!important; 143 | } 144 | .actionButtons-tk5wmT > button.colorRed-rQXKgM::before { 145 | font-size: 14px; 146 | content: "!"; 147 | } 148 | .actionButtons-tk5wmT > button.colorGrey-2iAG-B::before { 149 | font-size: 14px; 150 | content: "!?"; 151 | } 152 | .actionButtons-tk5wmT > button.colorBrand-I6CyqQ::before { 153 | font-size: 14px; 154 | content: "✔"; 155 | } 156 | .firstDMSpamBanner-DKjHgv::before { 157 | background-color: rgba(0, 0, 0, 0.5); 158 | backdrop-filter: blur(10px); 159 | left: 312px!important; 160 | position: fixed; 161 | display: block; 162 | content: ""; 163 | height: 100%; 164 | width: 100%; 165 | top: 70px; 166 | } 167 | .firstDMSpamBannerText-1f5M9Z { 168 | display: none; 169 | } 170 | .firstDMSpamBannerIcon-1IIVEI { 171 | position: relative; 172 | top: -10%; 173 | } 174 | 175 | /* Content Blur */ 176 | #app-mount div > .backdrop-2ByYRN, .layer-1Ixpg3 { 177 | backdrop-filter: blur(5px); /* Customizable Value (the higher the pixel count, the more blur there is) */ 178 | transition: opacity .5s; 179 | } 180 | 181 | .backdrop-2ByYRN.withLayer-2VVmpp { 182 | opacity: 0.5 !important; 183 | transition: opacity .5s; 184 | } 185 | 186 | /* Blur spoilers */ 187 | /*blurs spoiler text instead of having a black bar over it*/ 188 | .contents-2MsGLg .spoilerText-27bIiA.hidden-3B-Rum, .contents-2MsGLg .spoilerText-27bIiA.hidden-3B-Rum:hover, .contents-2MsGLg .spoilerText-27bIiA{ 189 | background:rgb(130,130,130,0.1); 190 | /*adds minor grey-ish filter to differentiate spoilted text from normal text*/ 191 | border-radius: 7px; 192 | /*adds rounded edges for the filter described above*/ 193 | } 194 | .contents-2MsGLg .spoilerText-27bIiA.hidden-3B-Rum>.inlineContent-2YnoDy{ 195 | filter: blur(3px); 196 | /*adds blur filter when text is left alone*/ 197 | opacity: 1; 198 | /*makes blurred text fully opaque*/ 199 | } 200 | .contents-2MsGLg .spoilerText-27bIiA.hidden-3B-Rum:hover>.inlineContent-2YnoDy{ 201 | filter:none; 202 | /*removes blur filter on hover*/ 203 | opacity: 1; 204 | /*makes text opacity look like normal, non-spoiled text on hover*/ 205 | } -------------------------------------------------------------------------------- /Modules/Addons/blurple.css: -------------------------------------------------------------------------------- 1 | :root {--accent-primary: #5865f2;} 2 | 3 | * { 4 | caret-color: #5865f2; 5 | } 6 | 7 | .bar-2eAyLE {background-color: rgba(88, 101, 242, 1);} 8 | 9 | /* Blurple Settings Header */ 10 | .header-2Kx1US, .item-3XjbnG, .defaultColor-2cKwKo, .tipTitle-3FYEQp { 11 | color: #5865F2; 12 | } 13 | 14 | .placeholder-1rCBhr {color: #5865f2; 15 | font-weight: bold; 16 | text-transform: capitalize; 17 | text-align: center; 18 | } 19 | 20 | /* Blurple Join/Explore/Download Buttons */ 21 | .circleIconButton-1VxDrg svg path{ 22 | fill: var(--interactive-hover); 23 | } 24 | .circleIconButton-1VxDrg.selected-2r1Hvo{ 25 | background-color: var(--accent-primary); 26 | } 27 | .circleIconButton-1VxDrg.selected-2r1Hvo svg path{ 28 | fill: white; 29 | } 30 | 31 | .guildSeparator-a4uisj {display: none !important;} 32 | 33 | /* Blurple Drag Line */ 34 | .target-1eRTCg.dragOver-1OKbo2:before { 35 | content: ""; 36 | position: absolute; 37 | z-index: 1; 38 | top: 10px; 39 | left: 4px; 40 | right: 4px; 41 | height: 4px; 42 | background-color: var(--accent-primary); 43 | border-radius: 2px; 44 | -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 30%); 45 | box-shadow: 0 0 3px rgb(0 0 0 / 30%); 46 | } 47 | 48 | .containerDragAfter-3aBiOW:after, .containerDragBefore-1s5Qg6:before { 49 | content: ""; 50 | position: absolute; 51 | z-index: 1; 52 | left: 8px; 53 | right: 0; 54 | height: 4px; 55 | background-color: var(--accent-primary); 56 | border-radius: 2px; 57 | -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 40%); 58 | box-shadow: 0 0 3px rgb(0 0 0 / 40%); 59 | } 60 | 61 | .dragAfter-J5iS55:after, .dragBefore-1OyVoX:before { 62 | content: ""; 63 | position: absolute; 64 | z-index: 1; 65 | left: 0; 66 | right: 0; 67 | height: 4px; 68 | background-color: var(--accent-primary); 69 | border-radius: 2px; 70 | -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 40%); 71 | box-shadow: 0 0 3px rgb(0 0 0 / 40%); 72 | } 73 | 74 | /* Blurple Drag Dot */ 75 | .centerTarget-S6BLFQ.dragOver-1OKbo2:before { 76 | content: ""; 77 | position: absolute; 78 | z-index: 1; 79 | top: 32px; 80 | left: 4px; 81 | margin: auto; 82 | width: 16px; 83 | height: 16px; 84 | background-color: var(--accent-primary); 85 | border-radius: 50%; 86 | -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 30%); 87 | box-shadow: 0 0 3px rgb(0 0 0 / 30%); 88 | } 89 | 90 | ::selection { 91 | background-color: rgba(88, 101, 242, .8); 92 | } 93 | 94 | /* Blurple Verified Icon */ 95 | .verified-1Jv_7P:not(.disableColor-MwOAZf) > svg path { 96 | fill: var(--accent-primary) 97 | } 98 | 99 | /* Blurple Folders */ 100 | .closedFolderIconWrapper-3tRb2d { 101 | display:flex; 102 | justify-content:center; 103 | align-items:center; 104 | } 105 | 106 | .closedFolderIconWrapper-3tRb2d * { 107 | display:none; 108 | } 109 | 110 | .closedFolderIconWrapper-3tRb2d::after { 111 | content:''; 112 | width:24px; 113 | height:24px; 114 | position:relative; 115 | display:block; 116 | background: #5865f2; 117 | -webkit-mask:url('data:image/svg+xml,') center/contain no-repeat; 118 | } -------------------------------------------------------------------------------- /Modules/Addons/button-icons.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --BTIC-size: 20px; 3 | --BTIC-positive-margin: 4px; 4 | --BTIC-negative-margin: -8px; 5 | } 6 | 7 | .changePasswordButton-3BNRIw::before { 8 | content: ""; 9 | background: white; 10 | width: var(--BTIC-size); 11 | height: var(--BTIC-size); 12 | margin: 0px var(--BTIC-positive-margin) 0px var(--BTIC-negative-margin); 13 | -webkit-mask: var(--password) center/contain no-repeat; 14 | mask: var(--password) center/contain no-repeat; 15 | flex-shrink: 0; 16 | --password: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 24 24' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cg%3E%3Cpath d='M0,0h24v24H0V0z' fill='none'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M3,17h18c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H3c-0.55,0-1-0.45-1-1v0C2,17.45,2.45,17,3,17z M2.5,12.57 c0.36,0.21,0.82,0.08,1.03-0.28L4,11.47l0.48,0.83c0.21,0.36,0.67,0.48,1.03,0.28l0,0c0.36-0.21,0.48-0.66,0.28-1.02L5.3,10.72 h0.95C6.66,10.72,7,10.38,7,9.97v0c0-0.41-0.34-0.75-0.75-0.75H5.3L5.77,8.4C5.98,8.04,5.86,7.58,5.5,7.37l0,0 C5.14,7.17,4.68,7.29,4.47,7.65L4,8.47L3.53,7.65C3.32,7.29,2.86,7.17,2.5,7.37l0,0C2.14,7.58,2.02,8.04,2.23,8.4L2.7,9.22H1.75 C1.34,9.22,1,9.56,1,9.97v0c0,0.41,0.34,0.75,0.75,0.75H2.7l-0.48,0.83C2.02,11.91,2.14,12.37,2.5,12.57L2.5,12.57z M10.5,12.57 L10.5,12.57c0.36,0.21,0.82,0.08,1.03-0.28L12,11.47l0.48,0.83c0.21,0.36,0.67,0.48,1.03,0.28l0,0c0.36-0.21,0.48-0.66,0.28-1.02 l-0.48-0.83h0.95c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H13.3l0.47-0.82c0.21-0.36,0.08-0.82-0.27-1.03l0,0 c-0.36-0.21-0.82-0.08-1.02,0.27L12,8.47l-0.47-0.82c-0.21-0.36-0.67-0.48-1.02-0.27l0,0c-0.36,0.21-0.48,0.67-0.27,1.03 l0.47,0.82H9.75C9.34,9.22,9,9.56,9,9.97v0c0,0.41,0.34,0.75,0.75,0.75h0.95l-0.48,0.83C10.02,11.91,10.14,12.37,10.5,12.57z M23,9.97c0-0.41-0.34-0.75-0.75-0.75H21.3l0.47-0.82c0.21-0.36,0.08-0.82-0.27-1.03l0,0c-0.36-0.21-0.82-0.08-1.02,0.27L20,8.47 l-0.47-0.82c-0.21-0.36-0.67-0.48-1.02-0.27l0,0c-0.36,0.21-0.48,0.67-0.27,1.03l0.47,0.82h-0.95C17.34,9.22,17,9.56,17,9.97v0 c0,0.41,0.34,0.75,0.75,0.75h0.95l-0.48,0.83c-0.21,0.36-0.08,0.82,0.28,1.02l0,0c0.36,0.21,0.82,0.08,1.03-0.28L20,11.47 l0.48,0.83c0.21,0.36,0.67,0.48,1.03,0.28l0,0c0.36-0.21,0.48-0.66,0.28-1.02l-0.48-0.83h0.95C22.66,10.72,23,10.38,23,9.97 L23,9.97z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 17 | } 18 | 19 | .disableButton-3BR0Vj::before { 20 | content: ""; 21 | background: white; 22 | width: var(--BTIC-size); 23 | height: var(--BTIC-size); 24 | margin: 0px var(--BTIC-positive-margin) 0px var(--BTIC-negative-margin); 25 | -webkit-mask: var(--disable) center/contain no-repeat; 26 | mask: var(--disable) center/contain no-repeat; 27 | flex-shrink: 0; 28 | --disable: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 24 24' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cg%3E%3Crect fill='none' height='24' width='24'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M15.18,10.94c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6c-0.52,0-1,0.12-1.44,0.32L15.18,10.94z'/%3E%3Cpath d='M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,15c-2.32,0-4.45,0.8-6.14,2.12 C4.7,15.73,4,13.95,4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2C13.17,15.05,12.59,15,12,15z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 29 | } 30 | 31 | .marginTop40-Q4o1tS .button-f2h6uQ:nth-child(2)::before { 32 | content: ""; 33 | background: #ed4245; 34 | width: var(--BTIC-size); 35 | height: var(--BTIC-size); 36 | margin: 0px var(--BTIC-positive-margin) 0px var(--BTIC-negative-margin); 37 | -webkit-mask: var(--delete) center/contain no-repeat; 38 | mask: var(--delete) center/contain no-repeat; 39 | flex-shrink: 0; 40 | --delete: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z'/%3E%3C/svg%3E"); 41 | } -------------------------------------------------------------------------------- /Modules/Addons/category-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/category-icons.css -------------------------------------------------------------------------------- /Modules/Addons/category-names.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/category-names.css -------------------------------------------------------------------------------- /Modules/Addons/channel-banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/channel-banners.css -------------------------------------------------------------------------------- /Modules/Addons/channel-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/channel-buttons.css -------------------------------------------------------------------------------- /Modules/Addons/channel-names.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/channel-names.css -------------------------------------------------------------------------------- /Modules/Addons/codeblock-icons.css: -------------------------------------------------------------------------------- 1 | @import url("https://css.wmeluna.com/hljs.css"); -------------------------------------------------------------------------------- /Modules/Addons/contextmenu-icons.css: -------------------------------------------------------------------------------- 1 | /* ╔════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://crearts-community.github.io/Context-Icons/theme.css"); 7 | @import url("https://crearts-community.github.io/Context-Icons/modules/plugins/powercord.css"); 8 | @import url("https://crearts-community.github.io/Context-Icons/modules/plugins/betterdiscord.css"); 9 | 10 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 11 | /* ║ CSS ║ Change Arrow ║ */ 12 | /* ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════╝ */ 13 | 14 | .scroller-1bVxF5 .caret-2MOQD6 { 15 | width: 24px; 16 | height: 24px; 17 | margin-top: -2px; 18 | -webkit-transform: rotate(0deg); 19 | transform: rotate(0deg); 20 | } 21 | 22 | .scroller-1bVxF5 path[d="M16.59 8.59004L12 13.17L7.41 8.59004L6 10L12 16L18 10L16.59 8.59004Z"] { 23 | d: path("M11.71,15.29L14.3,12.7C14.69,12.31 14.69,11.68 14.3,11.29L11.71,8.7C11.08,8.08 10,8.52 10,9.41L10,14.58C10,15.48 11.08,15.92 11.71,15.29Z"); 24 | } -------------------------------------------------------------------------------- /Modules/Addons/discolored.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠═══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://nyri4.github.io/Discolored/main.css"); -------------------------------------------------------------------------------- /Modules/Addons/events-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/events-grid.css -------------------------------------------------------------------------------- /Modules/Addons/friend-banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/friend-banners.css -------------------------------------------------------------------------------- /Modules/Addons/friends-grid.css: -------------------------------------------------------------------------------- 1 | /* ╔════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Import ║ */ 3 | /* ╠════════════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | @import url("https://crearts-community.github.io/Friends-Grid/src/source.css"); 7 | /* 🔻Source Files */ 8 | 9 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 10 | /* ║ General ║ Here you can make general adjustments. ║ */ 11 | /* ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════╝ */ 12 | 13 | :root { 14 | --FA-version: "v1.0.10"; 15 | --FG-row: 1fr 1fr 1fr; 16 | --FG-search-radius: 8px; 17 | --FG-cards-radius: 8px; 18 | --FG-cards-height: 180px; 19 | --FG-cards-banner-background: var(--brand-experiment); 20 | --FG-cards-margin-bottom: 26px; 21 | --FG-cards-banner-height: 20px; 22 | --FG-cards-border-width: 1px; 23 | --FG-avatar-margin-top: 46px; 24 | --FG-avatar-margin-left: 20px; 25 | --FG-text-margin-left: 20px; 26 | --FG-cards-banner-opacity-normal: 1.0; 27 | --FG-cards-banner-opacity-hover: 1.0; 28 | --FG-cards-banner-opacity-active: 1.0; 29 | --FG-cards-avatar-opacity-normal: 1.0; 30 | --FG-cards-avatar-opacity-hover: 1.0; 31 | --FG-cards-avatar-opacity-active: 1.0; 32 | --FG-cards-username-opacity-normal: 1.0; 33 | --FG-cards-username-opacity-hover: 1.0; 34 | --FG-cards-username-opacity-active: 1.0; 35 | --FG-cards-discriminator-opacity-normal: 1.0; 36 | --FG-cards-discriminator-opacity-hover: 1.0; 37 | --FG-cards-discriminator-opacity-active: 1.0; 38 | --FG-cards-status-opacity-normal: 1.0; 39 | --FG-cards-status-opacity-hover: 1.0; 40 | --FG-cards-status-opacity-active: 1.0; 41 | --FG-cards-button-opacity-normal: 0.0; 42 | --FG-cards-button-opacity-hover: 1.0; 43 | --FG-cards-button-opacity-active: 0.0; 44 | --FG-mutal-guilds-normal: 0.0; 45 | --FG-mutal-guilds-hover: 1.0; 46 | --FG-mutal-guilds-active: 1.0; 47 | --FG-avatar-shape: 50%; 48 | --FG-transition: all 0.4s ease; 49 | --user-accent-color: var(--FG-cards-banner-background); 50 | } 51 | 52 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 53 | /* ║ Dark ║ Here you can make settings for the Dark Theme. ║ */ 54 | /* ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ */ 55 | 56 | .theme-dark { 57 | --FG-search-background: var(--background-tertiary); 58 | --FG-cards-background-normal: var(--background-primary); 59 | --FG-cards-background-hover: var(--activity-card-background); 60 | --FG-cards-background-active: var(--activity-card-background); 61 | --FG-cards-border-color-normal: var(--background-modifier-accent); 62 | --FG-cards-border-color-hover: var(--background-modifier-accent); 63 | --FG-cards-username-normal: var(--header-primary); 64 | --FG-cards-username-hover: var(--header-primary); 65 | --FG-cards-discriminator-normal: var(--header-secondary); 66 | --FG-cards-discriminator-hover: var(--header-secondary); 67 | --FG-cards-status-normal: var(--header-secondary); 68 | --FG-cards-status-hover: var(--header-secondary); 69 | --FG-cards-button-icon-normal: var(--interactive-active); 70 | --FG-cards-button-icon-hover: var(--activity-card-background); 71 | --FG-cards-button-background-normal: rgba(0, 0, 0, 0.3); 72 | --FG-cards-button-background-hover: rgba(0, 0, 0, 0.6); 73 | } 74 | 75 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 76 | /* ║ Light ║ Here you can make settings for the Light Theme. ║ */ 77 | /* ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ */ 78 | 79 | .theme-light { 80 | --FG-search-background: var(--background-tertiary); 81 | --FG-cards-background-normal: var(--background-secondary); 82 | --FG-cards-background-hover: var(--activity-card-background); 83 | --FG-cards-background-active: var(--activity-card-background); 84 | --FG-cards-border-color-normal: var(--background-modifier-accent); 85 | --FG-cards-border-color-hover: var(--background-modifier-accent); 86 | --FG-cards-username-normal: var(--header-primary); 87 | --FG-cards-username-hover: var(--header-primary); 88 | --FG-cards-discriminator-normal: var(--header-secondary); 89 | --FG-cards-discriminator-hover: var(--header-secondary); 90 | --FG-cards-status-normal: var(--header-secondary); 91 | --FG-cards-status-hover: var(--header-secondary); 92 | --FG-cards-button-icon-normal: var(--interactive-active); 93 | --FG-cards-button-icon-hover: var(--activity-card-background); 94 | --FG-cards-button-background-normal: rgba(255, 255, 255, 0.3); 95 | --FG-cards-button-background-hover: rgba(255, 255, 255, 0.6); 96 | } -------------------------------------------------------------------------------- /Modules/Addons/games-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/games-grid.css -------------------------------------------------------------------------------- /Modules/Addons/github-stats.css: -------------------------------------------------------------------------------- 1 | [aria-label="Nate's World"] .aboutMeSection-PUghFQ::after { 2 | content: ""; 3 | display: block; 4 | position: relative; 5 | background: url("https://github-readme-stats.vercel.app/api?username=Nates-World&custom_title=My Stats&show_icons=true&hide_border=true&bg_color=202225&title_color=5865f2&text_color=fff&icon_color=5865f2&border_radius=10&role=OWNER,COLLABORATOR") center/cover no-repeat; 6 | width: 100%; 7 | height: 100px; 8 | margin-top: 10px; 9 | margin-bottom: 10px; 10 | } 11 | 12 | [aria-label="CorellanStoma"] .aboutMeSection-PUghFQ::after { 13 | content: ""; 14 | display: block; 15 | position: relative; 16 | background: url("https://corellanstoma-github-readme-stats.vercel.app/api?username=CorellanStoma&custom_title=My Stats&show_icons=true&hide_border=true&bg_color=202225&title_color=CD0952&text_color=C0C6DB&icon_color=CD0952&border_radius=12&role=OWNER,COLLABORATOR") center/cover no-repeat; 17 | width: 100%; 18 | height: 100px; 19 | margin-top: 10px; 20 | margin-bottom: 10px; 21 | } 22 | 23 | .container-1NXEtd[aria-label="Nate's World (server)"]::after { 24 | content: ""; 25 | display: block; 26 | position: relative; 27 | background-image: url("https://github-readme-stats.vercel.app/api?username=Nates-World&custom_title=GitHub:&show_icons=true&hide_border=true&bg_color=2f3136&title_color=ffffff&text_color=b9bbbe&icon_color=5865f2&border_radius=10&role=OWNER,COLLABORATOR"); 28 | width: 100%; 29 | height: 300px; 30 | background-position: -8px -40px; 31 | background-color: var(--background-secondary); 32 | margin-top: var(--layout-margin); 33 | border-radius: var(--radius-primary); 34 | } 35 | 36 | .container-1NXEtd[aria-label="Nate's World | Community (server)"]::after { 37 | content: ""; 38 | display: block; 39 | position: relative; 40 | background-image: url("https://github-readme-stats.vercel.app/api?username=Nates-World&custom_title=GitHub:&show_icons=true&hide_border=true&bg_color=2f3136&title_color=ffffff&text_color=b9bbbe&icon_color=5865f2&border_radius=10&role=OWNER,COLLABORATOR"); 41 | width: 100%; 42 | height: 120%; 43 | background-position: -8px -40px; 44 | background-color: var(--background-secondary); 45 | margin-top: var(--layout-margin); 46 | border-radius: var(--radius-primary); 47 | } -------------------------------------------------------------------------------- /Modules/Addons/guild-progressbars.css: -------------------------------------------------------------------------------- 1 | .container-1eD8xH { 2 | background: var(--background-primary); 3 | padding: 4px 12px 4px 12px; 4 | border-radius: 10px; 5 | margin-bottom: 12px; 6 | } 7 | 8 | .container-1eD8xH .divider-1Y1mB0 { 9 | display: none; 10 | } 11 | 12 | /* CreArts */ 13 | [aria-label="CreArts | Community (server)"i] .progressBar-1Tzim4 { 14 | background: rgba(182,10,74) 15 | } 16 | 17 | [aria-label="CreArts | Community (server)"i] .progressBarContainer-2E4oR- { 18 | background: rgba(182, 10, 74, .5); 19 | } 20 | 21 | [aria-label="CreArts | Laboratory (server)"i] .progressBar-1Tzim4 { 22 | background: rgba(182,10,74) 23 | } 24 | 25 | [aria-label="CreArts | Laboratory (server)"i] .progressBarContainer-2E4oR- { 26 | background: rgba(182, 10, 74, .5); 27 | } 28 | 29 | /* Nate's World | Community */ 30 | [aria-label="Nate's World | Community (server)"i] .progressBar-1Tzim4 { 31 | background: rgb(96, 10, 182) 32 | } 33 | 34 | [aria-label="Nate's World | Community (server)"i] .progressBarContainer-2E4oR- { 35 | background: rgba(96, 10, 182, .5); 36 | } 37 | 38 | /* Discord Townhall */ 39 | [aria-label="Discord Town Hall (server)"i], [aria-label="Snowsgiving 2021 (server)"i] .progressBar-1Tzim4 { 40 | background: rgb(88, 101, 242) 41 | } 42 | 43 | [aria-label="Discord Town Hall (server)"i], [aria-label="Snowsgiving 2021 (server)"i] .progressBarContainer-2E4oR- { 44 | background: rgba(88, 101, 242, .5); 45 | } 46 | 47 | /* Sebi's Townhall */ 48 | /* Discord Townhall */ 49 | [aria-label="Sebi's TownHall (server)"i], [aria-label="Sebi's North Pole (server)"i] .progressBar-1Tzim4 { 50 | background: rgb(88, 101, 242) 51 | } 52 | 53 | [aria-label="Sebi's TownHall (server)"i], [aria-label="Sebi's North Pole (server)"i] .progressBarContainer-2E4oR- { 54 | background: rgba(88, 101, 242, .5); 55 | } 56 | -------------------------------------------------------------------------------- /Modules/Addons/interactive-links.css: -------------------------------------------------------------------------------- 1 | @import url("https://crearts-community.github.io/Mention-Links/src/source.css"); -------------------------------------------------------------------------------- /Modules/Addons/link-buttons.css: -------------------------------------------------------------------------------- 1 | .messageContent-2t3eCI a[href*="discord.com/"]::before { 2 | content: 'Jump to Discord'; 3 | color: #fff !important; 4 | background: var(--brand-experiment); 5 | border-radius: var(--radius-tertiary); 6 | height: 32px; 7 | min-width: 62px; 8 | min-height: 32px; 9 | padding-left: 18px; 10 | padding-right: 18px; 11 | font-size: 16px !important; 12 | line-height: 10px; 13 | } 14 | 15 | .messageContent-2t3eCI a[href*="discord.com/"] { 16 | line-height: 0; 17 | font-size: 0; 18 | } -------------------------------------------------------------------------------- /Modules/Addons/link-text.css: -------------------------------------------------------------------------------- 1 | /* Colored Links */ 2 | 3 | /* Discord */ 4 | [href^="https://discord.com/"], 5 | [href^="https://discord.gg/"], 6 | [href*="discord.com/channels/"], 7 | [href^="https://dis.gd/"], 8 | [href^="https://discordapp.com/"], 9 | [href^="https://cdn.discord.com/"], 10 | [href^="https://cdn.discordapp.com/"], 11 | [href^="https://media.discordapp.net/attachments/"], 12 | [href^="https://hawks.discordapp.com/"], 13 | [href^="https://hawks.discord.com/"] { 14 | color: #5865f2 !important; 15 | font-weight: 700; 16 | } 17 | 18 | [href*="discord.com/channels/"]::before { 19 | content: 'Jump to Message : '; 20 | font-size: 16px; 21 | font-weight: 700; 22 | color: #5865F2; 23 | } 24 | 25 | 26 | /* Aliucord */ 27 | [href^="http://aliucord.com/"] { 28 | color: #83CC56; 29 | font-weight: 700; 30 | } 31 | 32 | /* BetterDiscord */ 33 | [href^="https://betterdiscord.app/"] { 34 | color: #3A71C1; 35 | font-weight: 700; 36 | } 37 | 38 | /* Powercord */ 39 | [href^="https://powercord.dev/"] { 40 | color: #7289DA; 41 | font-weight: 700; 42 | } 43 | 44 | /* Goosemod */ 45 | [href^="https://goosemod.com/"] { 46 | color: #292D2E; 47 | font-weight: 700; 48 | } 49 | 50 | 51 | /* Vizality */ 52 | [href^="https://vizality.com/"] { 53 | color: #121421; 54 | font-weight: 700; 55 | } 56 | 57 | /* Guilded */ 58 | [href^="https://www.guilded.gg/"] { 59 | color: #BAA31C; 60 | font-weight: 700; 61 | } 62 | 63 | /* Spotify */ 64 | [href*="spotify.com"] { 65 | color: rgb(19, 185, 4) !important; 66 | font-weight: 700; 67 | } 68 | 69 | /* Youtube */ 70 | [href*="youtu.be"], 71 | [href*="youtube.com"] { 72 | color: #C4302B !important; 73 | font-weight: 700; 74 | } 75 | 76 | /* Twitch */ 77 | [href*="twitch.tv"] { 78 | color: #B700FF !important; 79 | font-weight: 700; 80 | } 81 | 82 | /* Facebook */ 83 | 84 | /* Twitter */ 85 | [href*="twitter.com/"] { 86 | color: #00ACEE !important; 87 | font-weight: 700; 88 | } 89 | 90 | /* Instagram */ 91 | [href*="instagram.com/"] { 92 | background: -webkit-linear-gradient(80deg, rgb(255, 238, 0), rgb(255, 157, 11), #B700FF); 93 | --webkit-background-clip: text; 94 | --webkit-text-fill-color: transparent; 95 | font-weight: 700; 96 | } 97 | 98 | /* Reddit */ 99 | [href*="reddit.com"] { 100 | color: #FF4500 !important; 101 | font-weight: 700; 102 | } 103 | 104 | /* Github */ 105 | [href*="github.com"] { 106 | color: #00F0A8 !important; 107 | font-weight: 700; 108 | } -------------------------------------------------------------------------------- /Modules/Addons/perm-colors.css: -------------------------------------------------------------------------------- 1 | /* Colorful Permissions */ 2 | /* Permissons (Red) */ 3 | .deny-1GO6vI {color: #F04747;} 4 | 5 | .deny-1GO6vI:hover {background: #F04747 !important; color: white;} 6 | .deny-1GO6vI.selected-3jieYB {background: #F04747 !important;} 7 | .deny-1GO6vI.selected-3jieYB:hover {background: #FF6660 !important;} 8 | 9 | /* Permissons (Yellow) */ 10 | .passthrough--fbdFR {color: #FAA61A;} 11 | 12 | .passthrough--fbdFR:hover {background: #FAA61A !important; color: white;} 13 | .passthrough--fbdFR.selected-3jieYB {background: #FAA61A !important;} 14 | .passthrough--fbdFR.selected-3jieYB:hover {background: #FFC23D !important;} 15 | 16 | /* Permissons (Green) */ 17 | .allow-1h61-Z {color: #43B581;} 18 | 19 | .allow-1h61-Z:hover {background: #43B581 !important; color: white;} 20 | .allow-1h61-Z.selected-3jieYB {background: #43B581 !important;} 21 | .allow-1h61-Z.selected-3jieYB:hover {background: #61D09A !important;} 22 | -------------------------------------------------------------------------------- /Modules/Addons/plugin-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/plugin-grid.css -------------------------------------------------------------------------------- /Modules/Addons/pronoun-db.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/pronoun-db.css -------------------------------------------------------------------------------- /Modules/Addons/role-icons.css: -------------------------------------------------------------------------------- 1 | /* Guilds - Role Page */ 2 | [data-dnd-name="👑︱Nate's World"] .shield-1jy4L2 * { 3 | d: none !important; 4 | } 5 | 6 | [data-dnd-name="👑︱Nate's World"] .shield-1jy4L2 { 7 | background: url("https://media.discordapp.net/attachments/901949889364262982/956663601479942144/unknown_3.png?width=162&height=162") center/cover no-repeat !important; 8 | } -------------------------------------------------------------------------------- /Modules/Addons/server-banners.css: -------------------------------------------------------------------------------- 1 | /* Banner */ 2 | .bannerVisible-Vkyg1I .header-3OsQeK { 3 | height: 135px !important; 4 | padding-bottom: 100px; 5 | } 6 | 7 | /* Remove */ 8 | .scroller-1ox3I2 [style="height: 84px;"] { 9 | display: none !important; 10 | } 11 | 12 | /* Banner */ 13 | .container-1NXEtd[aria-label*="CreArts | Community"] .header-3OsQeK::before { 14 | position: absolute; 15 | content: ""; 16 | top: 0px; 17 | left: 0px; 18 | height: 100%; 19 | width: 100%; 20 | background-image: url("https://i.imgur.com/nOPFf0m.png"); 21 | background-repeat: no-repeat; 22 | background-position: center; 23 | background-size: cover; 24 | border-radius: var(--radius-primary); 25 | opacity: 1.0; 26 | } 27 | 28 | /* Spacing */ 29 | .container-1NXEtd[aria-label*="CreArts | Community"] .header-3OsQeK { 30 | height: 135px !important; 31 | padding-bottom: 90px; 32 | background: transparent; 33 | } 34 | 35 | /* Info Hide (Normal)*/ 36 | .container-1NXEtd[aria-label*="CreArts | Community"] .guildIconContainer-2FW_iA, 37 | .container-1NXEtd[aria-label*="CreArts | Community"] .name-3Uvkvr, 38 | .container-1NXEtd[aria-label*="CreArts | Community"] .button-2BMPJJ { 39 | z-index: 2; 40 | transition: none; 41 | } 42 | 43 | /* Banner */ 44 | .container-1NXEtd[aria-label*="Nate's World | Community"] .header-3OsQeK::before { 45 | position: absolute; 46 | content: ""; 47 | top: 0px; 48 | left: 0px; 49 | height: 100%; 50 | width: 100%; 51 | background-image: url("https://media.istockphoto.com/photos/purple-space-stars-picture-id157639696?b=1&k=20&m=157639696&s=170667a&w=0&h=5Vh0cQzZE0tVKF8SWob83bAHfpPoc6L5YjXxjxdyOTw="); 52 | background-repeat: no-repeat; 53 | background-position: center; 54 | background-size: cover; 55 | border-radius: var(--radius-primary); 56 | opacity: 1.0; 57 | } 58 | 59 | /* Spacing */ 60 | .container-1NXEtd[aria-label*="Nate's World | Community"] .header-3OsQeK { 61 | height: 135px !important; 62 | padding-bottom: 90px; 63 | background: transparent; 64 | } 65 | 66 | /* Info Hide (Normal)*/ 67 | .container-1NXEtd[aria-label*="Nate's World | Community"] .guildIconContainer-2FW_iA, 68 | .container-1NXEtd[aria-label*="Nate's World | Community"] .name-3Uvkvr, 69 | .container-1NXEtd[aria-label*="Nate's World | Community"] .button-2BMPJJ { 70 | z-index: 2; 71 | transition: none; 72 | } 73 | 74 | /* Banner */ 75 | .container-1NXEtd[aria-label*="Nate's World | Dev"] .header-3OsQeK::before { 76 | position: absolute; 77 | content: ""; 78 | top: 0px; 79 | left: 0px; 80 | height: 100%; 81 | width: 100%; 82 | background-image: url("https://media.istockphoto.com/photos/purple-space-stars-picture-id157639696?b=1&k=20&m=157639696&s=170667a&w=0&h=5Vh0cQzZE0tVKF8SWob83bAHfpPoc6L5YjXxjxdyOTw="); 83 | background-repeat: no-repeat; 84 | background-position: center; 85 | background-size: cover; 86 | border-radius: var(--radius-primary); 87 | opacity: 1.0; 88 | } 89 | 90 | /* Spacing */ 91 | .container-1NXEtd[aria-label*="Nate's World | Dev"] .header-3OsQeK { 92 | height: 135px !important; 93 | padding-bottom: 90px; 94 | background: transparent; 95 | } 96 | 97 | /* Info Hide (Normal)*/ 98 | .container-1NXEtd[aria-label*="Nate's World | Dev"] .guildIconContainer-2FW_iA, 99 | .container-1NXEtd[aria-label*="Nate's World | Dev"] .name-3Uvkvr, 100 | .container-1NXEtd[aria-label*="Nate's World | Dev"] .button-2BMPJJ { 101 | z-index: 2; 102 | transition: none; 103 | } 104 | 105 | -------------------------------------------------------------------------------- /Modules/Addons/server-icons.css: -------------------------------------------------------------------------------- 1 | /* Alternate Banners */ 2 | .header-2o-2hj[data-guild-id=""] ~ div .bannerImage-1jOskm { 3 | background-image: url("") !important; 4 | } 5 | 6 | /* Alternate Discord Icons */ 7 | 8 | /* Template */ 9 | .icon-3AqZ2e[src*="server-id"] { 10 | height: 0px; 11 | width: 0px; 12 | margin-top: 50px; /* change this depending on the ratio of the image*/ 13 | margin-left: 50px; /* change this depending on the ratio of the image*/ 14 | padding: 100px; 15 | background-image: url(image/gif-link) !important; 16 | background-size:50px; 17 | } 18 | 19 | 20 | 21 | /* Discord Townhall */ 22 | .icon-1zKOXL[style*="169256939211980800"], 23 | .icon-3AqZ2e[src*="169256939211980800"] { 24 | content: url("https://media.discordapp.net/attachments/921797734263033866/921801699650330664/unknown.png?width=512&height=512"); 25 | } 26 | 27 | /* Discord API */ 28 | .icon-1zKOXL[style*="81384788765712384"], 29 | .icon-3AqZ2e[src*="81384788765712384"] { 30 | content: url("https://media.discordapp.net/attachments/921797734263033866/921803197725700156/unknown.png?width=512&height=512"); 31 | } 32 | 33 | /* Discord JS */ 34 | .icon-1zKOXL[style*="222078108977594368"], 35 | .icon-3AqZ2e[src*="222078108977594368"] { 36 | content: url("https://media.discordapp.net/attachments/921797734263033866/921807109966946384/unknown.png?width=512&height=512"); 37 | } 38 | 39 | /* Discord Python */ 40 | .icon-1zKOXL[style*="336642139381301249"], 41 | .icon-3AqZ2e[src*="336642139381301249"] { 42 | content: url("https://media.discordapp.net/attachments/921797734263033866/921807900865859634/unknown.png?width=512&height=512"); 43 | } 44 | 45 | /* Discord Games Testing */ 46 | .icon-1zKOXL[style*="831646372519346186"], 47 | .icon-3AqZ2e[src*="831646372519346186"] { 48 | content: url("https://media.discordapp.net/attachments/921797734263033866/921810981481496646/unknown.png?width=512&height=512"); 49 | } 50 | 51 | /* Project Blurple */ 52 | .icon-1zKOXL[style*="412754940885467146"], 53 | .icon-3AqZ2e[src*="412754940885467146"] { 54 | content: url("https://media.discordapp.net/attachments/921797734263033866/921810322141118494/unknown.png?width=512&height=512"); 55 | } 56 | 57 | /* Top.gg */ 58 | .icon-1zKOXL[style*="264445053596991498"], 59 | .icon-3AqZ2e[src*="264445053596991498"] { 60 | content: url("https://media.discordapp.net/attachments/921797734263033866/921809481908752394/unknown.png?width=512&height=512"); 61 | } 62 | 63 | /* Discord Boats */ 64 | .icon-1zKOXL[style*="439866052684283905"], 65 | .icon-3AqZ2e[src*="439866052684283905"] { 66 | content: url("https://media.discordapp.net/attachments/921797734263033866/921809828291154010/unknown.png?width=512&height=512"); 67 | } 68 | 69 | /* Discord Bots */ 70 | .icon-1zKOXL[style*="110373943822540800"], 71 | .icon-3AqZ2e[src*="110373943822540800"] { 72 | content: url("https://media.discordapp.net/attachments/921797734263033866/921808317188296764/unknown.png?width=512&height=512"); 73 | } 74 | 75 | /* Sebi's Townhall */ 76 | .icon-1zKOXL[style*="871779727352950824"], 77 | .icon-3AqZ2e[src*="871779727352950824"] { 78 | content: url("https://media.discordapp.net/attachments/921797734263033866/921832852813906011/unknown.png?width=512&height=512"); 79 | } 80 | 81 | /* Discord Owners */ 82 | .icon-1zKOXL[style*="892080966871420989"], 83 | .icon-3AqZ2e[src*="892080966871420989"] { 84 | content: url("https://media.discordapp.net/attachments/921797734263033866/921838876895621180/unknown.png?width=512&height=512"); 85 | } 86 | 87 | /* Owners Hub */ 88 | .icon-1zKOXL[style*="747467177979805847"], 89 | .icon-3AqZ2e[src*="747467177979805847"] { 90 | content: url("https://media.discordapp.net/attachments/921797734263033866/921839258187235338/unknown.png?width=512&height=512"); 91 | } 92 | 93 | /* Displace */ 94 | .icon-1zKOXL[style*="641574644578648068"], 95 | .icon-3AqZ2e[src*="641574644578648068"] { 96 | content: url("https://media.discordapp.net/attachments/921797734263033866/921839463812956170/unknown.png?width=512&height=512"); 97 | } 98 | 99 | /* Hypesquad */ 100 | .icon-1zKOXL[style*="662350530517008388"], 101 | .icon-3AqZ2e[src*="662350530517008388"] { 102 | content: url("https://media.discordapp.net/attachments/921797734263033866/921840076672073758/unknown.png?width=512&height=512"); 103 | } 104 | 105 | /* Hypesuad Balance */ 106 | .icon-1zKOXL[style*="468562942929928215"], 107 | .icon-3AqZ2e[src*="468562942929928215"] { 108 | content: url("https://media.discordapp.net/attachments/921797734263033866/921840383548338176/unknown.png?width=512&height=512"); 109 | } 110 | 111 | /* Hypesquad Brillance */ 112 | .icon-1zKOXL[style*="468565421071532032"], 113 | .icon-3AqZ2e[src*="468565421071532032"] { 114 | content: url("https://media.discordapp.net/attachments/921797734263033866/921840441589121094/unknown.png?width=512&height=512"); 115 | } 116 | 117 | /* Hypesquad Bravery */ 118 | .icon-1zKOXL[style*="468564048552787969"], 119 | .icon-3AqZ2e[src*="468564048552787969"] { 120 | content: url("https://media.discordapp.net/attachments/921797734263033866/921840493082595408/unknown.png?width=512&height=512"); 121 | } 122 | 123 | /* Alternate Server Names */ 124 | [data-guild-id="901502615341396068"]>.name-3Uvkvr{ 125 | visibility: hidden; 126 | position: relative; 127 | } 128 | [data-guild-id="901502615341396068"]>.name-3Uvkvr:after { 129 | visibility: visible; 130 | position: absolute; 131 | top: 0; 132 | left: 0; 133 | content: "Name Here"; 134 | } -------------------------------------------------------------------------------- /Modules/Addons/settings-popouts.css: -------------------------------------------------------------------------------- 1 | @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/SettingsModal/SettingsModal.css"); 2 | @import url("https://discord-theme-addons.github.io/modern-channel-indicators/src/support/ModernChannelIndicators.theme.css"); 3 | 4 | :root { 5 | --settingsmodalbackground: transparent; 6 | --settingsmodalwidth: 1100px; 7 | } -------------------------------------------------------------------------------- /Modules/Addons/snippet-grid.css: -------------------------------------------------------------------------------- 1 | @import url("https://maendisease.github.io/BetterDiscordStuff/css/storeCSS.css"); -------------------------------------------------------------------------------- /Modules/Addons/spicy-friends.css: -------------------------------------------------------------------------------- 1 | #app-mount [aria-controls="all-tab"i] { 2 | order: -1; 3 | color: #5865f2; 4 | } 5 | 6 | #app-mount [aria-controls="online-tab"i] { 7 | color: #3CA55D; 8 | } 9 | 10 | #app-mount [aria-controls="pending-tab"i] { 11 | color: #CB8C23; 12 | } 13 | 14 | #app-mount [aria-controls="blocked-tab"i] { 15 | color: #EE4747; 16 | } -------------------------------------------------------------------------------- /Modules/Addons/status-shapes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/status-shapes.css -------------------------------------------------------------------------------- /Modules/Addons/text-selection.css: -------------------------------------------------------------------------------- 1 | .description-30xx7u, 2 | .labelDescriptor-34wZ-z, 3 | .sectionDescription-ol6C7B { 4 | -webkit-user-select: text; 5 | -moz-user-select: text; 6 | -ms-user-select: text; 7 | user-select: text; 8 | cursor: text; 9 | } 10 | 11 | .info-3pQQBb .line-18uChy, 12 | .headerTagWithNickname-1U8zZH, 13 | .headerTagNoNickname-3tGHj6, 14 | .anchor-1MIwyf, 15 | .scrollbarGhostHairline-2LpzZ9, 16 | .timestamp-p1Df1m, 17 | .pronoundb-pronouns { 18 | user-select: all; 19 | -webkit-user-select: all; 20 | } -------------------------------------------------------------------------------- /Modules/Addons/theme-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/theme-grid.css -------------------------------------------------------------------------------- /Modules/Addons/theme-warnings.css: -------------------------------------------------------------------------------- 1 | @keyframes warningflash { 2 | 0% { 3 | box-shadow: 0 2px 10px rgba(240,71,71,0.2),0 0 0 2px rgba(240,70,70,0.3); 4 | } 5 | 6 | 70% { 7 | box-shadow: 0 0 20px 15px rgba(240,71,71,0.1),0 0 0 6px rgba(240,70,70,0.2); 8 | } 9 | 10 | 100% { 11 | box-shadow: 0 0 20px 15px rgba(240,71,71,0),0 0 0 6px rgba(240,24,70,0.1); 12 | } 13 | } 14 | 15 | .theme-light .layer-86YKbF:first-of-type::before { 16 | content: "You need to have dark theme enabled for this theme to work properly. To enable it, go into Settings -> Appearance"; /* Warning Text */ 17 | z-index: 2; 18 | background: rgba(0, 0, 0, .5); /* Container color */ 19 | color: #ffffff; /* Text Color */ 20 | position: fixed; 21 | display: block; 22 | text-align: center; 23 | padding: 20px; 24 | width: 500px; 25 | height: 35px; 26 | top: 15%; 27 | left: 50%; 28 | transform: translate(-50%, -50%); 29 | border-radius: 5px; 30 | box-shadow: 0 2px 10px rgba(240, 71, 71, 0.22); 31 | animation: warningflash 1s ease infinite; 32 | border: 3px solid #F04747; 33 | } 34 | 35 | .theme-light [aria-controls="appearance-tab"], 36 | .theme-light .app-2CXKsg .container-YkUktl > .noWrap-hBpHBz > .button-12Fmur:nth-child(3) { 37 | animation: warningflash 1s ease infinite; 38 | border: 2px solid #F04747; 39 | } 40 | 41 | .theme-light .children-1xdcWE > .marginTop40-Q4o1tS:nth-child(2) > div > div[tabindex="-1"]:not(:nth-child(3)) { 42 | animation: warningflash 1s ease infinite; 43 | border: 2px solid #F04747; 44 | } 45 | 46 | .theme-light #user-settings-cog-Appearance { 47 | animation: warningflash 1s ease infinite; 48 | border: 2px solid #F04747!important; 49 | } 50 | .theme-light #user-settings-cog-Appearance--dark { 51 | animation: warningflash 1s ease infinite; 52 | border: 2px solid #F04747!important; 53 | } 54 | -------------------------------------------------------------------------------- /Modules/Addons/thread-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Addons/thread-icons.css -------------------------------------------------------------------------------- /Modules/Addons/voice-links.css: -------------------------------------------------------------------------------- 1 | [data-dnd-name*="dsc.gg/ngwc"] .sprite-2iCowe { 2 | background: var(--interactive-normal); 3 | -webkit-mask: var(--emoji); 4 | mask: var(--emoji); 5 | height: 20px; 6 | --emoji: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:serif='http://www.serif.com/' width='100%25' height='100%25' viewBox='0 0 1800 1800' version='1.1' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;' data-minimalscrollbar='yes'%3E%3Cg transform='matrix(1,0,0,1,-179.989,-180)'%3E%3Cpath d='M1079.99,180C1576.71,180 1979.99,583.276 1979.99,1080C1979.99,1576.72 1576.71,1980 1079.99,1980C583.266,1980 179.989,1576.72 179.989,1080C179.989,583.276 583.266,180 1079.99,180ZM1571.11,1206.48C1571.11,1477.54 1351.05,1697.6 1079.99,1697.6C808.933,1697.6 588.871,1477.54 588.871,1206.48L1571.11,1206.48ZM735.94,682.104C817.11,682.104 883.01,748.004 883.01,829.174C883.01,910.344 817.11,976.243 735.94,976.243C654.77,976.243 588.871,910.344 588.871,829.174C588.871,748.004 654.77,682.104 735.94,682.104ZM1424.06,682.104C1505.23,682.104 1571.13,748.004 1571.13,829.174C1571.13,910.344 1505.23,976.243 1424.06,976.243C1342.89,976.243 1276.99,910.344 1276.99,829.174C1276.99,748.004 1342.89,682.104 1424.06,682.104Z'/%3E%3C/g%3E%3C/svg%3E") center no-repeat; 7 | } 8 | -------------------------------------------------------------------------------- /Modules/Alignment/Bottom/guild.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Bottom/guild.css -------------------------------------------------------------------------------- /Modules/Alignment/Bottom/hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Bottom/hsl.css -------------------------------------------------------------------------------- /Modules/Alignment/Bottom/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Bottom/index.css -------------------------------------------------------------------------------- /Modules/Alignment/Bottom/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Bottom/responsive.css -------------------------------------------------------------------------------- /Modules/Alignment/Bottom/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Bottom/settings.css -------------------------------------------------------------------------------- /Modules/Alignment/Bottom/size.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Bottom/size.css -------------------------------------------------------------------------------- /Modules/Alignment/Left/guild.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Left/guild.css -------------------------------------------------------------------------------- /Modules/Alignment/Left/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Left/index.css -------------------------------------------------------------------------------- /Modules/Alignment/Left/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Left/responsive.css -------------------------------------------------------------------------------- /Modules/Alignment/Left/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Left/settings.css -------------------------------------------------------------------------------- /Modules/Alignment/Left/size.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Left/size.css -------------------------------------------------------------------------------- /Modules/Alignment/Right/guild.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Right/guild.css -------------------------------------------------------------------------------- /Modules/Alignment/Right/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Right/index.css -------------------------------------------------------------------------------- /Modules/Alignment/Right/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Right/responsive.css -------------------------------------------------------------------------------- /Modules/Alignment/Right/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Right/settings.css -------------------------------------------------------------------------------- /Modules/Alignment/Right/size.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Right/size.css -------------------------------------------------------------------------------- /Modules/Alignment/Top/guild.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Top/guild.css -------------------------------------------------------------------------------- /Modules/Alignment/Top/hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Top/hsl.css -------------------------------------------------------------------------------- /Modules/Alignment/Top/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Top/index.css -------------------------------------------------------------------------------- /Modules/Alignment/Top/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Top/responsive.css -------------------------------------------------------------------------------- /Modules/Alignment/Top/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Top/settings.css -------------------------------------------------------------------------------- /Modules/Alignment/Top/size.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Alignment/Top/size.css -------------------------------------------------------------------------------- /Modules/Alignment/focus-mode.css: -------------------------------------------------------------------------------- 1 | /* Sidebar Right 0 - 1200 */ 2 | @media screen and (min-width: 0px) and (max-width: 1200px) { 3 | .membersWrap-3NUR2t { display: none;} 4 | .selected-29KTGM { display: none;} 5 | .toolbar-3_r2xA .clickable-ZD7xvu:nth-last-child(4) { display: none;} 6 | } 7 | 8 | /* Sidebar Left 1001 - 1200 */ 9 | @media screen and (min-width: 1001px) and (max-width: 1200px) { 10 | .sidebar-1tnWFu, 11 | .sidebar-1tnWFu .thin-31rlnD { width: 200px !important;} 12 | .panels-3wFtMD .nameTag-sc-gpq { display: none;} 13 | .panels-3wFtMD .avatarWrapper-1B9FTW { margin-right: 20px;} 14 | } 15 | 16 | /* Sidebar Left 941 - 1000 */ 17 | @media screen and (min-width: 941px) and (max-width: 1000px) { 18 | .panels-3wFtMD { position: fixed; bottom: -999px;} 19 | .chat-2ZfjoI { margin-left: 0px;} 20 | .sidebar-1tnWFu { width: 0px;} 21 | .sidebar-1tnWFu .thin-31rlnD { display: none;} 22 | .sidebar-1tnWFu { padding: 0px !important;} 23 | .toolbar-3_r2xA { display: none;} 24 | .children-3xh0VB { margin-right: 10px;} 25 | } 26 | 27 | /* Sidebar Left 0 - 940 */ 28 | @media screen and (min-width: 0px) and (max-width: 940px) { 29 | .panels-3wFtMD { position: fixed; bottom: -999px;} 30 | .chat-2ZfjoI { margin-left: 0px;} 31 | .sidebar-1tnWFu { width: 0px;} 32 | .sidebar-1tnWFu .thin-31rlnD { display: none;} 33 | .sidebar-1tnWFu { padding: 0px !important;} 34 | .toolbar-3_r2xA { display: none;} 35 | .children-3xh0VB { margin-right: 10px;} 36 | .wrapper-1_HaEi { display: none;} 37 | } -------------------------------------------------------------------------------- /Modules/Animations/context-menus.css: -------------------------------------------------------------------------------- 1 | .menu-1QACrS { 2 | animation: custom-menu-animation 250ms ease; 3 | transform-origin: top; 4 | } 5 | 6 | @keyframes custom-menu-animation { 7 | 0% { 8 | transform: scaleY(0); 9 | } 10 | 100% { 11 | transform: scaleY(1); 12 | } 13 | } -------------------------------------------------------------------------------- /Modules/Animations/hide-channels.css: -------------------------------------------------------------------------------- 1 | .container-1NXEtd:hover { 2 | margin-bottom: 0px; 3 | transition: all .3s ease-in-out; 4 | } 5 | 6 | .container-1NXEtd:hover + .panels-3wFtMD { 7 | height: 0px; 8 | margin-top: 0px; 9 | animation: slideDown .5s; 10 | 11 | } 12 | 13 | @keyframes slideDown { 14 | from { 15 | margin-bottom: 37px; 16 | } 17 | to { 18 | margin-bottom: 0px; 19 | } 20 | } -------------------------------------------------------------------------------- /Modules/Animations/hide-pannels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Animations/hide-pannels.css -------------------------------------------------------------------------------- /Modules/Animations/media-popout.css: -------------------------------------------------------------------------------- 1 | .modal-3Crloo .wrapper-2bCXfR { 2 | opacity: 0; 3 | animation: mediapopup 190ms ease-out forwards; 4 | animation-delay: 80ms; 5 | } 6 | @keyframes mediapopup { 7 | 0% { 8 | transform: scale(0.65); 9 | } 10 | 70% { 11 | opacity: 1; 12 | transform: scale(1.012); 13 | } 14 | 100% { 15 | opacity: 1; 16 | transform: scale(1); 17 | } 18 | } -------------------------------------------------------------------------------- /Modules/Animations/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Animations/upload.css -------------------------------------------------------------------------------- /Modules/Effects/confetti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Effects/confetti.css -------------------------------------------------------------------------------- /Modules/Effects/leaves.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Effects/leaves.css -------------------------------------------------------------------------------- /Modules/Effects/none.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Effects/none.css -------------------------------------------------------------------------------- /Modules/Effects/rain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Effects/rain.css -------------------------------------------------------------------------------- /Modules/Effects/snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Effects/snow.css -------------------------------------------------------------------------------- /Modules/Events/christmas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Events/christmas.css -------------------------------------------------------------------------------- /Modules/Events/easter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Events/easter.css -------------------------------------------------------------------------------- /Modules/Events/thanksgiving.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Events/thanksgiving.css -------------------------------------------------------------------------------- /Modules/Fonts/dash2space.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: dash2space; 3 | unicode-range: U+002D; 4 | src: url(https://smarty6788.github.io/Dash2Space/src/font/dash2space.ttf) format('truetype'), url(https://smarty6788.github.io/Dash2Space/font/dash2space.woff2) format('woff2') 5 | } 6 | 7 | #app-mount [data-list-item-id*="channels___upcoming-events-"]>div.name-28HaxV { 8 | font-size: 14px; 9 | font-family: dash2space, var(--font-primary); 10 | text-transform: capitalize 11 | } 12 | 13 | .autocompleteRowVertical-EA9dCg[data-list-item-id*=channel-autocomplete] .autocompleteRowContentPrimary-1kUW9H .colorInteractiveActive-30E9n8, 14 | .content-2a4AW9 .emptyChannelIcon-1YdEz2~.size32-5yOQel, 15 | .quickswitcher-pKcM9U .result-u66Ywh .match-20K5f5, 16 | .sidebar-1tnWFu .mainContent-20q_Hp[href] .channelName-3KPsGw, 17 | .title-31SJ6t .iconWrapper-2awDjA .title-17SveM, 18 | .wrapper-1ZcZW-[class="wrapper-1ZcZW- mention interactive"] { 19 | font-family: dash2space, var(--font-primary); 20 | text-transform: capitalize 21 | } -------------------------------------------------------------------------------- /Modules/Fonts/source.css: -------------------------------------------------------------------------------- 1 | /* ╔════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Fonts ║ */ 3 | /* ╠════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | 7 | @import url("https://nates-world-projects.github.io/Native/Modules/Fonts/dash2space.css"); -------------------------------------------------------------------------------- /Modules/Modification/betterdiscord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Modification/betterdiscord.css -------------------------------------------------------------------------------- /Modules/Modification/goosemod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Modification/goosemod.css -------------------------------------------------------------------------------- /Modules/Modification/powercord.css: -------------------------------------------------------------------------------- 1 | /* PowercordToasts */ 2 | .powercord-toast {border-radius: 18px; background-color: transparent;} 3 | .powercord-toast .header { background-color: var(--toast-header); border-radius: 12px 12px 0px 0px;} 4 | .powercord-toast .buttons { background-color: var(--background-secondary); border-radius: 0px 0px 10px 10px;} 5 | .lookGhost-2Fn_0-.colorBrand-3pXr91 { color: #F4F7F5; background-color: var(--background-help-info)} 6 | .lookGhost-2Fn_0-.colorBrand-3pXr91:hover { color: #F4F7F5; background-color: var(--background-modifier-hover)} 7 | .lookOutlined-3sRXeN.colorRed-1TFJan {color: #F4F7F5; border-color: #f04747d0; background-color: #f0474738; } 8 | .lookOutlined-3sRXeN.colorRed-1TFJan:hover {color: #F4F7F5; border-color: #eb2e2ed0; background-color: #e93636a8; } 9 | .lookOutlined-3sRXeN.colorGrey-2DXtkV {color: #F4F7F5; border-color: #b6bec9; background-color: #747f8d93; } 10 | .lookOutlined-3sRXeN.colorGrey-2DXtkV:hover {color: #F4F7F5; border-color: #cbd3df; background-color: #99a6b893; } 11 | .powercord-toast .header { font-size: 15px; } 12 | .powercord-toast .contents .inner {background-color: transparent;border: none;} -------------------------------------------------------------------------------- /Modules/Modification/vizality.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Modification/vizality.css -------------------------------------------------------------------------------- /Modules/Modification/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Modification/web.css -------------------------------------------------------------------------------- /Modules/Plugins/betterdiscord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Plugins/betterdiscord.css -------------------------------------------------------------------------------- /Modules/Plugins/goosemod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Plugins/goosemod.css -------------------------------------------------------------------------------- /Modules/Plugins/powercord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Plugins/powercord.css -------------------------------------------------------------------------------- /Modules/Plugins/vizality.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Plugins/vizality.css -------------------------------------------------------------------------------- /Modules/Remove/beta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Remove/beta.css -------------------------------------------------------------------------------- /Modules/Remove/connections.css: -------------------------------------------------------------------------------- 1 | /* Verified Connections */ 2 | .connectedAccountNameInner-t24B11 .connectedAccountVerifiedIcon-3XCxT8 {display: none;} -------------------------------------------------------------------------------- /Modules/Remove/context-buttons.css: -------------------------------------------------------------------------------- 1 | #user-settings-cog-Discord_Nitro, 2 | #user-settings-cog-Nitro_Server_Boost, 3 | #user-settings-cog-Subscriptions, 4 | #user-settings-cog-Library_Inventory, 5 | #user-settings-cog-Billing, 6 | #user-settings-cog-Notifications, 7 | #user-settings-cog-Keybinds, 8 | #user-settings-cog-Language { 9 | display: none; 10 | } -------------------------------------------------------------------------------- /Modules/Remove/no-emoji.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Remove/no-emoji.css -------------------------------------------------------------------------------- /Modules/Remove/no-gif.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Remove Useless Buttons ║ */ 3 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 4 | 5 | /* Remove Gif Button */ 6 | .buttonContainer-2lnNiN>.button-f2h6uQ:not(.emojiButton-1fMsf3).colorBrand-I6CyqQ>.contents-3ca1mk:not(.stickerButton-1-nFh2) { 7 | position: fixed; 8 | visibility: hidden 9 | } -------------------------------------------------------------------------------- /Modules/Remove/no-gift.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Remove/no-gift.css -------------------------------------------------------------------------------- /Modules/Remove/no-help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Remove/no-help.css -------------------------------------------------------------------------------- /Modules/Remove/no-nitro.css: -------------------------------------------------------------------------------- 1 | /* Hide nitro icon on banners */ 2 | .bannerPremium-kkSkPv .premiumIconWrapper-32h0Ri { 3 | display: none; 4 | } 5 | 6 | /* User Settings */ 7 | .upsellCard-27q57L {display: none;} 8 | .side-2ur1Qk .item-3XjbnG[aria-controls="connections-tab" i] + .separator-2wx7h6, 9 | .side-2ur1Qk .item-3XjbnG[aria-controls="connections-tab" i] + .separator-2wx7h6 + .header-2Kx1US, 10 | .side-2ur1Qk .item-3XjbnG[aria-controls="discord-nitro-tab" i], 11 | .side-2ur1Qk .item-3XjbnG[aria-controls="nitro-server-boost-tab" i], 12 | .side-2ur1Qk .item-3XjbnG[aria-controls="library-inventory-tab"i], 13 | .side-2ur1Qk .item-3XjbnG[aria-controls="billing-tab"i], 14 | .side-2ur1Qk .item-3XjbnG[aria-controls="subscriptions-tab"i], 15 | [id="user-settings-cog-Discord_Nitro"i], 16 | [id="user-settings-cog-Nitro_Server_Boost"i], 17 | [id="user-settings-cog-Subscriptions"i], 18 | [id="user-settings-cog-Library_Inventory"i], 19 | [id="user-settings-cog-Billing"i]{display: none;} 20 | 21 | .children-283-lq {display:none} 22 | .theme-dark .holidayPromotionSelectedBackground-irywjz, .theme-light .holidayPromotionSelectedBackground-irywjz { 23 | background: transparent; 24 | color: var(--interactive-active); 25 | } -------------------------------------------------------------------------------- /Modules/Remove/no-number.css: -------------------------------------------------------------------------------- 1 | .accountProfileCard-lbN7n- .field-21XZwa:last-child .size16-rrJ6ag { 2 | --no-phone-number-text: 'Nothing to see here!'; 3 | color: transparent; 4 | } 5 | .accountProfileCard-lbN7n- .field-21XZwa:last-child .size16-rrJ6ag::before { 6 | color: var(--header-primary); 7 | content: var(--no-phone-number-text, '************'); 8 | } 9 | .accountProfileCard-lbN7n- .field-21XZwa:last-child .size16-rrJ6ag > .lookLink-15mFoz { 10 | transform: translateX(-88px); 11 | } 12 | -------------------------------------------------------------------------------- /Modules/Remove/no-spotify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Remove/no-spotify.css -------------------------------------------------------------------------------- /Modules/Remove/no-sticker.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Remove Useless Buttons ║ */ 3 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 4 | 5 | /* Remove Sticker Button */ 6 | .stickerButton-1-nFh2 { 7 | display: none; 8 | } -------------------------------------------------------------------------------- /Modules/Remove/no-threads.css: -------------------------------------------------------------------------------- 1 | /* Threads */ 2 | [aria-label="Create Thread"] { 3 | display: none; 4 | } 5 | -------------------------------------------------------------------------------- /Modules/Remove/timestamp.css: -------------------------------------------------------------------------------- 1 | .timestamp-6-ptG3 { 2 | background-color: transparent; 3 | border-radius: inherit; 4 | padding: inherit; 5 | } -------------------------------------------------------------------------------- /Modules/Remove/user-settings.css: -------------------------------------------------------------------------------- 1 | /* Notification Settings */ 2 | .iconWrapper-2awDjA[aria-label="notification settings"i]{display: none;} 3 | [aria-controls="notifications-tab"i] {display:none;} 4 | [id="user-settings-cog-notifications"i] {display: none;} 5 | 6 | /* Keybinds */ 7 | [aria-controls="keybinds-tab"i] {display: none;} 8 | [id="user-settings-cog-Keybinds"i] {display: none;} 9 | 10 | /* Language */ 11 | [aria-controls="language-tab"i] {display: none;} 12 | [id="user-settings-cog-language"i] {display: none;} 13 | -------------------------------------------------------------------------------- /Modules/Remove/welcome.css: -------------------------------------------------------------------------------- 1 | .welcomeCTAButtonOuter-3pJkMq {display : none} -------------------------------------------------------------------------------- /Modules/Skins/Amoled/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Amoled/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Amoled/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Amoled/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Amoled/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Amoled/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Comfy/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Comfy/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Comfy/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Comfy/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Comfy/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Comfy/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Community/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Community/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Community/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Community/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Community/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Community/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Discord/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Discord/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Discord/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Discord/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Discord/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Discord/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Fluidcord/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Fluidcord/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Fluidcord/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Fluidcord/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Fluidcord/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Fluidcord/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Lode/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Lode/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Lode/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Lode/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Lode/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Lode/splash.css -------------------------------------------------------------------------------- /Modules/Skins/MS-Teams/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/MS-Teams/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/MS-Teams/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/MS-Teams/palette.css -------------------------------------------------------------------------------- /Modules/Skins/MS-Teams/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/MS-Teams/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Nebula/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Nebula/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Nebula/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Nebula/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Nebula/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Nebula/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Nord/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Nord/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Nord/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Nord/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Nord/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Nord/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Ovel/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Ovel/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Ovel/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Ovel/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Ovel/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Ovel/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Quarrel/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Quarrel/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Quarrel/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Quarrel/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Quarrel/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Quarrel/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Rebrand/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Rebrand/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Rebrand/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Rebrand/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Rebrand/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Rebrand/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Revamp/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Revamp/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Revamp/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Revamp/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Revamp/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Revamp/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Slate/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Slate/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Slate/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Slate/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Slate/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Slate/splash.css -------------------------------------------------------------------------------- /Modules/Skins/Spotify/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Spotify/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/Spotify/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Spotify/palette.css -------------------------------------------------------------------------------- /Modules/Skins/Spotify/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/Spotify/splash.css -------------------------------------------------------------------------------- /Modules/Skins/WindowsXI/aliucord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/WindowsXI/aliucord.json -------------------------------------------------------------------------------- /Modules/Skins/WindowsXI/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/WindowsXI/palette.css -------------------------------------------------------------------------------- /Modules/Skins/WindowsXI/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Skins/WindowsXI/splash.css -------------------------------------------------------------------------------- /Modules/Splash/Client/android.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Splash/Client/android.css -------------------------------------------------------------------------------- /Modules/Splash/Client/iphone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Splash/Client/iphone.css -------------------------------------------------------------------------------- /Modules/Splash/Client/linux.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Splash/Client/linux.css -------------------------------------------------------------------------------- /Modules/Splash/Client/mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Splash/Client/mac.css -------------------------------------------------------------------------------- /Modules/Splash/Client/web.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --splash-height: unset; 3 | --splash-width: 255px; 4 | --padding: 45px; 5 | --blur: 5px; 6 | --box-shadow-color: rgba(0, 0, 0, .5); 7 | --border-size: 5px; 8 | --border-radius: 10px; 9 | --border-color: #5865f2; 10 | --background-color: rgba(0, 0, 0, .5); 11 | } 12 | 13 | .container-2RRFHK { 14 | background-color: var(--background-color); 15 | } 16 | .content-3AIQZv { 17 | width: var(--splash-width); 18 | padding: var(--padding) 0; 19 | background-color: var(--background-color); 20 | border: var(--border-size) solid var(--border-color); 21 | border-radius: var(--border-radius); 22 | box-shadow: 0px 0px var(--blur) var(--box-shadow-color); 23 | } -------------------------------------------------------------------------------- /Modules/Splash/Client/windows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Splash/Client/windows.css -------------------------------------------------------------------------------- /Modules/Splash/source.css: -------------------------------------------------------------------------------- 1 | /* ╔════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Clients ║ */ 3 | /* ╠════════════════════════════════════════════════════════════════════════════════════════════════╣ */ 4 | /* ║ ⚠️ Do not comment out these lines! By disabling the theme can not work correctly. ║ */ 5 | /* ╚════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 6 | 7 | @import url("https://nates-world-projects.github.io/Native/Modules/Splash/Client/android.css"); 8 | @import url("https://nates-world-projects.github.io/Native/Modules/Splash/Client/iphone.css"); 9 | @import url("https://nates-world-projects.github.io/Native/Modules/Splash/Client/linux.css"); 10 | @import url("https://nates-world-projects.github.io/Native/Modules/Splash/Client/mac.css"); 11 | @import url("https://nates-world-projects.github.io/Native/Modules/Splash/Client/web.css"); 12 | @import url("https://nates-world-projects.github.io/Native/Modules/Splash/Client/windows.css"); -------------------------------------------------------------------------------- /Modules/Styles/Flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Styles/Flat/flat.css -------------------------------------------------------------------------------- /Modules/Styles/Glassmorphism/glassmorphism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Styles/Glassmorphism/glassmorphism.css -------------------------------------------------------------------------------- /Modules/Styles/Neumorphism/neumorphism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Styles/Neumorphism/neumorphism.css -------------------------------------------------------------------------------- /Modules/Styles/Skeuomorphism/skeuomorphism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/Modules/Styles/Skeuomorphism/skeuomorphism.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Native

2 |
3 |

4 | Native Banner 5 |

6 |
-------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Native (Theme)", 3 | "version": "1.0.1", 4 | "author": "Nate's World#2102", 5 | "description": "Native", 6 | "license": "MIT", 7 | "theme": "src/source.css" 8 | } -------------------------------------------------------------------------------- /native.theme.css: -------------------------------------------------------------------------------- 1 | @import url("https://Nates-World-Projects.github.io/Native/src/source.css"); 2 | @import url("https://nates-world-projects.github.io/Native/Modules/Addons/Emoji-Replace/joypixels.css"); -------------------------------------------------------------------------------- /powercord_manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Native (Theme)", 3 | "version": "1.0.1", 4 | "author": "Nate's World#2102", 5 | "description": "Native", 6 | "license": "MIT", 7 | "theme": "src/source.css" 8 | } -------------------------------------------------------------------------------- /src/Base/loading.css: -------------------------------------------------------------------------------- 1 | [class*="blob-"]:nth-child(1), 2 | [style*="opacity: 0.03"], 3 | [style*="opacity: 0.08"] { 4 | animation: fadeAnim 0.7s 0.1s infinite alternate !important; 5 | } 6 | [class*="blob-"]:nth-child(2), 7 | [style*="opacity: 0.03"], 8 | [style*="opacity: 0.08"] { 9 | animation: fadeAnim 0.7s 0.2s infinite alternate !important; 10 | } 11 | [class*="blob-"]:nth-child(3), 12 | [style*="opacity: 0.03"], 13 | [style*="opacity: 0.08"] { 14 | animation: fadeAnim 0.7s 0.3s infinite alternate !important; 15 | } 16 | [class*="blob-"]:nth-child(4), 17 | [style*="opacity: 0.03"], 18 | [style*="opacity: 0.08"] { 19 | animation: fadeAnim 0.7s 0.4s infinite alternate !important; 20 | } 21 | [class*="blob-"]:nth-child(5), 22 | [style*="opacity: 0.03"], 23 | [style*="opacity: 0.08"] { 24 | animation: fadeAnim 0.7s 0.5s infinite alternate !important; 25 | } 26 | [class*="blob-"]:nth-child(6), 27 | [style*="opacity: 0.03"], 28 | [style*="opacity: 0.08"] { 29 | animation: fadeAnim 0.7s 0.6s infinite alternate !important; 30 | } 31 | [class*="blob-"]:nth-child(7), 32 | [style*="opacity: 0.03"], 33 | [style*="opacity: 0.08"] { 34 | animation: fadeAnim 0.7s 0.7s infinite alternate !important; 35 | } 36 | [class*="blob-"]:nth-child(8), 37 | [style*="opacity: 0.03"], 38 | [style*="opacity: 0.08"] { 39 | animation: fadeAnim 0.7s 0.8s infinite alternate !important; 40 | } 41 | [class*="blob-"]:nth-child(9), 42 | [style*="opacity: 0.03"], 43 | [style*="opacity: 0.08"] { 44 | animation: fadeAnim 0.7s 0.9s infinite alternate !important; 45 | } 46 | [class*="blob-"]:nth-child(10), 47 | [style*="opacity: 0.03"], 48 | [style*="opacity: 0.08"] { 49 | animation: fadeAnim 0.7s 1s infinite alternate !important; 50 | } 51 | @keyframes fadeAnim { 52 | from { 53 | filter: opacity(1); 54 | } 55 | to { 56 | filter: opacity(0.4); 57 | } 58 | } 59 | 60 | -------------------------------------------------------------------------------- /src/Base/login.css: -------------------------------------------------------------------------------- 1 | .button-f2h6uQ.lookFilled-yCfaCM.sizeMedium-2bFIHr {background-color: #5865f2 !important;} 2 | .button-f2h6uQ.lookLink-15mFoz.sizeMedium-2bFIHr { 3 | background-color: #5865f2; 4 | color: white !important; 5 | text-decoration: none !important; 6 | } -------------------------------------------------------------------------------- /src/Base/notice.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Notice ║ Server Discovery ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | .container-3wU_rj { 7 | background: var(--background-secondary); 8 | border-radius: var(--radius-primary); 9 | box-shadow: none; 10 | } -------------------------------------------------------------------------------- /src/Base/scrollbars.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Scrollbars ║ Color ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | * {scroll-behavior: smooth;} 7 | 8 | ::-webkit-scrollbar { 9 | width: 15px; 10 | border-radius: 25px; 11 | background-color: var(--scrollbar-track-dark) !important; 12 | } 13 | 14 | ::-webkit-scrollbar-thumb { 15 | border-radius: 25px; 16 | background-color: var(--color) !important; 17 | } 18 | 19 | ::-webkit-scrollbar-track { 20 | box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); 21 | } 22 | 23 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 24 | // ║ Scrollbars ║ Input ║ 25 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 26 | */ 27 | 28 | /* No Scrollbar */ 29 | .scrollableContainer-15eg7h::-webkit-scrollbar { 30 | display: none; 31 | } 32 | 33 | .scrollableContainer-15eg7h { 34 | overflow: hidden; 35 | } 36 | 37 | .textAreaSlate-9-y-k2 { 38 | overflow-y: auto; 39 | max-height: 200px; 40 | } 41 | 42 | /* Scrollbar */ 43 | .textAreaSlate-9-y-k2::-webkit-scrollbar { 44 | width: 16px; 45 | height: 16px; 46 | } 47 | 48 | .textAreaSlate-9-y-k2::-webkit-scrollbar-corner { 49 | background-color: transparent; 50 | } 51 | 52 | .textAreaSlate-9-y-k2::-webkit-scrollbar-thumb { 53 | background-color: var(--scrollbar-auto-thumb); 54 | min-height: 40px; 55 | } 56 | 57 | .textAreaSlate-9-y-k2::-webkit-scrollbar-thumb, 58 | .textAreaSlate-9-y-k2::-webkit-scrollbar-track { 59 | border: 4px solid transparent; 60 | background-clip: padding-box; 61 | border-radius: var(--radius-primary); 62 | } 63 | 64 | .textAreaSlate-9-y-k2::-webkit-scrollbar-track { 65 | background-color: var(--scrollbar-auto-track); 66 | margin-top: 10px; 67 | margin-bottom: 10px; 68 | } 69 | 70 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 71 | // ║ Scrollbars ║ Input ║ 72 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 73 | */ 74 | 75 | .none-2-_0dP { 76 | --scrollbar-width: auto !important; 77 | overflow-y: scroll !important; 78 | overflow-x: hidden !important; 79 | margin-right: 3px; 80 | } 81 | 82 | .none-2-_0dP:hover::-webkit-scrollbar { 83 | width: 0.25em !important; 84 | border-radius: 25px; 85 | height: 0px !important; 86 | background: transparent !important; 87 | 88 | } 89 | 90 | .none-2-_0dP::-webkit-scrollbar-thumb { 91 | background: var(--background-accent); 92 | border-radius: 25px; 93 | } -------------------------------------------------------------------------------- /src/Base/testing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Base/testing.css -------------------------------------------------------------------------------- /src/Base/tooltip.css: -------------------------------------------------------------------------------- 1 | .tooltip-14MtrL { 2 | max-width: 500px; 3 | } -------------------------------------------------------------------------------- /src/Base/wallpaper.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Wallpaper ║ Background ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | .container-1eFtFS { 7 | background: var(--background-primary); 8 | } 9 | 10 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 11 | // ║ Wallpaper ║ Image ║ 12 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 13 | */ 14 | 15 | .bg-1QIAus { 16 | background: var(--wallpaper) center/cover no-repeat; 17 | filter: blur(var(--blur-wallpaper)); 18 | } -------------------------------------------------------------------------------- /src/Componets/channels.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Channels ║ Boost Goal ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | /* Background */ 7 | .container-1eD8xH { 8 | background: var(--background-primary); 9 | padding: 4px 12px 4px 12px; 10 | border-radius: var(--radius-secondary); 11 | margin-bottom: 12px; 12 | } 13 | 14 | /* No Divider */ 15 | .container-1eD8xH .divider-1Y1mB0 { 16 | display: none; 17 | } 18 | 19 | /* No Icon */ 20 | .container-1eD8xH .tadaIcon-33fE1D { 21 | display: none; 22 | } 23 | 24 | /* Progress Bar */ 25 | .container-1eD8xH .progressBar-1Tzim4 { 26 | background: linear-gradient(90deg,hsl(338,calc(var(--saturation-factor, 1)*91%),36%),hsl(338,calc(var(--saturation-factor, 1)*92%),42%)); 27 | } 28 | 29 | /* Progress Icon */ 30 | .container-1eD8xH .progressBar-1Tzim4::after { 31 | content: ""; 32 | position: absolute; 33 | background: rgb(255, 255, 255); 34 | width: 8px; 35 | height: 8px; 36 | border-radius: 90px; 37 | right: -4px; 38 | bottom: -2px; 39 | } 40 | 41 | .container-1eD8xH { 42 | margin-left: 0px !important; 43 | cursor: pointer; 44 | } 45 | 46 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 47 | // ║ Channels ║ Category Icons ║ 48 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 49 | */ 50 | 51 | /* Arrow (Normal) */ 52 | .containerDefault-3TQ5YN:hover .arrow-2HswgU {display: block;} 53 | 54 | /* Arrow (Hover) */ 55 | .arrow-2HswgU {display: none;} 56 | 57 | /* Arrow (Normal) */ 58 | .addButtonIcon-3rJeaD {display: none;} 59 | 60 | /* Arrow (Hover) */ 61 | .containerDefault-3TQ5YN:hover .addButtonIcon-3rJeaD {display: block;} 62 | 63 | /* ╔════════════════════╦═══════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 64 | // ║ Channels ║ Mobile Menu ║ 65 | // ╚════════════════════╩═══════════════════════════════════════════════════════════════════════════════════╝ 66 | */ 67 | 68 | .button-2BMPJJ path {display: none;} 69 | .button-2BMPJJ.open-3fGK6o {transform: none;} 70 | 71 | .theme-dark .button-2BMPJJ, 72 | .theme-light .button-2BMPJJ { 73 | -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E") center no-repeat; 74 | mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E") center no-repeat; 75 | background: var(--interactive-active); 76 | position: relative; 77 | opacity: 1; 78 | } -------------------------------------------------------------------------------- /src/Componets/content.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Chat ║ Channel Settings ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | /* Background */ 7 | .container-1yy5xN { 8 | background: var(--background-primary); 9 | border-radius: var(--radius-secondary); 10 | margin: 16px 0px 0px 16px; 11 | padding: 12px; 12 | } 13 | 14 | /* Buttons (Normal) */ 15 | .container-1yy5xN .channelSettingButtons-sCQ_2T .button-1kija8 { 16 | color: #fff; 17 | background: var(--brand-experiment); 18 | border-radius: var(--radius-tertiary); 19 | height: 32px; 20 | min-width: 60px; 21 | min-height: 32px; 22 | padding-left: 16px; 23 | padding-right: 16px; 24 | } 25 | 26 | /* Buttons (Hover) */ 27 | .container-1yy5xN .channelSettingButtons-sCQ_2T .button-1kija8:hover { 28 | background-color: var(--brand-experiment-560); 29 | } 30 | 31 | /* No Icon */ 32 | .emptyChannelIcon-1YdEz2 {display: none;} 33 | 34 | /* No Avatar */ 35 | .container-1yy5xN .avatars-37eU13 {display: none;} 36 | 37 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 38 | // ║ Chat ║ Rules ║ 39 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 40 | */ 41 | 42 | /* Spacing */ 43 | .container-30bdan { 44 | flex-direction: row; 45 | } 46 | 47 | /* Title */ 48 | .titleName-2vkJTW { 49 | text-align: left; 50 | } 51 | 52 | /* Sub Title */ 53 | .subtitle-3tY4DQ { 54 | text-align: left; 55 | } 56 | 57 | 58 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 59 | // ║ Content ║ Embeds ║ 60 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 61 | */ 62 | 63 | .embedFull-1HGV2S { 64 | background: var(--background-secondary-alt); 65 | border-radius: 4px var(--radius-secondary) var(--radius-secondary) 4px; 66 | } -------------------------------------------------------------------------------- /src/Componets/guild.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Guild ║ Base ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | .guilds-2JjMmN .circleIcon-3489FI { 7 | color: var(--interactive-normal) !important; 8 | } 9 | 10 | .circleIconButton-1VxDrg.selected-2r1Hvo .circleIcon-3489FI { 11 | color: var(--interactive-active) !important; 12 | } 13 | 14 | .circleIconButton-1VxDrg.selected-2r1Hvo { 15 | background: var(--brand-experiment); 16 | } 17 | 18 | .slowModeIcon-35Psjn{ 19 | order: -1; 20 | margin-right: 5px; 21 | } -------------------------------------------------------------------------------- /src/Componets/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Componets/header.css -------------------------------------------------------------------------------- /src/Componets/home.css: -------------------------------------------------------------------------------- 1 | /* ╔════════════════════╦═══════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Home ║ Icon ║ 3 | // ╚════════════════════╩═══════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | .homeIcon-r0w4ny path {display:none} 7 | .homeIcon-r0w4ny { 8 | background-repeat: no-repeat; 9 | background-image: var(--home-icon); 10 | background-size: contain; 11 | background-position: center; 12 | } 13 | 14 | /* Replace Friends Icon */ 15 | .privateChannels-oVe7HL .content-2a4AW9>a[href='/channels/@me'] .linkButtonIcon-7rsZcu { 16 | position: relative; 17 | width: 100%; 18 | height: 23px; 19 | bottom: 3px; 20 | left: -2px; 21 | } 22 | 23 | .linkButtonIcon-7rsZcu path[d="M0.5,0 L0.5,1.5 C0.5,5.65 2.71,9.28 6,11.3 L6,16 L21,16 L21,14 C21,11.34 15.67,10 13,10 C13,10 12.83,10 12.75,10 C8,10 4,6 4,1.5 L4,0 L0.5,0 Z M13,0 C10.790861,0 9,1.790861 9,4 C9,6.209139 10.790861,8 13,8 C15.209139,8 17,6.209139 17,4 C17,1.790861 15.209139,0 13,0 Z"] { 24 | d: path("M12,13.011c0.753,-0 1.758,-0.293 2.259,-0.81c2.925,0.482 3.937,1.124 4.65,2.28c0.81,1.312 0.709,2.923 0.845,5.439c-1.29,1.567 -5.169,2.314 -7.754,2.314c-2.585,0 -6.464,-0.747 -7.754,-2.314c0.136,-2.516 0.035,-4.127 0.845,-5.439c0.713,-1.156 1.725,-1.798 4.65,-2.28c0.505,0.521 1.506,0.81 2.259,0.81Zm-8.841,6.06c-1.466,-0.265 -2.585,-0.772 -3.159,-1.604c0,-2.874 0.185,-3.479 0.699,-4.435c0.481,-0.895 2.083,-1.604 3.812,-1.859c0.234,0.4 1.051,0.778 1.883,0.75c-2.406,0.984 -3.3,3.553 -3.235,7.148Zm17.682,-0c1.466,-0.265 2.585,-0.772 3.159,-1.604c-0,-2.874 -0.185,-3.479 -0.699,-4.435c-0.481,-0.895 -2.083,-1.604 -3.812,-1.859c-0.234,0.4 -1.051,0.778 -1.883,0.75c2.406,0.984 3.3,3.553 3.235,7.148Zm-8.829,-17.305c0.004,0 0.008,-0 0.011,-0c1.08,-0 2.376,0.302 3.103,1.155c0.778,0.915 0.99,2.47 0.99,3.902c-0,2.769 -1.856,4.976 -4.093,4.976c-0.007,0 -0.015,0 -0.023,-0l-0.023,0c-2.237,0 -4.093,-2.207 -4.093,-4.976c0,-1.432 0.212,-2.987 0.99,-3.902c0.727,-0.853 2.023,-1.155 3.103,-1.155c0.007,-0 0.015,0 0.023,0l0.012,0Zm-4.49,1.181c0.004,0.001 -0.837,1.286 -0.73,3.667c0.118,2.61 1.072,3.839 1.069,3.841c-2.469,1.336 -4.852,-0.563 -4.903,-3.342c-0.026,-1.431 0.08,-2.337 0.764,-3.324c0.764,-1.103 2.68,-1.069 3.8,-0.842Zm8.956,0c-0.004,0.001 0.837,1.286 0.73,3.667c-0.118,2.61 -1.072,3.839 -1.069,3.841c2.469,1.336 4.852,-0.563 4.903,-3.342c0.026,-1.431 -0.08,-2.337 -0.764,-3.324c-0.764,-1.103 -2.68,-1.069 -3.8,-0.842Z"); 25 | } 26 | 27 | /* Replace Library Icon */ 28 | .linkButtonIcon-7rsZcu path[d="M17,13.6 L17.3999992,13.6 C19.0406735,13.6 20.496781,12.8097754 21.4084757,11.5891722 L21.8198761,18.8298199 C21.913864,20.4840062 20.6490733,21.9011814 18.994887,21.9951692 C18.9382174,21.9983891 18.8814679,22 18.8247069,22 L5.1752931,22 C3.51843885,22 2.1752931,20.6568542 2.1752931,19 C2.1752931,18.943239 2.17690401,18.8864895 2.18012387,18.8298199 L2.59152425,11.5891732 C3.503219,12.8097758 4.95932613,13.6 6.6,13.6 L7,13.6 L7,15 L9,15 L9,13.6 L15,13.6 L15,15 L17,15 L17,13.6 Z M7,16 L7,18 L9,18 L9,16 L7,16 Z M15,16 L17,16 L17,18 L15,18 L15,16 Z M15,11.6 L9,11.6 L9,9 L7,9 L7,11.6 L6.6,11.6 C4.94314575,11.6 3.6,10.2568542 3.6,8.6 L3.6,5 C3.6,3.34314575 4.94314575,2 6.6,2 L17.3999992,2 C19.0568535,2 20.3999992,3.34314575 20.3999992,5 L20.3999992,8.6 C20.3999992,10.2568542 19.0568535,11.6 17.3999992,11.6 L17,11.6 L17,9 L15,9 L15,11.6 Z"] { 29 | d: path("M20.8,7.7c-0.6-1.2-1.8-1.9-3.1-1.9H6.3C5,5.7,3.8,6.5,3.2,7.6l-2.8,5.8c0,0,0,0,0,0C-0.3,15.1,0.4,17,2,17.8L2.3,18C4,18.7,5.9,18,6.7,16.4l0.1-0.3c0.3-0.6,0.9-1,1.6-1h7.1c0.7,0,1.3,0.4,1.6,1l0.1,0.3c0.8,1.6,2.7,2.4,4.4,1.6l0.3-0.1c1.6-0.8,2.3-2.7,1.6-4.4L20.8,7.7z M8.6,10.5c0,0.2-0.2,0.4-0.4,0.4H7.3c-0.2,0-0.4,0.2-0.4,0.4v0.9c0,0.2-0.2,0.4-0.4,0.4H5.7c-0.2,0-0.4-0.2-0.4-0.4v-0.9c0-0.2-0.2-0.4-0.4-0.4c0,0,0,0,0,0H4.1c-0.2,0-0.4-0.2-0.4-0.4V9.7c0-0.2,0.2-0.4,0.4-0.4h0.9c0.2,0,0.4-0.2,0.4-0.4c0,0,0,0,0,0V8.1c0-0.2,0.2-0.4,0.4-0.4h0.8C6.8,7.7,7,7.9,7,8.1V9c0,0.2,0.2,0.4,0.4,0.4h0.9c0.2,0,0.3,0.2,0.3,0.4V10.5z M15.6,10.9c-0.4,0-0.8-0.3-0.8-0.8c0-0.4,0.3-0.8,0.8-0.8c0,0,0,0,0,0c0.4,0,0.8,0.3,0.8,0.8C16.4,10.5,16.1,10.9,15.6,10.9z M17.2,7.7C17.2,7.7,17.2,7.7,17.2,7.7c0.4,0,0.8,0.3,0.8,0.8c0,0,0,0,0,0c0,0.4-0.4,0.8-0.8,0.8c-0.4,0-0.8-0.4-0.8-0.8S16.8,7.7,17.2,7.7z M18,11.7L18,11.7C18,11.7,18,11.7,18,11.7c0,0.4-0.3,0.8-0.8,0.8c-0.4,0-0.8-0.3-0.8-0.8c0-0.4,0.3-0.8,0.8-0.8c0,0,0,0,0,0C17.7,10.9,18,11.3,18,11.7C18,11.7,18,11.7,18,11.7L18,11.7C18,11.7,18,11.7,18,11.7C18,11.7,18,11.7,18,11.7z M18.9,10.9c-0.4,0-0.8-0.3-0.8-0.8c0-0.4,0.3-0.8,0.8-0.8c0,0,0,0,0,0c0.4,0,0.8,0.3,0.8,0.8C19.6,10.5,19.3,10.9,18.9,10.9z"); 30 | } 31 | 32 | /* Reorder Home Icon */ 33 | .scroller-3X7KbA { 34 | display: flex; 35 | flex-direction: column; 36 | } 37 | 38 | .tutorialContainer-1pL9QS:nth-child(2) { 39 | order: -1; 40 | } -------------------------------------------------------------------------------- /src/Componets/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Componets/input.css -------------------------------------------------------------------------------- /src/Componets/members.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Members ║ Header ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | .tabs-1RhQha { 7 | flex-direction: row-reverse; 8 | } 9 | 10 | .tabs-1RhQha .tab-FftSDB { 11 | flex: 1; 12 | background: var(--background-primary); 13 | border-radius: var(--radius-secondary); 14 | padding-left: 12px; 15 | } 16 | 17 | .tabs-1RhQha [aria-controls="details-tab"] {margin: 0px 4px 0px 0px !important;} 18 | .tabs-1RhQha [aria-controls="members-tab"] {margin: 0px 0px 0px 4px !important;} 19 | 20 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 21 | // ║ Members ║ Details ║ 22 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 23 | */ 24 | 25 | /* Header */ 26 | .container-NkLXgf .sectionHeader-37ixY1 { 27 | background: var(--background-primary); 28 | border-radius: var(--radius-secondary) var(--radius-secondary) 0px 0px !important; 29 | margin-bottom: 0px; 30 | padding-bottom: 20px; 31 | padding: 12px; 32 | } 33 | 34 | /* Section */ 35 | .container-NkLXgf .section-2PUwqg { 36 | background: var(--background-primary); 37 | margin-bottom: 0px; 38 | padding-bottom: 20px; 39 | border-radius: 0px; 40 | padding: 12px; 41 | } 42 | 43 | .container-NkLXgf .section-2PUwqg:nth-last-child(2) { 44 | border-radius: 0px 0px var(--radius-secondary) var(--radius-secondary); 45 | } 46 | 47 | /* Divider */ 48 | .container-NkLXgf .divider-2vPjtn { 49 | content: ""; 50 | background: var(--background-primary); 51 | border-radius: 0px 0px var(--radius-secondary) var(--radius-secondary); 52 | height: 12px; 53 | margin-top: 0px; 54 | } 55 | 56 | /* Button (Normal) */ 57 | .container-NkLXgf .editTopicButton-jKMcn4 { 58 | color: #fff; 59 | background-color: var(--brand-experiment); 60 | height: 32px; 61 | min-width: 60px; 62 | min-height: 32px; 63 | } 64 | 65 | /* Button (Hover) */ 66 | .container-NkLXgf .editTopicButton-jKMcn4:hover {background-color: var(--brand-experiment-560);} 67 | 68 | /* No Gear */ 69 | .container-NkLXgf .gearIcon-2r92xC {display: none;} 70 | 71 | /* Link Overflow */ 72 | .container-NkLXgf .channelTopic-1hZBwz {overflow: hidden;} -------------------------------------------------------------------------------- /src/Custom/channel-hover.css: -------------------------------------------------------------------------------- 1 | /* Hover Channels animated */ 2 | .mainContent-20q_Hp:hover { 3 | animation: UserModalButtons 0.5s normal ease;} 4 | .mainContent-20q_Hp .noWrap-hBpHBz {width: 100px;opacity: 1;} 5 | .mainContent-20q_Hp {transition: 0.2s;} 6 | .mainContent-20q_Hp:hover {transition: 0.2s;} 7 | @keyframes UserModalButtons { 8 | 0% { 9 | transform: translateY(0px); 10 | } 11 | 45% { 12 | transform: translateY(-5px); 13 | } 14 | 90% { 15 | transform: translateY(0px); 16 | } 17 | } 18 | 19 | .modeConnected-NrO4cP .icon-2W8DHg, 20 | .modeConnected-NrO4cP:hover .icon-2W8DHg, 21 | .modeSelected-3DmyhH .icon-2W8DHg, 22 | .modeSelected-3DmyhH:hover .icon-2W8DHg, 23 | .modeUnread-3Cxepe .icon-2W8DHg, 24 | .modeUnread-3Cxepe:hover .icon-2W8DHg, 25 | .notInteractive-2tFrlE.modeConnected-NrO4cP .icon-2W8DHg, 26 | .notInteractive-2tFrlE.modeSelected-3DmyhH .icon-2W8DHg { 27 | color: var(--interactive-active); 28 | } -------------------------------------------------------------------------------- /src/Custom/connections.css: -------------------------------------------------------------------------------- 1 | @import url("https://nates-world-projects.github.io/Native/Modules/Addons/Revert/connections.css"); 2 | 3 | /* Order Connections */ 4 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(1) {order: 8;} 5 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(2) {order: 4;} 6 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(3) {order: 7;} 7 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(4) {order: 11;} 8 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(5) {order: 6;} 9 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(6) {order: 1;} 10 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(7) {order: 9;} 11 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(8) {order: 3;} 12 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(9) {order: 5;} 13 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(10) {order: 9;} 14 | .connectedAccounts-26X_gr .accountBtn-1YkMgV:nth-child(11) {order: 2; margin-right: 7px;} 15 | 16 | /* Center Connections */ 17 | /* Center Connection Text */ 18 | .sectionTitle-3j2YI1>h1:nth-child(2) { 19 | text-align: center; 20 | } 21 | 22 | /* Center Connection Buttons */ 23 | .accountList-305sx3 { 24 | justify-content: center; 25 | justify-self: center; 26 | width: 400px; 27 | margin-left: 170px; 28 | } 29 | .connectedAccounts-26X_gr { 30 | margin: auto; 31 | justify-content: center; 32 | } 33 | 34 | 35 | /* Center Connected Accounts */ 36 | .connectionList-1NoxUk { 37 | margin-left: 170px; 38 | width: 400px; 39 | } 40 | -------------------------------------------------------------------------------- /src/Custom/disabled.css: -------------------------------------------------------------------------------- 1 | /* Removes Chatbox from channel that don't allow you to communicate */ 2 | .channelTextAreaDisabled-1p2fQv, .channelTextAreaDisabled-1p2fQv > .scrollableContainer-15eg7h{ 3 | animation: nochat .000001ms forwards; 4 | } 5 | @keyframes nochat{ 6 | to{height: 0} 7 | } 8 | /* Removes Follow banner on bottom of channels */ 9 | .wrapper-2SplAX {display: none;} -------------------------------------------------------------------------------- /src/Custom/dropdowns.css: -------------------------------------------------------------------------------- 1 | @keyframes popup { 2 | 0% { 3 | transform: translateY(10px); 4 | } 5 | 100% { 6 | transform: none; 7 | } 8 | } 9 | #app-mount .css-gvi9bl-control, 10 | #app-mount .css-17e1tep-control { 11 | font-weight: 500; 12 | } 13 | #app-mount .css-gvi9bl-control .css-1fhf191 svg, 14 | #app-mount .css-17e1tep-control .css-1fhf191 svg { 15 | display: none; 16 | } 17 | #app-mount .css-gvi9bl-control .css-1fhf191::after, 18 | #app-mount .css-17e1tep-control .css-1fhf191::after { 19 | content: ""; 20 | position: absolute; 21 | background: url('data:image/svg+xml;utf8,') center/100% no-repeat; 22 | width: 20px; 23 | height: 20px; 24 | right: 7px; 25 | top: 11px; 26 | } 27 | 28 | #app-mount .css-17mfgdg-container { 29 | font-weight: 500; 30 | } 31 | #app-mount .css-17mfgdg-container .css-1fhf191 svg { 32 | display: none; 33 | } 34 | #app-mount .css-17mfgdg-container .css-1fhf191::after { 35 | content: ""; 36 | position: absolute; 37 | background: url('data:image/svg+xml;utf8,') center/100% no-repeat; 38 | width: 20px; 39 | height: 20px; 40 | right: 7px; 41 | top: 11px; 42 | } 43 | 44 | #app-mount .css-6fzn47-control { 45 | font-weight: 500; 46 | } 47 | #app-mount .css-6fzn47-control .css-1fhf191 svg { 48 | display: none; 49 | } 50 | #app-mount .css-6fzn47-control .css-1fhf191::after { 51 | content: ""; 52 | position: absolute; 53 | background: url('data:image/svg+xml;utf8,') center/100% no-repeat; 54 | width: 20px; 55 | height: 20px; 56 | right: 7px; 57 | top: 11px; 58 | } 59 | 60 | #app-mount .css-3vaxre-menu { 61 | background-color: var(--background-secondary); 62 | border-color: var(--background-tertiary); 63 | border-radius: 0; 64 | animation: popup 0.2s ease-out; 65 | font-weight: 500; 66 | } 67 | 68 | #app-mount .css-3vaxre-menu .css-1yz4bi9-option { 69 | color: var(--interactive-normal); 70 | font-weight: 500; 71 | } 72 | #app-mount .css-3vaxre-menu .css-rzbxvl-option { 73 | background-color: var(--background-secondary-alt); 74 | color: var(--interactive-hover); 75 | font-weight: 500; 76 | } 77 | 78 | #app-mount .css-3vaxre-menu .css-1ba14n5-option { 79 | background-color: var(--background-tertiary); 80 | color: var(--text-normal); 81 | font-weight: 500; 82 | } 83 | #app-mount .css-3vaxre-menu .css-1ba14n5-option::after { 84 | content: ""; 85 | position: absolute; 86 | background: url('data:image/svg+xml;utf8,') center/100% no-repeat; 87 | width: 20px; 88 | height: 20px; 89 | right: 14px; 90 | } -------------------------------------------------------------------------------- /src/Custom/edited.css: -------------------------------------------------------------------------------- 1 | /* edited text */ 2 | .timestamp-p1Df1m:not(.timestampInline-_lS3aK, .timestampVisibleOnHover-9PEuZS) time::after { 3 | content: " (" attr(aria-label) ")"; 4 | color: var(--text-muted); 5 | font-size: 0.625rem; 6 | font-weight: 400; 7 | line-height: 1; 8 | -webkit-user-select: none; 9 | -moz-user-select: none; 10 | -ms-user-select: none; 11 | user-select: none; 12 | text-transform: lowercase; 13 | } 14 | 15 | .edited-1v5nT8 { 16 | display: none; 17 | } -------------------------------------------------------------------------------- /src/Custom/embeds.css: -------------------------------------------------------------------------------- 1 | /*Embeds*/ 2 | :root{ 3 | --embed-border-radius: 8px; 4 | } 5 | .embed-hKpSrO { 6 | border-radius: var(--embed-border-radius); 7 | } 8 | .embed-hKpSrO code{ 9 | background: var(--background-secondary); 10 | } 11 | :root{ 12 | --embed-line-width: 256px; 13 | } 14 | 15 | .embedFull-1HGV2S { 16 | 17 | border-left: calc(4px + var(--embed-line-width)) solid var(--background-accent); 18 | background: var(--background-secondary); 19 | } 20 | .grid-1aWVsE { 21 | margin-left: calc( -1 * var(--embed-line-width)); 22 | z-index: 1; 23 | } 24 | .embedFull-1HGV2S:after, .embedFull-1HGV2S:before{ 25 | content: ""; 26 | height: 100%; 27 | width: var(--embed-line-width); 28 | position: absolute; 29 | top: 0; 30 | left: calc(-1 * var(--embed-line-width)); 31 | } 32 | .embedFull-1HGV2S:after{ 33 | background: linear-gradient(var(--background-secondary, transparent)); 34 | } 35 | .embedFull-1HGV2S:before{ 36 | background: var(--background-secondary); 37 | opacity: .8; 38 | } -------------------------------------------------------------------------------- /src/Custom/fixes.css: -------------------------------------------------------------------------------- 1 | /* Do not Mirror */ 2 | .mirror-2qdBDS {transform: none} 3 | 4 | /* Remove Underlined username */ 5 | #app-mount .username-h_Y3Us:hover { 6 | text-decoration: none; 7 | } 8 | 9 | /* Removes Help Button */ 10 | .toolbar-3_r2xA a { 11 | display: none; 12 | } 13 | 14 | /* Removes the Close Button on DMs */ 15 | .closeButton-mupH76{ 16 | display: none !important; 17 | } 18 | 19 | /* Emoji Fix */ 20 | .guildSection-2Zyzy8 > .flex-2S1XBF > svg { 21 | flex-shrink: 0; 22 | } 23 | 24 | /* Channel Fix */ 25 | .topic-11NuQZ > .wrapper-1ZcZW- > .channelIcon-3I2O7O, 26 | .embedFooterText-2Mc7H9 > .wrapper-1ZcZW- > .channelIcon-3I2O7O { 27 | width: calc(1.05rem * 1.05 / 1.3); 28 | height: 1.05rem; 29 | } 30 | 31 | /* Emoji Scaling */ 32 | img.emote { 33 | text-indent: 0; 34 | white-space: nowrap; 35 | width: auto; 36 | position: relative; 37 | top: 0.25ex; 38 | } 39 | 40 | /* File Icon */ 41 | .audioMetadata-1Hrt8T::before { 42 | min-width: 24px; 43 | } 44 | 45 | /* Message Attatchments */ 46 | .messageAttachment-CZp8Iv { 47 | max-width: 100%; 48 | min-width: 0; 49 | } 50 | 51 | /* Search Header */ 52 | .searchHeader-1r_ZSh { 53 | background-color: var(--background-secondary); 54 | } 55 | 56 | /* Transparent Icons */ 57 | .icon-3AqZ2e,[src*="https://cdn.discordapp.com/avatars/"]{ 58 | background: #5865f2; 59 | } 60 | 61 | /* Unread */ 62 | .isUnread-3Lojb- {border-color:transparent !important;} 63 | .app-focused .isUnread-3Lojb- {border-color: #f04747 !important;} 64 | 65 | /* Do not copy Username */ 66 | .header-2jRmjb{ 67 | user-select:none; 68 | } 69 | 70 | /* Center a whole lot of shit */ 71 | .tabs-1RhQha {justify-content: center;} 72 | .name-3YKhmS{ text-align: center; } 73 | .membersGroup-2eiWxl .container-q97qHp {align-content: center;} 74 | 75 | /* Move Unread Icon */ 76 | .barButtonIcon-bMvzp2 { 77 | order: -1; 78 | margin-left: 0px; 79 | margin-right: 2px; 80 | } 81 | 82 | /* Move RPC Icon */ 83 | .icon-Lupfh- {order: -1;} 84 | 85 | /* Recolor Mention Toggle */ 86 | .mentionButton-3C5YMI {color: #5865f2 !important;} 87 | 88 | /* Recolor Connection Close Button */ 89 | .connectionDelete-3YgMVq path {fill: #C13A3A;} 90 | 91 | /* Remove Logout Icon */ 92 | [d="M18 2H7C5.897 2 5 2.898 5 4V11H12.59L10.293 8.708L11.706 7.292L16.414 11.991L11.708 16.706L10.292 15.294L12.582 13H5V20C5 21.103 5.897 22 7 22H18C19.103 22 20 21.103 20 20V4C20 2.898 19.103 2 18 2Z"] { 93 | display: none; 94 | } 95 | 96 | /* Remove Delete Button */ 97 | [d="M5 6.99902V18.999C5 20.101 5.897 20.999 7 20.999H17C18.103 20.999 19 20.101 19 18.999V6.99902H5ZM11 17H9V11H11V17ZM15 17H13V11H15V17Z"], [d="M15 3.999V2H9V3.999H3V5.999H21V3.999H15Z"] { 98 | display: none; 99 | } 100 | 101 | /* Remove ID Icon */ 102 | [d="M5 2C3.34315 2 2 3.34315 2 5V19C2 20.6569 3.34315 22 5 22H19C20.6569 22 22 20.6569 22 19V5C22 3.34315 20.6569 2 19 2H5ZM8.79741 7.72V16H6.74541V7.72H8.79741ZM13.2097 7.72C16.0897 7.72 17.5897 9.388 17.5897 11.848C17.5897 14.308 16.0537 16 13.2577 16H10.3537V7.72H13.2097ZM13.1497 14.404C14.6137 14.404 15.5257 13.636 15.5257 11.86C15.5257 10.12 14.5537 9.316 13.1497 9.316H12.4057V14.404H13.1497Z"] { 103 | display: none; 104 | } 105 | 106 | .hasBuildOverride-3V9MZN { 107 | display: none; 108 | } 109 | 110 | .buildOverrideButton-1cRvTc [mask="url(#svg-mask-panel-button)"] { 111 | mask: none !important; 112 | } 113 | 114 | .textBadge-1fdDPJ {display: none;} -------------------------------------------------------------------------------- /src/Custom/invites.css: -------------------------------------------------------------------------------- 1 | .wrapper-1HIH0j {background-color: var(--background-tertiary) !important;} -------------------------------------------------------------------------------- /src/Custom/media.css: -------------------------------------------------------------------------------- 1 | /* Uploads */ 2 | .upload-3GTSF9 3 | { 4 | min-width: 50px; 5 | min-height: 50px; 6 | } 7 | 8 | .filename-3PA55E 9 | { 10 | width: 100px; 11 | margin-top: 0px; 12 | } 13 | 14 | .upload-3GTSF9 15 | { 16 | padding: 4px; 17 | } 18 | 19 | .image-2dAEjD 20 | { 21 | max-height: 180px; 22 | } 23 | 24 | .channelAttachmentArea-1wlgJV 25 | { 26 | align-items: center; 27 | } 28 | 29 | @keyframes expand_attachment_area { 30 | from { 31 | height: 0; 32 | } 33 | to { 34 | height: 218px; 35 | } 36 | } 37 | ul[class*="channelAttachmentArea-"] { 38 | animation-name: expand_attachment_area; 39 | animation-duration: 0.5s; 40 | animation-iteration-count: 1; 41 | } -------------------------------------------------------------------------------- /src/Custom/messages.css: -------------------------------------------------------------------------------- 1 | .newMessagesBar-1hF-9G { 2 | background-color: rgba(88, 101, 242, .5); 3 | backdrop-filter: blur(5px); 4 | border-radius: 50px; 5 | margin-top: 5px; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /src/Custom/pings.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --background-mentioned-side: rgb(88, 101, 242); 3 | --background-mentioned: rgba(114, 137, 218, 0); 4 | --background-mentioned-hover: rgba(114, 137, 218, 0); 5 | --replying-side: rgb(2, 183, 87); 6 | --replying-default: rgba(2, 183, 87, 0.05); 7 | --replying-hovered: rgba(2, 183, 87, 0.12); 8 | --local-bot-side: rgb(240, 71, 71); 9 | --local-bot-default: rgba(240, 71, 71, 0.05); 10 | --local-bot-hover: rgba(240, 71, 71, 0.12); 11 | } 12 | 13 | /* Pings. */ 14 | .mentioned-Tre-dv:not(.replying-eZ7p5z) { 15 | background: var(--background-mentioned); 16 | } 17 | .mentioned-Tre-dv:not(.replying-eZ7p5z)::before { 18 | background: var(--background-mentioned-side); 19 | border-radius: 50px; 20 | width: 5px; 21 | } 22 | .mentioned-Tre-dv:not(.replying-eZ7p5z):hover { 23 | background: var(--background-mentioned-hover); 24 | } 25 | 26 | /* Replying. */ 27 | .replying-eZ7p5z { 28 | background: var(--replying-default) !important; 29 | } 30 | .replying-eZ7p5z::before { 31 | background: var(--replying-side); 32 | border-radius: 50px; 33 | width: 5px; 34 | } 35 | .replying-eZ7p5z:hover { 36 | background: var(--replying-hovered) !important; 37 | } 38 | 39 | 40 | /*revert mention colors*/ 41 | .wrapper-3WhCwL,.mentioned-xhSam7 .mention{ 42 | color:#5865f2 !important; 43 | background:rgba(114,137,218,.1) !important; 44 | border-radius: 3px; 45 | padding: 0 2px; 46 | font-weight: 500; 47 | } 48 | .wrapper-3WhCwL:hover,.mentioned-xhSam7 .mention:hover{ 49 | color:#fff !important; 50 | background-color:#5865f2 !important; 51 | } -------------------------------------------------------------------------------- /src/Custom/replies.css: -------------------------------------------------------------------------------- 1 | .repliedMessage-3Z6XBG { 2 | height: 10px; 3 | background-color: var(--background-secondary); 4 | border-radius: 5px; 5 | padding-top: 5px; 6 | padding-bottom: 10px; 7 | transition: 300ms background-color; 8 | width: min-content; 9 | max-width: 800px; 10 | } 11 | .repliedMessage-3Z6XBG:hover { 12 | background-color: var(--background-modifier-hover); 13 | } 14 | .repliedMessage-3Z6XBG:active { 15 | background-color: var(--background-modifier-active); 16 | } 17 | .repliedMessage-3Z6XBG::before { 18 | margin-right: var(--reply-message-margin); 19 | } -------------------------------------------------------------------------------- /src/Custom/role-icons.css: -------------------------------------------------------------------------------- 1 | [class*="roleIcon"] { 2 | float: left; 3 | margin-left: 0rem; 4 | margin-right: .25rem; 5 | } -------------------------------------------------------------------------------- /src/Custom/search-dms.css: -------------------------------------------------------------------------------- 1 | .searchBar-3TnChZ { 2 | position: absolute; 3 | bottom: 3px; 4 | right: 110px; 5 | padding: 0; 6 | height: auto; 7 | box-shadow: none; 8 | } 9 | 10 | .searchBar-3TnChZ .searchBarComponent-3N7dCG { 11 | padding: 0; 12 | font-size: 0; 13 | width: 50px; 14 | height: 50px; 15 | border-radius: 50%; 16 | background-color: #5865f2 !important; 17 | display: flex; 18 | align-items: center; 19 | justify-content: center; 20 | transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1); 21 | box-shadow: 0px 3px 5px -1px rgb(0 0 0 / 20%), 0px 6px 10px 0px rgb(0 0 0 / 14%), 0px 1px 18px 0px rgb(0 0 0 / 12%); 22 | } 23 | 24 | .searchBar-3TnChZ .searchBarComponent-3N7dCG:hover { 25 | box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%), inset 0 0 0 56px rgba(255, 255, 255, 0.12); 26 | } 27 | 28 | .searchBar-3TnChZ .searchBarComponent-3N7dCG:active { 29 | box-shadow: 0px 7px 8px -4px rgb(0 0 0 / 20%), 0px 12px 17px 2px rgb(0 0 0 / 14%), 0px 5px 22px 4px rgb(0 0 0 / 12%), inset 0 0 0 56px rgba(255, 255, 255, 0.24); 30 | } 31 | 32 | .searchBar-3TnChZ .searchBarComponent-3N7dCG::after { 33 | content: ''; 34 | display: block; 35 | width: 24px; 36 | height: 24px; 37 | background-color: #fff; 38 | -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="%23000000"%3E%3Cpath d="M0 0h24v24H0z" fill="none"/%3E%3Cpath d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/%3E%3C/svg%3E') center/cover no-repeat; 39 | } -------------------------------------------------------------------------------- /src/Custom/spotify.css: -------------------------------------------------------------------------------- 1 | .topSectionSpotify-1lI0-P .assets-3PQvAh img { 2 | --props: 1s linear; 3 | transition: height var(--props), width var(--props); 4 | } 5 | .topSectionSpotify-1lI0-P .assets-3PQvAh:hover { 6 | left: 55px; 7 | bottom: 30px; 8 | } 9 | .topSectionSpotify-1lI0-P .assets-3PQvAh:hover img { 10 | right: 54px; 11 | top: 30px; 12 | width: 200px; 13 | height: 200px; 14 | position: relative; 15 | } 16 | 17 | a>.assetsLargeImageUserPopout-pY2WJv[src^="https://i.scdn.co/image/"]{ 18 | width:50px; 19 | height:50px; 20 | transition: all 1s; 21 | } 22 | a>.assetsLargeImageUserPopout-pY2WJv[src^="https://i.scdn.co/image/"]:hover { 23 | width:100px; 24 | height:100px; 25 | transition: all 1s; 26 | } 27 | 28 | /* Re-round Spotify Status Images */ 29 | .assetsLargeImageSpotify-17ME3M{border-radius:10px;} -------------------------------------------------------------------------------- /src/Custom/status.css: -------------------------------------------------------------------------------- 1 | .root-SR8cQa .activity-1ythUs { 2 | overflow: auto; 3 | } 4 | .root-SR8cQa .activity-1ythUs::-webkit-scrollbar { 5 | height: 5px; 6 | } 7 | .root-SR8cQa .activity-1ythUs::-webkit-scrollbar-track { 8 | border-radius: 4px; 9 | margin-left: 18px; 10 | margin-right: 18px; 11 | background-color: rgba(0, 0, 0, 0.15); 12 | } 13 | .root-SR8cQa .activity-1ythUs::-webkit-scrollbar-thumb { 14 | border-radius: 4px; 15 | background-color: var(--header-secondary); 16 | } 17 | 18 | /* Center Emoji Statuses */ 19 | .customStatus-3XAoF9 > .customStatusEmoji-1bFQdD.customStatusSoloEmoji-2bSRlG:only-child { 20 | margin-right: auto; 21 | margin-left: auto; 22 | } -------------------------------------------------------------------------------- /src/Custom/toasts.css: -------------------------------------------------------------------------------- 1 | .toast-q3Y4wI { 2 | background: #43b581 !important; 3 | transform: translateY(10px); 4 | padding: 6px 10px 6px 10px !important; 5 | border-radius: 5px; 6 | box-shadow: var(--elevation-medium), var(--elevation-stroke); 7 | font-weight: 500; 8 | color: var(--header-primary); 9 | opacity: 1; 10 | margin-top: 10px; 11 | } 12 | 13 | .toast-q3Y4wI .icon-2QUmmw > path { 14 | d: none !important; 15 | } 16 | 17 | .toast-q3Y4wI .icon-2QUmmw { 18 | height: 20px !important; 19 | width: 20px !important; 20 | margin-top: 0 !important; 21 | background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgMkM2LjQ4IDIgMiA2LjQ4IDIgMTJzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwUzE3LjUyIDIgMTIgMnptLTIgMTVsLTUtNSAxLjQxLTEuNDFMMTAgMTQuMTdsNy41OS03LjU5TDE5IDhsLTkgOXoiLz48L3N2Zz4=); 22 | background-size: 20px 20px; 23 | } 24 | 25 | .toast-q3Y4wI .colorHeaderPrimary-jN_yGr { 26 | font-size: 14px !important; 27 | line-height: 20px !important; 28 | } -------------------------------------------------------------------------------- /src/Pages/boost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Pages/boost.css -------------------------------------------------------------------------------- /src/Pages/explore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Pages/explore.css -------------------------------------------------------------------------------- /src/Pages/favourites.css: -------------------------------------------------------------------------------- 1 | .favoritesInfo-3HTE7X {display: none;} 2 | [d="M21.924 8.61789C21.77 8.24489 21.404 8.00089 21 8.00089H15.618L12.894 2.55389C12.555 1.87689 11.444 1.87689 11.105 2.55389L8.38199 8.00089H2.99999C2.59599 8.00089 2.22999 8.24489 2.07599 8.61789C1.92199 8.99089 2.00699 9.42289 2.29299 9.70789L6.87699 14.2919L5.03899 20.7269C4.92399 21.1299 5.07199 21.5619 5.40999 21.8089C5.74999 22.0569 6.20699 22.0659 6.55399 21.8329L12 18.2029L17.445 21.8329C17.613 21.9449 17.806 22.0009 18 22.0009C18.207 22.0009 18.414 21.9369 18.59 21.8089C18.928 21.5619 19.076 21.1299 18.961 20.7269L17.123 14.2919L21.707 9.70789C21.993 9.42289 22.078 8.99089 21.924 8.61789Z"] { 3 | d: path("M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"); 4 | transform: scale(1.1) translate(-1.5px, -1px); 5 | } -------------------------------------------------------------------------------- /src/Pages/friends.css: -------------------------------------------------------------------------------- 1 | .status-12NUUC::after { 2 | font-weight: bold; 3 | padding-top: 1px; 4 | padding-left: 5px; 5 | color: var(--status-color); 6 | } 7 | .status-12NUUC[aria-label=Online]::after { 8 | content: "ONLINE"; 9 | --status-color: #43B581; 10 | } 11 | .status-12NUUC[aria-label="Do Not Disturb"]::after { 12 | content: "DO NOT DISTURB"; 13 | --status-color: #F04747; 14 | } 15 | .status-12NUUC[aria-label=Idle]::after { 16 | content: "IDLE"; 17 | --status-color: #FFB740; 18 | } 19 | .status-12NUUC[aria-label=Offline]::after { 20 | content: "OFFLINE / INVISIBLE"; 21 | --status-color: #747F8D; 22 | } -------------------------------------------------------------------------------- /src/Pages/libary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Pages/libary.css -------------------------------------------------------------------------------- /src/Pages/nitro.css: -------------------------------------------------------------------------------- 1 | .flowerStarContainer-1QeD-L.icon-1dGlZy { 2 | color:white; 3 | } 4 | 5 | /* Feature description */ 6 | /*More emoji power*/ 7 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featureEmoji-cnSD0D > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 8 | color:#FFA600; 9 | } 10 | /*Personalized profile*/ 11 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featureProfile-2h92hd > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 12 | color:#00E0A7; 13 | } 14 | /*support your server*/ 15 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featurePremiumGuild-2uV6-N > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 16 | color: #5C87CC; 17 | } 18 | /*rep your status*/ 19 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featureBadge-1FNGAH > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 20 | color: #FFAFFF; 21 | } 22 | /*bigger uploads*/ 23 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featureUploadSize-3k1zif > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 24 | color:#776BFF; 25 | } 26 | /*hd video*/ 27 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featureGoLive-15Pf6l > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 28 | color: #FA4E89; 29 | } 30 | /*longer messages*/ 31 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featureLongerMessageContent-4BIM8v > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 32 | color:#ffd836; 33 | } 34 | /*more servers*/ 35 | #app-mount > div.app-3xd6d0 > div > div.layers-OrUESM.layers-1YQhyW > div:nth-child(2) > div > div.contentRegion-3HkfJJ > div > div > main > div > div > div.featureGrid-SSlfD0 > li.feature-2IUcBI.featureMoreServers-3eY3SW > div.colorStandard-21JIj7.size14-3fJ-ot.featureDescription-3U0QB3{ 36 | color:#a57ef8 37 | } -------------------------------------------------------------------------------- /src/Pages/settings.css: -------------------------------------------------------------------------------- 1 | .info-3pQQBb { 2 | text-transform: none; 3 | } 4 | 5 | .info-3pQQBb .size12-3cLvbJ { 6 | text-transform: capitalize; 7 | } 8 | 9 | .info-3pQQBb:last-child::after { 10 | content: "Native (Theme) - DEV"; 11 | color: var(--text-muted); 12 | position: relative; 13 | line-height: 16px; 14 | font-size: 12px; 15 | width: 100%; 16 | } 17 | .ownerIcon-255uKo { 18 | margin-left: 4px; 19 | } 20 | .container-2nx-BQ[style*="opacity: 1; background-color: hsl(218, calc(var(--saturation-factor, 1) * 4.6%), 46.9%);"]{ 21 | background-color: #c13a3a !important; 22 | fill: #c13a3a !important; 23 | } 24 | .container-2nx-BQ[style*="opacity: 1; background-color: hsl(218, calc(var(--saturation-factor, 1) * 4.6%), 46.9%);"] path{ 25 | fill: #c13a3a !important; 26 | } 27 | 28 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 29 | /* ║ Reorder ║ */ 30 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 31 | 32 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 33 | /* ║ User Settings ║ */ 34 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 35 | 36 | /* [aria-controls="my-account-tab"i] {order: 2} */ 37 | 38 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 39 | /* ║ Server Settings ║ */ 40 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 41 | 42 | /* .header-2RyJ0Y [aria-label="Nate's World | Community"] {order:1} 43 | [aria-controls="overview-tab"i] {order:0} 44 | [aria-controls="analytics-tab"i] {order:1} 45 | [aria-controls="moderation-tab"i] {order: 2 } 46 | [aria-controls="roles-tab"i] {order: 3} 47 | [aria-controls="emoji-tab"i] {order: 4} 48 | [aria-controls="stickers-tab"i] {order: 0} 49 | [aria-controls="integrations-tab"i] {order: 0} 50 | [aria-controls="widget-tab"i] {order: 0} 51 | [aria-controls="guild_templates-tab"] {order: 0} 52 | [aria-controls="audit_log-tab"i] {order: 9} 53 | [aria-controls="community-tab"i] {order: 0} 54 | [aria-controls="discovery-tab"i] {order: 11} 55 | [aria-controls="partner-tab"i] {order: 12} 56 | [aria-controls="member_verification-tab"i] {order: 13} 57 | [aria-controls="community_welcome-tab"i] {order: 14} 58 | [aria-controls="role_subscriptions-tab"i] {order: 15} 59 | [aria-controls="members-tab"i] {order: 17} 60 | [aria-controls="instant_invites-tab"i] {order: 16} 61 | [aria-controls="bans-tab"i] {order: 0} 62 | [aria-controls="delete-tab"i] {order: 0} 63 | */ 64 | 65 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 66 | /* ║ Channel Settings ║ */ 67 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 68 | 69 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 70 | /* ║ Server Context Menu ║ */ 71 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 72 | 73 | 74 | /* Center About Me Preview */ 75 | .avatarUploader-AF-hm- {margin-left: 80px;} 76 | .headerTagNoNickname-3tGHj6, .aboutMeTitle-3pjiS7, .fakeActivityTitle-3-_pB_ {text-align: center!important;} 77 | .customStatus-3XAoF9 { 78 | display: flex; 79 | align-items: center; 80 | justify-content: center 81 | } 82 | 83 | .sidebar-nqHbhN .item-3XjbnG[aria-controls=audit_log_v2-tab]{display: none;} -------------------------------------------------------------------------------- /src/Pages/subscription.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Pages/subscription.css -------------------------------------------------------------------------------- /src/Popouts/active-threads.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Popouts/active-threads.css -------------------------------------------------------------------------------- /src/Popouts/autocomplete.css: -------------------------------------------------------------------------------- 1 | .base-2v-uc0 { 2 | transition: all 0.5s; 3 | } 4 | .base-2v-uc0:hover { 5 | transition: all 0s; 6 | transform: scale(1.02); 7 | } 8 | 9 | /* Make autocomplete scrollable */ 10 | .autocomplete-3NRXG8 { 11 | max-height: calc(100vh - 120px); 12 | overflow-y: scroll; 13 | } 14 | .autocomplete-3NRXG8::-webkit-scrollbar-thumb { 15 | background-clip: padding-box; 16 | border: 2px solid transparent; 17 | border-radius: 4px; 18 | background-color: var(--scrollbar-thin-thumb); 19 | min-height: 40px; 20 | } 21 | .autocomplete-3NRXG8::-webkit-scrollbar { 22 | width: 8px; 23 | height: 8px; 24 | } -------------------------------------------------------------------------------- /src/Popouts/bots.css: -------------------------------------------------------------------------------- 1 | .botText-1fD6Qk:not(:only-child){ 2 | display: none; 3 | } 4 | .px-MnE_OR.botTag-7aX5WZ{ 5 | padding-right: 0; 6 | } 7 | .botText-1fD6Qk:only-child{ 8 | padding-right: 4px; 9 | } -------------------------------------------------------------------------------- /src/Popouts/emoji-picker.css: -------------------------------------------------------------------------------- 1 | /* ╔══════════════════════════╦═════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ 2 | // ║ Emoji Picker ║ General ║ 3 | // ╚══════════════════════════╩═════════════════════════════════════════════════════════════════════════════════════════╝ 4 | */ 5 | 6 | /* Change Name */ 7 | #emoji-picker-tab .contents-3ca1mk::after { 8 | content: "s"; 9 | } 10 | 11 | /* Emoji Picker */ 12 | #emoji-picker-tab { 13 | order: 1; 14 | margin-left: 0px; 15 | margin-right: 8px; 16 | } 17 | 18 | /* GIF Picker */ 19 | #gif-picker-tab { 20 | order: 2; 21 | margin-right: 8px; 22 | } 23 | 24 | /* Sticker Picker */ 25 | #sticker-picker-tab { 26 | order: 3; 27 | margin-left: 0px; 28 | } 29 | 30 | .navList-YSb9UB { 31 | align-items: center; 32 | justify-content: center; 33 | } 34 | 35 | .wrapper-22rqw6 { 36 | position: relative; 37 | } 38 | 39 | .emojiPickerInExpressionPicker-2nOwH8 .emojiPicker-6YCk8a { 40 | background-color: transparent; 41 | border-bottom-right-radius: 0; 42 | border-bottom-left-radius: 0; 43 | -webkit-box-shadow: none; 44 | box-shadow: none; 45 | -webkit-box-flex: 1; 46 | -ms-flex: 1 1 auto; 47 | flex: 1 auto auto; 48 | grid-template-rows: auto 1fr auto; 49 | height: 100%; 50 | width: auto; 51 | } 52 | 53 | .drawerSizingWrapper-1txdWG { 54 | resize: vertical; 55 | } 56 | 57 | .resizeHandle-T_gFJR { 58 | display: none; 59 | } 60 | 61 | .positionContainer-dMArNx { 62 | resize: vertical; 63 | width: 100%; 64 | height: 644px; 65 | pointer-events: none; 66 | max-width: 100%; 67 | margin: 0px; 68 | } 69 | 70 | .positionLayer-1cndvf { 71 | position: absolute; 72 | right: 0px !important; 73 | bottom: 0px !important; 74 | left: calc(var(--layout-margin-right) + var(--layout-width-members) + var(--layout) + var(--layout)) !important; 75 | } 76 | 77 | /* Fix Fequently Used Text */ 78 | 79 | [lang="en-GB"] .categorySection-3j71bm:nth-child(2) .interactive-MpGq2z:hover:hover .headerLabel-1g790w::after, 80 | [lang="en-US"] .categorySection-3j71bm:nth-child(2) .interactive-MpGq2z:hover:hover .headerLabel-1g790w::after{ 81 | color: var(--interactive-active) !important; 82 | } 83 | 84 | [lang="en-GB"] .categorySection-3j71bm:nth-child(2) .headerLabel-1g790w, 85 | [lang="en-US"] .categorySection-3j71bm:nth-child(2) .headerLabel-1g790w { 86 | color: transparent; 87 | max-width: 60% !important; 88 | } 89 | 90 | [lang="en-GB"] .categorySection-3j71bm:nth-child(2) .headerLabel-1g790w::after, 91 | [lang="en-US"] .categorySection-3j71bm:nth-child(2) .headerLabel-1g790w::after { 92 | content: "Recently Used"; 93 | color: var(--header-secondary); 94 | position: absolute; 95 | left: 30px; 96 | font-size: 12px; 97 | font-weight: 600; 98 | -webkit-transition: color .125s; 99 | transition: color .125s; 100 | } -------------------------------------------------------------------------------- /src/Popouts/events.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Popouts/events.css -------------------------------------------------------------------------------- /src/Popouts/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Popouts/home.css -------------------------------------------------------------------------------- /src/Popouts/inbox.css: -------------------------------------------------------------------------------- 1 | /* Inbox Button */ 2 | [data-list-item-id="guildsnav___inbox-button"] { 3 | height: 50px; 4 | border-radius: 50px; 5 | width: 50px; 6 | transition: border-radius 0.2s ease-in-out; 7 | } 8 | 9 | [data-list-item-id="guildsnav___inbox-button"]:focus:active, [data-list-item-id="guildsnav___inbox-button"]:hover, 10 | [data-list-item-id="guildsnav___inbox-button"]:active { 11 | border-radius: 17px !important; 12 | } -------------------------------------------------------------------------------- /src/Popouts/pins.css: -------------------------------------------------------------------------------- 1 | .button-3bklZh[aria-label="Pin Message"] path { 2 | d: path("M12 0c-5.522 0-10 4.395-10 9.815 0 5.505 4.375 9.268 10 14.185 5.625-4.917 10-8.68 10-14.185 0-5.42-4.478-9.815-10-9.815zm0 18c-4.419 0-8-3.582-8-8s3.581-8 8-8 8 3.582 8 8-3.581 8-8 8zm4-7h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z"); 3 | } 4 | .button-3bklZh[aria-label="Unpin Message"] path { 5 | d: path("M12 0c-5.522 0-10 4.395-10 9.815 0 5.505 4.375 9.268 10 14.185 5.625-4.917 10-8.68 10-14.185 0-5.42-4.478-9.815-10-9.815zm0 18c-4.419 0-8-3.582-8-8s3.581-8 8-8 8 3.582 8 8-3.581 8-8 8zm4-7h-8v-2h8v2z"); 6 | } -------------------------------------------------------------------------------- /src/Popouts/profile-large.css: -------------------------------------------------------------------------------- 1 | /* Center Mutal Buttons */ 2 | .tabBar-2hXqzU{ 3 | justify-content:center; 4 | } 5 | -------------------------------------------------------------------------------- /src/Popouts/profile-small.css: -------------------------------------------------------------------------------- 1 | @import "https://spinfish.github.io/css-snippets/snippets/filled-roles.css"; 2 | 3 | /* Backgrounds */ 4 | .aboutMeTitle-3pjiS7 { 5 | background: var(--background-secondary); 6 | border-radius: 5px; 7 | padding: 5px 10px 5px 10px; 8 | margin: auto auto 5px auto; 9 | } 10 | 11 | .userInfoSectionHeader-2mYYun { 12 | text-align: center; 13 | width: 132%; 14 | background: var(--background-secondary); 15 | border-radius: 5px; 16 | padding: 5px 10px 5px 10px; 17 | margin: auto auto 5px auto; 18 | } 19 | 20 | .userBio-2-tr00 { 21 | width: 132%; 22 | background: var(--background-tertiary); 23 | border-radius: 5px; 24 | padding: 5px 10px 5px 10px; 25 | margin: auto 10px 5px auto; 26 | } 27 | 28 | .aboutMeBody-1J8rhz { 29 | background: var(--background-tertiary); 30 | border-radius: 5px; 31 | padding: 5px 10px 5px 10px; 32 | margin: auto auto 5px auto; 33 | } 34 | 35 | .bodyTitle-2Az3VQ { 36 | background: var(--background-secondary); 37 | border-radius: 5px; 38 | padding: 5px 10px 5px 10px; 39 | margin: auto auto 5px auto; 40 | } 41 | 42 | [class*="rolesList-"] { 43 | background: var(--background-tertiary); 44 | border-radius: 5px; 45 | padding: 5px 10px 5px 10px; 46 | margin: auto auto 5px auto; 47 | } 48 | 49 | .note-Go5ZP2 { 50 | background: var(--background-tertiary); 51 | border-radius: 5px; 52 | padding: 5px 0px 0px 10px; 53 | margin: auto auto 0px auto; 54 | } 55 | 56 | .inputDefault-3FGxgL { 57 | background: var(--background-tertiary); 58 | border-radius: 5px; 59 | padding: 0px 10px 0px 10px; 60 | margin: auto auto 0px auto; 61 | } 62 | 63 | /* Bubble Roles */ 64 | :root { 65 | /** Number of role columns */ 66 | --roleslist-columns: 2; 67 | } 68 | 69 | [class*="rolesList-"] { 70 | display: grid; 71 | grid-template-columns: repeat(var(--roleslist-columns), minmax(0, 1fr)); 72 | background: var(--background-tertiary); 73 | padding: 12.5px; 74 | gap: 4.5px; 75 | border-radius: 8px; 76 | max-height: 150px; 77 | overflow: auto; 78 | } 79 | [class*="rolesList-"]::-webkit-scrollbar { 80 | width: 4.5px; 81 | } 82 | [class*="rolesList-"]::-webkit-scrollbar-thumb { 83 | border-radius: 8px; 84 | background-color: var(--background-modifier-hover); 85 | } 86 | [class*="rolesList-"] > [class*="role-"] { 87 | margin: 0; 88 | justify-content: center; 89 | } 90 | [class*="rolesList-"] [class*="roleCircle-"] { 91 | flex-shrink: 0; 92 | } 93 | [class*="rolesList-"] [class*="roleName-"] { 94 | margin: auto; 95 | } 96 | 97 | .headerTop-3GPUSF { 98 | height: 45px; 99 | margin-bottom: 10px; 100 | } 101 | .headerText-1-WmDq {transform: translateY(-10px);} 102 | .headerTop-3GPUSF, .headerTextNormal-Z8we9g, .customStatus-3XAoF9, .aboutMeTitle-3pjiS7{ 103 | display: flex; 104 | justify-content: center; 105 | text-align: center; 106 | } 107 | .avatarWrapperNormal-ahVUaC { 108 | position: absolute; 109 | left: 33%; 110 | } 111 | /* .profileBadges-2pItdR { 112 | display: flex; 113 | flex-direction: row; 114 | align-items: center; 115 | justify-content: center; 116 | max-height: 100px; 117 | transform: translateY(82px); 118 | position: absolute; 119 | } 120 | */ 121 | .userPopout-2j1gM4 .input-2g-os5, .bodyTitle-2Az3VQ, .marginBottom8-emkd0_.size14-3fJ-ot{ 122 | text-align: center; 123 | } 124 | 125 | /* Popout Outline */ 126 | .userPopout-2j1gM4 .banner-1YaD3N { 127 | position: absolute; 128 | width: calc(100% + 4px); 129 | height: calc(100% + 4px); 130 | top: -2px; 131 | left: -2px; 132 | background-size: calc(100% - 4px); 133 | background-position: center 2px; 134 | border-radius: 10px; 135 | } 136 | .userPopout-2j1gM4 .banner-1YaD3N::after { 137 | content: ''; 138 | display: block; 139 | background-color: inherit; 140 | border-top-left-radius: inherit; 141 | border-top-right-radius: inherit; 142 | width: 100%; 143 | height: 124px; 144 | clip-path: path("M 0 0 H 304 V 123 H 302 V 12 Q 302 2 292 2 H 12 Q 2 2 2 12 V 123 H 0 Z"); 145 | } 146 | .headerTop-3GPUSF, .body-2wLx-E, .footer-3naVBw { 147 | background-color: var(--background-floating) !important; 148 | } 149 | .avatarPositionNormal-2jWoC2 {top: 16px;} 150 | .avatarPositionNormal-2jWoC2+.headerTop-3GPUSF {padding-top: 119px;} 151 | .avatarPositionPremium-1zPBq9+.headerTop-3GPUSF {margin-top: 119px;} 152 | .avatarPositionNormal-2jWoC2+.headerTop-3GPUSF>.profileBadges-2pItdR {top: 75px;} 153 | 154 | /* Popout modal */ 155 | :root { 156 | --profile-border-width: 2px 157 | } 158 | .root-8LYsGj { 159 | padding: var(--profile-border-width); 160 | border-radius: 10px; 161 | } 162 | .topSection-13QKHs { 163 | margin-top: 239px; 164 | } 165 | .topSection-13QKHs .banner-1YaD3N { 166 | position: absolute; 167 | width: 100%; 168 | height: 100%; 169 | inset: 0; 170 | background-size: calc(100% - calc(var(--profile-border-width) * 2)); 171 | background-position: center var(--profile-border-width); 172 | z-index: -1; 173 | } 174 | .topSection-13QKHs .banner-1YaD3N::after { 175 | content: ''; 176 | margin: calc(var(--profile-border-width) - 2px); 177 | display: block; 178 | background-color: inherit; 179 | border-top-left-radius: inherit; 180 | border-top-right-radius: inherit; 181 | width: 100%; 182 | height: 244px; 183 | clip-path: path("M 0 0 V 12 H 2 Q 2 2 12 2 V 0 Z M 604.5 0 V 12 H 602.5 Q 602.5 2 592.5 2 V 0 Z"); 184 | } 185 | .header-S26rhB { 186 | top: -76px; 187 | } 188 | .body-1Ukv50 { 189 | border-radius: 0 0 8.5px 8.5px; 190 | } 191 | 192 | /* Unclamp the About Me section, so it's not limited to just 6 lines. (Before it'd cut off at 6 and add a ...) */ 193 | .clamped-2ZePhX{ 194 | --webkit-line-clamp: 190; /*Maximum amount of characters as new lines, unset just breaks links*/ 195 | max-height:112px; 196 | overflow-x: hidden; 197 | overflow-y:scroll; 198 | } 199 | .clamped-2ZePhX::-webkit-scrollbar { 200 | display: block; 201 | } 202 | 203 | .userPopout-2j1gM4 .bodyInnerWrapper-2bQs1k>h3:nth-last-of-type(1), 204 | .userPopout-2j1gM4 .note-Go5ZP2 { 205 | display:none; 206 | } -------------------------------------------------------------------------------- /src/Popouts/roles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Popouts/roles.css -------------------------------------------------------------------------------- /src/Popouts/rtc.css: -------------------------------------------------------------------------------- 1 | /* Better RTC Connection popout */ 2 | .layerContainer-2v_Sit .layer-2aCOJ3[style*="position: absolute; left: 100px;"] { 3 | left: 72px !important; 4 | } 5 | .container-1ILvLB { 6 | width: 240px; 7 | box-shadow: none; 8 | } 9 | .layerContainer-2v_Sit .layer-2aCOJ3[style*="position: absolute; left: 100px;"] .container-1ILvLB header { 10 | background-color: var(--toast-header); 11 | } 12 | .layerContainer-2v_Sit .layer-2aCOJ3[style*="position: absolute; left: 100px;"] .container-1ILvLB section { 13 | background-color: var(--deprecated-panel-background); 14 | } 15 | .container-1ILvLB section p:nth-of-type(1) { 16 | font-size: 0; 17 | } 18 | .container-1ILvLB section p:nth-of-type(2) { 19 | display: none; 20 | } 21 | .container-1ILvLB section strong { 22 | font-size: 14px; 23 | white-space: pre; 24 | } 25 | .container-1ILvLB section strong::before { 26 | font-weight: normal; 27 | } 28 | .container-1ILvLB section strong:nth-of-type(1)::before { 29 | content: 'Server: '; 30 | } 31 | .container-1ILvLB section strong:nth-of-type(2)::before { 32 | content: 'Average Ping: '; 33 | } 34 | .container-1ILvLB section strong:nth-of-type(3)::before { 35 | content: 'Last Ping: '; 36 | } 37 | .container-1ILvLB section strong:nth-of-type(4)::before { 38 | content: 'Packet Loss: '; 39 | } 40 | -------------------------------------------------------------------------------- /src/Popouts/rules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Popouts/rules.css -------------------------------------------------------------------------------- /src/Popouts/search.css: -------------------------------------------------------------------------------- 1 | @import url("https://nates-world-projects.github.io/Native/src/Custom/search-dms.css"); 2 | 3 | :root {--radius: 50px;} 4 | 5 | .searchBar-2aylmZ, .searchBar-jGtisZ, .colorDefault-CDqZdO { 6 | border-radius: var(--radius) !important; 7 | } 8 | .searchBar-jGtisZ, .colorDefault-CDqZdO { 9 | border-radius: var(--radius) !important; 10 | } 11 | .searchBox-pyIJJj, .colorDefault-CDqZdO { 12 | border-radius: var(--radius) !important; 13 | } 14 | 15 | .searchLearnMore-1gNL3A {display: none;} 16 | .searchIcon-1a1-yA, [class*="iconLayout"] { order: -1 } 17 | .searchBarComponent-3N7dCG { 18 | font-weight: 900 !important; 19 | } 20 | 21 | .searchBar-jGtisZ{ 22 | width: 28px; 23 | background-color:transparent; 24 | } 25 | 26 | .iconContainer-1RqWJj { 27 | transform: scale(1.2); 28 | } 29 | 30 | .iconContainer-1RqWJj path { 31 | fill: var(--interactive-normal); 32 | } 33 | 34 | .iconContainer-1RqWJj:hover path { 35 | fill: var(--interactive-active); 36 | } 37 | 38 | .focused-1xh-wG .searchBar-jGtisZ,.searchBar-jGtisZ:hover, .open-1F8u2c .searchBar-jGtisZ { 39 | width: 240px; 40 | background-color: var(--background-tertiary); 41 | } 42 | 43 | .search-39IXmY { 44 | order: -1 !important; 45 | } -------------------------------------------------------------------------------- /src/Popouts/slash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Popouts/slash.css -------------------------------------------------------------------------------- /src/Popouts/threads.css: -------------------------------------------------------------------------------- 1 | .container-1RZJZM {overflow: auto;} 2 | 3 | /* Resize Threads */ 4 | :root { 5 | --sidebar-width: 240px; /* change if your theme resizes the sidebar */ 6 | } 7 | .chat-2ZfjoI.threadSidebarOpen-1LSXvU { 8 | resize: horizontal; 9 | min-width: 400px; 10 | max-width: calc(100vw - var(--sidebar-width) - 72px - 400px); 11 | } 12 | .chat-2ZfjoI:not(.threadSidebarOpen-1LSXvU) { 13 | width: unset !important; 14 | flex: 1 1 auto; 15 | } 16 | .threadSidebar-1o3BTy { 17 | width: unset; 18 | flex: 1 1 auto; 19 | } -------------------------------------------------------------------------------- /src/Popouts/topic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Popouts/topic.css -------------------------------------------------------------------------------- /src/Popouts/upload.css: -------------------------------------------------------------------------------- 1 | /* ╔═══════════════════════════════════════════════════════════════════════════════════════════════[─]═[□]═[×]═╗ */ 2 | /* ║ Upload ║ */ 3 | /* ╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */ 4 | 5 | /* Change File Upload Button */ 6 | .tipIcon-24kLNQ path, 7 | .chatContent-3KubbW .attachButtonPlus-3IYelE { 8 | d: path("M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"); 9 | } 10 | 11 | .attachButtonPlay-1ATmb5 { 12 | display: none; 13 | } 14 | 15 | .channelAttachmentArea-HwpkuQ { 16 | background: var(--background-secondary) !important; 17 | left: 10px; 18 | margin-top: 10px; 19 | border-radius: 10px; 20 | } 21 | 22 | .image-1091CL { 23 | border-radius: 10px !important; 24 | background: var(--background-primary); 25 | } 26 | 27 | .upload-vLbqu- { 28 | border-radius: 10px !important; 29 | background: var(--background-primary); 30 | margin-left: 10px 31 | } -------------------------------------------------------------------------------- /src/Popouts/voice.css: -------------------------------------------------------------------------------- 1 | /*Call dock*/ 2 | .wrapper-3t3Yqv { 3 | background-color: var(--background-secondary); 4 | border-radius: 25px; 5 | padding: 0px; 6 | } 7 | 8 | .colorable-3rVGna.white-11auuQ, 9 | .colorable-3rVGna.white-11auuQ .centerIcon-JYpTUi { 10 | color: currentColor; 11 | } 12 | 13 | .colorable-3rVGna.primary-3NQg8g, 14 | .colorable-3rVGna.primary-3NQg8g.active-3D763s, 15 | .colorable-3rVGna.primary-3NQg8g:hover, 16 | .colorable-3rVGna.white-11auuQ, 17 | .centerButton-1IShs7, 18 | .colorable-3rVGna.white-11auuQ.active-3D763s, 19 | .colorable-3rVGna.white-11auuQ:hover, 20 | .colorable-3rVGna.red-3T8maV { 21 | background: none !important; 22 | } 23 | 24 | .bottomControls-31YuPK .controlButton-2PMNom.red-3T8maV path { 25 | fill: #ED4245; 26 | } 27 | 28 | .iconWrapper-2awDjA.clickable-ZD7xvu[aria-label="Start Voice Call"] path { 29 | fill: #3BA55C; 30 | } 31 | 32 | .button-12Fmur[aria-label="Disconnect"] { 33 | color: #ed4245; 34 | } 35 | 36 | .button-12Fmur[aria-label="Disconnect"]:hover { 37 | color: #ED4245; 38 | } 39 | 40 | .button-1EGGcP[aria-label="Open Soundboard"] { 41 | color: #5865f2; 42 | } 43 | 44 | .button-1EGGcP[aria-label="Open Soundboard"]:hover { 45 | color: #5865f2; 46 | } 47 | 48 | .button-1EGGcP[aria-label="Share Your Screen"] { 49 | color: #43b581; 50 | } 51 | 52 | .button-1EGGcP[aria-label="Share Your Screen"]:hover { 53 | color: #43b581; 54 | } 55 | 56 | .pictureInPictureWindow-3ms5Zy{ 57 | width: 440px; 58 | height: 248px; 59 | opacity: 60%; 60 | } 61 | 62 | .pictureInPictureWindow-3ms5Zy:hover{ 63 | opacity: 100%; 64 | } 65 | 66 | /* Center Voice Users */ 67 | .voiceUsers-25eR9q { 68 | width: 100%; /* probably not needed but i'm adding this for good measure */ 69 | display: flex; 70 | justify-content: space-evenly; 71 | grid-template-columns: none; /* also for good measure */ 72 | } -------------------------------------------------------------------------------- /src/Variables/Addons/Chat-Bubbles/left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/Chat-Bubbles/left.css -------------------------------------------------------------------------------- /src/Variables/Addons/Chat-Bubbles/right.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/Chat-Bubbles/right.css -------------------------------------------------------------------------------- /src/Variables/Addons/avatar-shapes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/avatar-shapes.css -------------------------------------------------------------------------------- /src/Variables/Addons/blurple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/blurple.css -------------------------------------------------------------------------------- /src/Variables/Addons/button-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/button-icons.css -------------------------------------------------------------------------------- /src/Variables/Addons/category-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/category-icons.css -------------------------------------------------------------------------------- /src/Variables/Addons/category-names.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/category-names.css -------------------------------------------------------------------------------- /src/Variables/Addons/channel-banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/channel-banners.css -------------------------------------------------------------------------------- /src/Variables/Addons/channel-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/channel-buttons.css -------------------------------------------------------------------------------- /src/Variables/Addons/channel-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/channel-icons.css -------------------------------------------------------------------------------- /src/Variables/Addons/channel-names.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/channel-names.css -------------------------------------------------------------------------------- /src/Variables/Addons/codeblock-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/codeblock-icons.css -------------------------------------------------------------------------------- /src/Variables/Addons/contextmenu-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/contextmenu-icons.css -------------------------------------------------------------------------------- /src/Variables/Addons/discolored.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/discolored.css -------------------------------------------------------------------------------- /src/Variables/Addons/events-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/events-grid.css -------------------------------------------------------------------------------- /src/Variables/Addons/friend-banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/friend-banners.css -------------------------------------------------------------------------------- /src/Variables/Addons/friends-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/friends-grid.css -------------------------------------------------------------------------------- /src/Variables/Addons/games-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/games-grid.css -------------------------------------------------------------------------------- /src/Variables/Addons/guild-progressbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/guild-progressbars.css -------------------------------------------------------------------------------- /src/Variables/Addons/link-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/link-buttons.css -------------------------------------------------------------------------------- /src/Variables/Addons/link-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/link-text.css -------------------------------------------------------------------------------- /src/Variables/Addons/perm-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/perm-colors.css -------------------------------------------------------------------------------- /src/Variables/Addons/plugin-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/plugin-grid.css -------------------------------------------------------------------------------- /src/Variables/Addons/pop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/pop.css -------------------------------------------------------------------------------- /src/Variables/Addons/pronoun-db.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/pronoun-db.css -------------------------------------------------------------------------------- /src/Variables/Addons/radial-statuses.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/radial-statuses.css -------------------------------------------------------------------------------- /src/Variables/Addons/server-banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/server-banners.css -------------------------------------------------------------------------------- /src/Variables/Addons/server-icons.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --Discord-Townhall: url(""); 3 | --Discord-API: url(""); 4 | --Discord-JS: url(""); 5 | --Discord-Python: url(""); 6 | --Discord-Games: url(""); 7 | --Project-Blurple: url(""); 8 | --Top-gg: url(""); 9 | --Discord-Boats: url(""); 10 | --Discord-Bots: url(""); 11 | --Sebis-Townhall: url(""); 12 | --Discord-Owners: url(""); 13 | --Owners-Hub: url(""); 14 | --Displace: url(""); 15 | --Hypesquad: url(""); 16 | --Hypesquad-Balance: url(""); 17 | --Hypesquad-Brillance: url(""); 18 | --Hypesquad-Bravery: url(""); 19 | } -------------------------------------------------------------------------------- /src/Variables/Addons/settings-popouts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/settings-popouts.css -------------------------------------------------------------------------------- /src/Variables/Addons/status-shapes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/status-shapes.css -------------------------------------------------------------------------------- /src/Variables/Addons/theme-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/theme-grid.css -------------------------------------------------------------------------------- /src/Variables/Addons/thread-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/thread-icons.css -------------------------------------------------------------------------------- /src/Variables/Addons/user-tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/Variables/Addons/user-tags.css -------------------------------------------------------------------------------- /src/source.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nates-World-Projects/Native/f4109d7c95738a07130a85038eb2ebce4d2ace8d/src/source.scss -------------------------------------------------------------------------------- /theme.css: -------------------------------------------------------------------------------- 1 | @import url("https://Nates-World-Projects.github.io/Native/src/source.css"); 2 | @import url("https://nates-world-projects.github.io/Native/Modules/Addons/Emoji-Replace/joypixels.css"); --------------------------------------------------------------------------------