foreground: lightDark()

in src/theme.js [578:592]


          foreground: lightDark(scale.blue[8], scale.blue[1]),
          fontStyle: "underline",
        },
      },
    ],
  };
}

// Convert to hex
// VS Code doesn't support other formats like hsl, rgba etc.

function changeColorToHexAlphas(obj) {
  if (typeof obj === 'object') {
    for (var keys in obj) {
      if (typeof obj[keys] === 'object') {