This feature enables the [Document Color](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.18/specification/#textDocument_documentColor) and [Color Presentation](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.18/specification/#textDocument_colorPresentation) requests. ### Implementation - [Document colors](https://github.com/wkillerud/some-sass/blob/35cd68d30100f28d50b83482aa82eddd2c2d74bb/packages/vscode-css-languageservice/src/services/cssNavigation.ts#L445) - [Colors from the workspace](https://github.com/wkillerud/some-sass/blob/main/packages/language-services/src/features/find-colors.ts) ### Tests - [Document colors](https://github.com/wkillerud/some-sass/blob/35cd68d30100f28d50b83482aa82eddd2c2d74bb/packages/vscode-css-languageservice/src/test/css/navigation.test.ts#L633) - [Colors from the workspace](https://github.com/wkillerud/some-sass/blob/main/packages/language-services/src/features/__tests__/find-colors.test.ts) 