Rhino 7 print preview in viewport

Hi,
I have recently noticet this awesome macro I have put under Ctrl+Shift+P:
!_-PrintDisplay _State _Toggle _EnterEnd
that toggles between display color and print color of lines for previewing my drawings. Problem is if I use a darker background, that it stays the same making the print colors hardly visible. I have tried combinig it with this:


btu can´t find the command to enter this setting.

Would any of you have a tip how to pair this with the macro?

This is what I use: (R8 - R7 might be slightly different)

_NoEcho
_SetRedrawOff
_PrintDisplay
  _Color=Print
  _LayoutLinetypes=On
  _State=On
  _EnterEnd
-_Options
  _Appearance
    _Colors
      _Custom
        _Layout
          _LayoutColor=255,255,255
        _Enter
        _Viewport
          _Background 255,255,255
  _EnterEnd
-_GradientView
  _State=Off
  _EnterEnd
_SetRedrawOn
_NoEcho
_SetRedrawOff
_PrintDisplay
  _State=Off
  _EnterEnd
-_Options
  _Appearance
    _Colors
      _Custom
        _Layout
          _LayoutColor=0,0,0
        _Enter
        _Viewport
          _Background 0,0,0
  _EnterEnd
-_GradientView
  _State=Off
  _EnterEnd
_SetRedrawOn

Yeah, I have something similar. But it lacks the toggle option. Would be nice since Rhino 8 and 9 are leaning to drafting if there was something like “paper color” setting and _PrintDisplay set the layout frame to that color.