static bool isCSSVariableValue(String? value) { if (value == null) { return false; } return value.contains('var'); }