What is the color & transparency of the topbar?

Hi!

I’m trying to find the color & transparency of the top bar to make a GUI match with it.
What are the topbar’s settings?

Thanks in advance,
Mehdi

4 Likes

Color3.fromRGB(31,31,31) with transparency of 0.5

7 Likes

They are set in a module! Here are the lines that you might need:

TopbarConstants.TOPBAR_BACKGROUND_COLOR = Color3.fromRGB(31,31,31)
TopbarConstants.TOPBAR_OPAQUE_TRANSPARENCY = 0
TopbarConstants.TOPBAR_TRANSLUCENT_TRANSPARENCY = 0.5

Location: game.CoreGui.RobloxGui.Modules.TopBarConstants. It have some stuff of the TopBar.

I hope this helps you! :+1:

3 Likes