mirror of
https://github.com/KrstlSkll69/vc-snippets.git
synced 2025-04-19 20:55:22 +02:00
Add Maxwell, Add joke css snippet, update readme
This commit is contained in:
parent
21f8b54c7d
commit
6f1478d9e8
3 changed files with 141 additions and 8 deletions
15
OtherStuff/Maxwell.css
Normal file
15
OtherStuff/Maxwell.css
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
/**
|
||||||
|
* @name Maxwell watchs your soul
|
||||||
|
* @author jaxorssmthng, krystalskullofficial
|
||||||
|
* @version 2.0
|
||||||
|
* @description cat (it watches your soul)
|
||||||
|
*/
|
||||||
|
[class^="panels_"]::before {
|
||||||
|
content: "";
|
||||||
|
width: 30px;
|
||||||
|
height: 47px;
|
||||||
|
left: 200px;
|
||||||
|
margin-top: -48px;
|
||||||
|
position: absolute;
|
||||||
|
background-image: url('https://cdn.discordapp.com/emojis/1086739148582436964.webp?size=48&quality=lossless');
|
||||||
|
}
|
96
OtherStuff/RecolorAllTabs.css
Normal file
96
OtherStuff/RecolorAllTabs.css
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
/**
|
||||||
|
* @name RecolorAllTabs
|
||||||
|
* @author krystalskullofficial
|
||||||
|
* @version 2.0
|
||||||
|
* @description Recolors the tabs to make it like the ADDFRIEND one
|
||||||
|
*/
|
||||||
|
/*-----------*/
|
||||||
|
[data-tab-id=ONLINE]{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tab-id=ONLINE]:hover{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=ONLINE][aria-selected=true]{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=ONLINE][aria-selected=true]:hover{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
/*-----------*/
|
||||||
|
[data-tab-id=ALL]{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tab-id=ALL]:hover{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=ALL][aria-selected=true]{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=ALL][aria-selected=true]:hover{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
/*-----------*/
|
||||||
|
[data-tab-id=PENDING]{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tab-id=PENDING]:hover{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=PENDING][aria-selected=true]{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=PENDING][aria-selected=true]:hover{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
/*-----------*/
|
||||||
|
[data-tab-id=IMPLICIT]{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tab-id=IMPLICIT]:hover{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=IMPLICIT][aria-selected=true]{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=IMPLICIT][aria-selected=true]:hover{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
/*-----------*/
|
||||||
|
[data-tab-id=BLOCKED]{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=BLOCKED]:hover{
|
||||||
|
background-color: var(--status-positive-background) !important;
|
||||||
|
color: var(--status-positive-text) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=BLOCKED][aria-selected=true]{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
[data-tab-id=BLOCKED][aria-selected=true]:hover{
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: var(--text-positive) !important;
|
||||||
|
}
|
||||||
|
/*-----------*/
|
38
README.md
38
README.md
|
@ -8,10 +8,11 @@ Important -
|
||||||
4. People have been asking for this on Vendetta/Pyoncord(Bunny) and for those people id like to point you too [NexxUtils](https://bunny.nexpid.xyz/nexxutils/)
|
4. People have been asking for this on Vendetta/Pyoncord(Bunny) and for those people id like to point you too [NexxUtils](https://bunny.nexpid.xyz/nexxutils/)
|
||||||
- About Enmity - I dont know about nor do i care about Enmity
|
- About Enmity - I dont know about nor do i care about Enmity
|
||||||
5. I have seen and have different install of Discord to play around on the `Desktop Visual Refresh` for discord but due to the fact that they are still heavily making changes to it. Im going to wait until this actually comes out to update my snippets for it... Soo they might work or they might not work
|
5. I have seen and have different install of Discord to play around on the `Desktop Visual Refresh` for discord but due to the fact that they are still heavily making changes to it. Im going to wait until this actually comes out to update my snippets for it... Soo they might work or they might not work
|
||||||
|
6. MaxWell is joke snippet ~ cant not guarantee that he wont actually steal your soul
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
1st: NSFW Channel Tag -
|
1st: NSFW Channel Tag ~
|
||||||
Adds a small RED text box that says NSFW next to those channels and also colors the red warning icon.
|
Adds a small RED text box that says NSFW next to those channels and also colors the red warning icon.
|
||||||
|
|
||||||
BEFORE AND AFTER:
|
BEFORE AND AFTER:
|
||||||
|
@ -25,7 +26,7 @@ https://krstlskll69.github.io/vc-snippets/NSFWtag.css
|
||||||
```
|
```
|
||||||
----
|
----
|
||||||
|
|
||||||
2nd: NSFW Channel Recolor -
|
2nd: NSFW Channel Recolor ~
|
||||||
Recolors the triangle of 'NSFW' channels.
|
Recolors the triangle of 'NSFW' channels.
|
||||||
|
|
||||||
BEFORE AND AFTER:
|
BEFORE AND AFTER:
|
||||||
|
@ -39,7 +40,7 @@ https://krstlskll69.github.io/vc-snippets/NSFWChannelRecolor.css
|
||||||
```
|
```
|
||||||
----
|
----
|
||||||
|
|
||||||
3rd: Private Channel Recolor -
|
3rd: Private Channel Recolor ~
|
||||||
Recolors the lock icon of a private channel.
|
Recolors the lock icon of a private channel.
|
||||||
|
|
||||||
BEFORE AND AFTER:
|
BEFORE AND AFTER:
|
||||||
|
@ -53,7 +54,7 @@ https://krstlskll69.github.io/vc-snippets/PrivateChannelRecolor.css
|
||||||
```
|
```
|
||||||
----
|
----
|
||||||
|
|
||||||
4th: Channels & Roles Recolor -
|
4th: Channels & Roles Recolor ~
|
||||||
Recolors the icon on Channel & Role tab so they are easier to see/notice
|
Recolors the icon on Channel & Role tab so they are easier to see/notice
|
||||||
|
|
||||||
BEFORE AND AFTER:
|
BEFORE AND AFTER:
|
||||||
|
@ -67,7 +68,7 @@ https://krstlskll69.github.io/vc-snippets/Channel&RolesRecolor.css
|
||||||
```
|
```
|
||||||
----
|
----
|
||||||
|
|
||||||
5th: Stage Icon Recolor -
|
5th: Stage Icon Recolor ~
|
||||||
Recolors the icon For Stages so they are easier to see/notice
|
Recolors the icon For Stages so they are easier to see/notice
|
||||||
|
|
||||||
BEFORE AND AFTER:
|
BEFORE AND AFTER:
|
||||||
|
@ -81,7 +82,7 @@ https://krstlskll69.github.io/vc-snippets/StageRecolor.css
|
||||||
```
|
```
|
||||||
----
|
----
|
||||||
|
|
||||||
6th: IconRecolors -
|
6th: IconRecolors ~
|
||||||
Recolors all the icons so that you don't need 4 different snippets for it.
|
Recolors all the icons so that you don't need 4 different snippets for it.
|
||||||
|
|
||||||
*(doesnt include 'Nsfw' tag)*
|
*(doesnt include 'Nsfw' tag)*
|
||||||
|
@ -90,7 +91,7 @@ https://krstlskll69.github.io/vc-snippets/IconRecolors.css
|
||||||
```
|
```
|
||||||
----
|
----
|
||||||
|
|
||||||
7th: "Add Friends" tab recolour - Recolours the "Add Friend" tab so it matchs with the tabs
|
7th: "Add Friends" tab recolour ~ Recolours the "Add Friend" tab so it matchs with the tabs
|
||||||
_Note: this snippet requires Vencord's ["ThemeAttributes"](https://vencord.dev/plugins/ThemeAttributes) plugin_
|
_Note: this snippet requires Vencord's ["ThemeAttributes"](https://vencord.dev/plugins/ThemeAttributes) plugin_
|
||||||
|
|
||||||
BEFORE AND AFTER:
|
BEFORE AND AFTER:
|
||||||
|
@ -107,7 +108,7 @@ https://krstlskll69.github.io/vc-snippets/OtherStuff/RecolorAddFriendsTab.css
|
||||||
```
|
```
|
||||||
---
|
---
|
||||||
|
|
||||||
8th: ShowBoth@andStatus - This Snippet shows both your discord username and status at the same time
|
8th: ShowBoth@andStatus ~ This Snippet shows both your discord username and status at the same time
|
||||||
|
|
||||||
BEFORE AND AFTER:
|
BEFORE AND AFTER:
|
||||||
(hopfully you can tell which is which)
|
(hopfully you can tell which is which)
|
||||||
|
@ -118,6 +119,27 @@ BEFORE AND AFTER:
|
||||||
https://krstlskll69.github.io/vc-snippets/OtherStuff/NewBoth.css
|
https://krstlskll69.github.io/vc-snippets/OtherStuff/NewBoth.css
|
||||||
```
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
9th: All Tabs ~ Recolours the tabs to make them match the "add Friend" one
|
||||||
|
_Note: this snippet requires Vencord's ["ThemeAttributes"](https://vencord.dev/plugins/ThemeAttributes) plugin_
|
||||||
|
|
||||||
|
BEFORE AND AFTER:
|
||||||
|
(hopfully you can tell which is which)
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
```
|
||||||
|
https://krstlskll69.github.io/vc-snippets/OtherStuff/RecolorAllTabs.css
|
||||||
|
```
|
||||||
|
---
|
||||||
|
10th: cat (it watches your soul) ~
|
||||||
|
_Note: this snippet requires Vencord's ["ThemeAttributes"](https://vencord.dev/plugins/ThemeAttributes) plugin_
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
```
|
||||||
|
https://krstlskll69.github.io/vc-snippets/OtherStuff/Maxwell.css
|
||||||
|
```
|
||||||
---
|
---
|
||||||
|
|
||||||
Disclaimer: While yes my CSS snippets are in [Faf4's ThemeLibrary](https://github.com/Faf4a/ThemeLibrary) they use `@imports` that lead here, so i cant guarantee no problems/issues with them
|
Disclaimer: While yes my CSS snippets are in [Faf4's ThemeLibrary](https://github.com/Faf4a/ThemeLibrary) they use `@imports` that lead here, so i cant guarantee no problems/issues with them
|
||||||
|
|
Loading…
Add table
Reference in a new issue