Change DialogTone with scripts

Hello. So, I’m trying to make a script so it changes dialogue’s tone to one selected in a module.
The problem is, the DialogTone always ends up being Neutral (blue) and not Enemy (red) as set in the module.

local req = require(replicatedFolder.Settings)
-- Theme
if req.Theme == "blue" or "Blue" then
	replicatedFolder.Dialog.Tone = Enum.DialogTone.Neutral
elseif req.Theme == "red" or "Red" then
	replicatedFolder.Dialog.Tone = Enum.DialogTone.Enemy
elseif req.Theme == "green" or "Green" then
	replicatedFolder.Dialog.Tone = Enum.DialogTone.Friendly
else
	replicatedFolder.Dialog.Tone = Enum.DialogTone.Neutral
end

And the module is just

local settingsModule = {
	
	Theme = "red",

}

return settingsModule

Actually, I fixed this.
I just had to remove the or "Color" from each if.

The reason it didn’t work beforehand is because you need to check each value in the Boolean expression against the condition.

if req.Theme == "blue" or req.Theme == "Blue" then