Compare commits

...

2 commits

Author SHA1 Message Date
4775a1dcea
added the steam theme
Some checks failed
Lint CSS / Lint CSS (push) Failing after 7s
2024-02-15 16:55:43 -05:00
59d56f388e
set up stylelint in my vscode 2024-02-15 12:43:01 -05:00
5 changed files with 1920 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/node_modules/

1
.stylelintrc.json Normal file
View file

@ -0,0 +1 @@
{ "extends": ["stylelint-config-standard"] }

39
Steam.theme.css Normal file
View file

@ -0,0 +1,39 @@
/* stylelint-disable selector-class-pattern */
/**
* @name Steam
* @author maenDisease
* @version 1.0.0
* @description Steam UI on Discord.
* @source https://github.com/maenDisease/Steam
* @invite BShu37e4jg
* @website https://maendisease.github.io/
* @authorId 678469587444170762
*/
@import url('https://maendisease.github.io/Steam/Steam.css');
:root {
--hue-shift: 0;
--content-width: 100%;
--message-width: 100%;
--server-size: 36px;
--custom-font: gg sans;
--custom-font-code: monospace;
}
/* Any custom CSS below here */
#app-mount .message__80c10 {
background: hsl(calc(var(--accent-hue) + 9), calc(var(--saturation-factor, 1) * 35.4%), 19.4%, 0.8);
border: 0;
box-shadow: 0 0 0;
margin: 0 16px;
margin-bottom: 1px;
max-width: var(--message-width);
}
.header__39b23 {
opacity: 1;
}

1860
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "vencordthemes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://www.coastalcommits.com/SeaswimmerTheFsh/VencordThemes"
},
"author": "SeaswimmerTheFsh",
"license": "ISC",
"devDependencies": {
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0"
}
}