Skip to content

Commit

Permalink
add streameth stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexNi245 committed Nov 3, 2023
1 parent 542ef90 commit 0896109
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/billboard-widget/buildCss.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ const esbuild = require('esbuild');

async function build() {
await esbuild.build({
entryPoints: ['src/styles/app.pcss', 'src/styles/classic.pcss'],
entryPoints: [
'src/styles/app.pcss',
'src/styles/classic.pcss',
'src/styles/streameth.pcss',
],
outdir: 'dist/styles/',
minify: true,
bundle: true,
Expand Down
19 changes: 19 additions & 0 deletions packages/billboard-widget/src/styles/streameth.pcss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.common-styles {
--mainBg: var(--bg-base);
--messageBg: rgb(0 0 0 / 0.2);
--messageBgOwn: #dfdfdf;
--messageBg25: #fff;
--borderInputColor: #e0e0e0;
--inputBg: #fff;
--textColorPrimary: #ffffff;
--textColorSecondary: #808080;
--borderRadiusS: 0;
--borderRadiusM: 0;
--borderRadiusL: 0;
--scrollbar-background : var(--colors-accent);
}

.styled-scrollbars {
--scrollbar-foreground: var(--colors-accent);
--scrollbar-background: #f8f8f8;
}

0 comments on commit 0896109

Please sign in to comment.