Comment tweaks

This commit is contained in:
Daniel Imms
2021-12-22 09:10:12 -08:00
parent e635b3d507
commit 086ca58ece
2 changed files with 4 additions and 3 deletions
-2
View File
@@ -6,8 +6,6 @@
import { IColor } from 'browser/Types';
import { IColorRGB } from 'common/Types';
// FIXME: Move Color.ts lib to common?
/**
* Helper functions where the source type is "channels" (individual color channels as numbers).
*/
+4 -1
View File
@@ -49,7 +49,10 @@ export function parseColor(data: string): [number, number, number] | undefined {
return result;
}
}
// FIXME: Once #3530 is resolved, implement named colors.
// Named colors are currently not supported due to the large addition to the xterm.js bundle size
// they would add. In order to support named colors, we would need some way of optionally loading
// additional payloads so startup/download time is not bloated (see #3530).
}
// pad hex output to requested bit width