Your CSS example from your other question was...
body {
background-color: #F5EE20;
}
tw-passage {
color: #5B99FF;
}
tw-link {
color: #0000FF;
}
Chapel explained that Harlowe 2,x sets it;s default background-color (and foreground color) on the tw-story element, instead of the body element. This means that the CSS you place within your project's Story Stylesheet area should look more like the following,
tw-story {
background-color: #F5EE20;
}
tw-passage {
color: #5B99FF;
}
tw-link {
color: #0000FF;
}
.. or even like the following if you want the foreground color to effect the whole of the story instead of just where the passage contents is displayed.
tw-story {
background-color: #F5EE20;
color: #5B99FF;
}
tw-link {
color: #0000FF;
}