Updated some colors
This commit is contained in:
8
.idea/.gitignore
generated
vendored
Normal file
8
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
9
.idea/hearty-stream-elements-chat-widget.iml
generated
Normal file
9
.idea/hearty-stream-elements-chat-widget.iml
generated
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
6
.idea/misc.xml
generated
Normal file
6
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectRootManager">
|
||||||
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/hearty-stream-elements-chat-widget.iml" filepath="$PROJECT_DIR$/.idea/hearty-stream-elements-chat-widget.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
@@ -1,11 +1,44 @@
|
|||||||
/* Copyright (C) 2023 Max @sigmacw_ and Matt @mattsquare_.
|
/* Copyright (C) 2023 Max @sigmacw_ and Matt @mattsquare_.
|
||||||
*
|
*
|
||||||
* You may not distribute this code without obtaining explicit permission
|
* You may not distribute this code without obtaining explicit permission
|
||||||
* from Max @sigmacw_ and Matt @mattsquare_.
|
* from Max @sigmacw_ and Matt @mattsquare_.
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
:root {
|
||||||
|
/* On streamer message */
|
||||||
|
--rouded-corners-and-heart-next-to-username-color: #FFDEE6;
|
||||||
|
--top-right-heart-and-bottom-left-heart-color: #FFDEE6;
|
||||||
|
--top-and-bottom-border-lines-color: #FFDEE6;
|
||||||
|
|
||||||
|
/* Both streamer and non-streamer messages */
|
||||||
|
--background-gradient-top-color: #491824;
|
||||||
|
--background-gradient-bottom-color: #67192C;
|
||||||
|
--message-text-color: #FFAEC2;
|
||||||
|
--mod-icon-background-color: #FFDEE6;
|
||||||
|
--username-bubble-background-color: #FFDEE6;
|
||||||
|
--username-bubble-text-color: #FF4976;
|
||||||
|
|
||||||
|
/* On non-streamer messages */
|
||||||
|
--right-border-color: #FF4976;
|
||||||
|
--bottom-border-color: #FF4976;
|
||||||
|
--top-border-color: #FF4976;
|
||||||
|
--top-right-border-piece-color: #FF4976;
|
||||||
|
|
||||||
|
/* Event bubble */
|
||||||
|
--event-background-gradient-top-color: #FF5F84;
|
||||||
|
--event-background-gradient-bottom-color: #FF4976;
|
||||||
|
--event-right-border-color: #FFAEC2;
|
||||||
|
--event-icon-background-color: #FFDEE6;
|
||||||
|
--event-text-color: #ffffff;
|
||||||
|
--#FFAEC2;
|
||||||
|
|
||||||
|
/* Unknowns */
|
||||||
|
--unknown-color-1: #00FFFF; /* original value: #FF4976; */
|
||||||
|
--unknown-color-2: #009999; /* original value: #FF4976; */
|
||||||
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: 'Quicksand';
|
font-family: 'Quicksand';
|
||||||
letter-spacing: 2px;
|
letter-spacing: 2px;
|
||||||
@@ -44,12 +77,12 @@ p {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.white-border {
|
.white-border {
|
||||||
background: #FFDEE6 !important;
|
background: var(--top-and-bottom-border-lines-color) !important;
|
||||||
stroke: #FFDEE6 !important;
|
stroke: var(--rouded-corners-and-heart-next-to-username-color) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.white-fill {
|
.white-fill {
|
||||||
fill: #FFDEE6 !important;
|
fill: var(--top-right-heart-and-bottom-left-heart-color) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-container {
|
.main-container {
|
||||||
@@ -87,10 +120,10 @@ p {
|
|||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 16px 32px;
|
padding: 16px 32px;
|
||||||
background: linear-gradient(to bottom, #491824, #67192C);
|
background: linear-gradient(to bottom, var(--background-gradient-top-color), var(--background-gradient-bottom-color));
|
||||||
color: #FFAEC2;
|
color: var(--message-text-color);
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
border: solid 4px #FF4976;
|
border: solid 4px var(--right-border-color);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
@@ -175,14 +208,14 @@ p {
|
|||||||
|
|
||||||
.bottom-border .separator-1 {
|
.bottom-border .separator-1 {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: #FF4976;
|
background: var(--unknown-color-1);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-border .separator-2 {
|
.bottom-border .separator-2 {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: #FF4976;
|
background: var(--bottom-border-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-right: 16px;
|
margin-right: 16px;
|
||||||
@@ -201,7 +234,7 @@ p {
|
|||||||
min-width: 35px;
|
min-width: 35px;
|
||||||
min-height: 35px;
|
min-height: 35px;
|
||||||
display: flex;
|
display: flex;
|
||||||
background: #FFDEE6;
|
background: var(--mod-icon-background-color);
|
||||||
border-radius: 64px;
|
border-radius: 64px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -212,10 +245,10 @@ p {
|
|||||||
|
|
||||||
.username {
|
.username {
|
||||||
padding: 6px 32px;
|
padding: 6px 32px;
|
||||||
background: #FFDEE6;
|
background: var(--username-bubble-background-color);
|
||||||
border-radius: 64px;
|
border-radius: 64px;
|
||||||
display: flex;
|
display: flex;
|
||||||
color: #FF4976;
|
color: var(--username-bubble-text-color);
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
max-width: 40%;
|
max-width: 40%;
|
||||||
@@ -231,7 +264,7 @@ p {
|
|||||||
width: 4px;
|
width: 4px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
min-width: 4px;
|
min-width: 4px;
|
||||||
background: #FF4976;
|
background: var(--unknown-color-2);
|
||||||
border-radius: 64px;
|
border-radius: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -256,14 +289,14 @@ p {
|
|||||||
|
|
||||||
.top-border .separator-1 {
|
.top-border .separator-1 {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: #FF4976;
|
background: var(--top-border-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-border .separator-2 {
|
.top-border .separator-2 {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: #FF4976;
|
background: var(--top-right-border-piece-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
@@ -271,7 +304,7 @@ p {
|
|||||||
/* ALERT STYLING */
|
/* ALERT STYLING */
|
||||||
|
|
||||||
.alert-wrap {
|
.alert-wrap {
|
||||||
background: linear-gradient(to top, #FF5F84, #FF4976);
|
background: linear-gradient(to top, var(--event-background-gradient-top-color), var(--event-background-gradient-bottom-color));
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -279,7 +312,7 @@ p {
|
|||||||
padding: 24px 32px;
|
padding: 24px 32px;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border: solid 4px #FFAEC2;
|
border: solid 4px var(--event-right-border-color);
|
||||||
transform: scaleY(0);
|
transform: scaleY(0);
|
||||||
transform-origin: bottom left;
|
transform-origin: bottom left;
|
||||||
animation: scaleIn 0.5s ease 0.2s forwards;
|
animation: scaleIn 0.5s ease 0.2s forwards;
|
||||||
@@ -323,7 +356,7 @@ p {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
background: #FFDEE6;
|
background: var(--event-icon-background-color);
|
||||||
border-radius: 64px;
|
border-radius: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -332,7 +365,7 @@ p {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-message > p {
|
.alert-message > p {
|
||||||
color: white;
|
color: var(--event-text-color);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -406,7 +439,7 @@ p {
|
|||||||
|
|
||||||
.alert-top-border .separator-1 {
|
.alert-top-border .separator-1 {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: #FFAEC2;
|
background: var(--event-top-left-border-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 25%;
|
width: 25%;
|
||||||
margin-left: 16px;
|
margin-left: 16px;
|
||||||
@@ -414,14 +447,14 @@ p {
|
|||||||
|
|
||||||
.alert-top-border .separator-2 {
|
.alert-top-border .separator-2 {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: #FFAEC2;
|
background: var(--event-top-middle-border-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert-top-border .separator-3 {
|
.alert-top-border .separator-3 {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: #FFAEC2;
|
background: var(--event-top-right-border-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 25%;
|
width: 25%;
|
||||||
margin-right: 16px;
|
margin-right: 16px;
|
||||||
@@ -92,8 +92,7 @@
|
|||||||
"label": "Minimum cheers",
|
"label": "Minimum cheers",
|
||||||
"value": 0,
|
"value": 0,
|
||||||
"group": "Cheers"
|
"group": "Cheers"
|
||||||
},
|
},
|
||||||
|
|
||||||
"testMessage": {
|
"testMessage": {
|
||||||
"type": "button",
|
"type": "button",
|
||||||
"label": "Test broadcaster message",
|
"label": "Test broadcaster message",
|
||||||
@@ -118,14 +117,12 @@
|
|||||||
"value": "Test",
|
"value": "Test",
|
||||||
"group": "Debug"
|
"group": "Debug"
|
||||||
},
|
},
|
||||||
|
|
||||||
"testMessageText": {
|
"testMessageText": {
|
||||||
"label": "Message content",
|
"label": "Message content",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"value": "Test",
|
"value": "Test",
|
||||||
"group": "Debug"
|
"group": "Debug"
|
||||||
},
|
},
|
||||||
|
|
||||||
"testMessage3": {
|
"testMessage3": {
|
||||||
"type": "button",
|
"type": "button",
|
||||||
"label": "Test regular message",
|
"label": "Test regular message",
|
||||||
Reference in New Issue
Block a user