-- imgui_notf.lua
local typeStyle = {
{ -- 1 - normal message
text = imgui.ImColor(255, 255, 255, 255):GetVec4(),
rightBox = imgui.ImColor(0, 0, 0, 255):GetU32(),
mainBox = {
imgui.ImColor(0, 0, 0, 170):GetU32(), -- left top
imgui.ImColor(0, 0, 0, 235):GetU32(), -- right top
imgui.ImColor(0, 0, 0, 235):GetU32(), -- left button
imgui.ImColor(0, 0, 0, 170):GetU32(), -- right button
}
},
{ -- 2 - info message
text = imgui.ImColor(255, 255, 255, 255):GetVec4(),
rightBox = imgui.ImColor(0, 157, 194, 255):GetU32(),
mainBox = {
imgui.ImColor(0, 137, 174, 170):GetU32(), -- left top
imgui.ImColor(0, 137, 174, 235):GetU32(), -- right top
imgui.ImColor(0, 137, 174, 235):GetU32(), -- left button
imgui.ImColor(0, 137, 174, 170):GetU32(), -- right button
}
},
{ -- 3 - error message
text = imgui.ImColor(255, 255, 255, 255):GetVec4(),
rightBox = imgui.ImColor(190, 40, 40, 255):GetU32(),
mainBox = {
imgui.ImColor(170, 20, 20, 170):GetU32(), -- left top
imgui.ImColor(170, 20, 20, 235):GetU32(), -- right top
imgui.ImColor(170, 20, 20, 235):GetU32(), -- left button
imgui.ImColor(170, 20, 20, 170):GetU32(), -- right button
}
},
{ -- NEW STYLE 4
text = imgui.ImColor(255, 255, 255, 255):GetVec4(),
rightBox = imgui.ImColor(0.67, 0.35, 1.00, 0.54):GetU32(),-- 0.67, 0.35, 1.00, 0.54 фиолетовый
mainBox = {
imgui.ImColor(170, 20, 20, 170):GetU32(), -- left top
imgui.ImColor(170, 20, 20, 235):GetU32(), -- right top
imgui.ImColor(170, 20, 20, 235):GetU32(), -- left button
imgui.ImColor(170, 20, 20, 170):GetU32(), -- right button
}
}
}