hi! i changed the color of the main passages of my story in the css, but i wanted to know if it was possible to have certain lines be different colors (i have five character that talk, and i would like to make them have different colors for their spoken lines so it's easy to keep track of who is talking).
what i have in my css is below:
@import url(https://fonts.googleapis.com/css?family=Share+Tech" rel="stylesheet);
.purple tw-passage
{
color: 960BFC;
}
body, tw-story
{
font-family: Lora, serif;
font-size: 18px;
background-color: #E5AD00;
}
tw-passage
{
color: #4F2B00;
}
and in the actual scene:
<span class='purple'> test </span>
is this possible to do? am i doing something wrong?
thanks!