{
“$schema”: “https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json”,
“elmType”: “div”,
“txtContent”: “@currentField”,
“style”: {
“color”: “=if(@currentField <= @now, ‘red’,if(@currentField <= @now + 2592000000 && @currentField > @now,’orange’,’lightgreen’))”,
“font-weight”: “=if(@currentField <= @now, ‘bold’,if(@currentField <= @now + 2592000000 && @currentField > @now,’bold’,’normal’))”
}
}
**** 2592000000 = 30 Days in Seconds
Older than today – RED – Today + 30 Days – ORANGE , else Green