Twine

How do I set a Variable, or a key?
(set: $var to 1)

How do I make a condition, open a door?

(if: $var is 1)[ [[open door]] ]

How do I make a condition, open a door, but call the text something different?
(if: $var is 1)[ [[open door|Green Door is open]] ]

How do I stylize the text inside a individual story block?
(text-style: "blur")[Testing my style]

How to change the background of a individual passage?
between the tags


<style>
tw-story {
background-color: red;
}
</style>

Color Palette

https://colorhunt.co/

https://color.adobe.com/create/color-wheel

 

Import a photo:

<img src= "link to the image">


<style> img{
max-width: 100%
max-height:100%;
}