Compare commits
2 commits
094434bf57
...
4775a1dcea
Author | SHA1 | Date | |
---|---|---|---|
4775a1dcea | |||
59d56f388e |
5 changed files with 1920 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/node_modules/
|
1
.stylelintrc.json
Normal file
1
.stylelintrc.json
Normal file
|
@ -0,0 +1 @@
|
|||
{ "extends": ["stylelint-config-standard"] }
|
39
Steam.theme.css
Normal file
39
Steam.theme.css
Normal 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
1860
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
19
package.json
Normal file
19
package.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue