Theme to make FoldingText look like WriteRoom

After installing this theme FoldingText should look a lot like WriteRoom:

@inkColor: hsl(hue(green), saturation(green), 30%);
@paperColor: mix(black, white, 90%);
@deskColor: mix(black, white, 90%);
@indicatedColor: @inkColor;
@selectionBackgroundColor: mix(@textColor, @paperColor, 20%);
@focusedSelectionBackgroundColor: mix(@textColor, @paperColor, 25%);
@codeblockBackgroundColor: fadeout(@textColor, 85%);

::-webkit-scrollbar {
  width:15px;
}

::-webkit-scrollbar-thumb {
  background-color: mix(@textColor, @paperColor, 25%);
  border: 3px solid transparent;
  border-radius: 9px;
  background-clip: content-box;
}