Справка LibreOffice 24.8
Returns the Green component of the given composite color code.
Green (Цвет As Long)
Integer
Color: Long integer expression that specifies a composite color code for which to return the Green component.
Sub ExampleColor
Dim lVar As Long
lVar = rgb(128,0,200)
msgbox "Этот цвет " & lVar & " содержит компоненты:" & Chr(13) &_
"красного= " & red(lVar) & Chr(13)&_
"зелёного= " & green(lVar) & Chr(13)&_
"синего= " & Blue(lVar) & Chr(13) , 64,"цветов"
End Sub