Files
gopad/settings/settings.go
2022-02-27 14:06:39 +04:00

13 lines
390 B
Go
Executable File

package settings
import "github.com/inkyblackness/imgui-go/v4"
var (
FontSize float32 = 16
TextSelectionColor imgui.Vec4 = imgui.Vec4{X: 84 / 255.0, Y: 153 / 255.0, Z: 199 / 255.0, W: 0.4}
EditorBgColor imgui.Vec4 = imgui.Vec4{X: 0.1, Y: 0.1, Z: 0.1, W: 1}
TabSize int = 4
ScrollSpeed float32 = 4
CursorWidthFactor float32 = 0.15
)