ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# seaborn.husl_palette > 译者:[Modrisco](https://github.com/Modrisco) ```py seaborn.husl_palette(n_colors=6, h=0.01, s=0.9, l=0.65) ``` 在 HUSL 色调空间中获得一组均匀间隔的颜色。 h, s, 和 l 值应该在 0 和 1 之间。 参数:`n_colors`:int > 调色板中的颜色数 `h`:float > 第一个色调 `s`:float > 饱和度 `l`:float > 亮度 返回值:`palette`:seaborn 调色板 > 类似列表的颜色对象的 RGB 元组。 另外 在 HSL 系统中使用等间距圆形色调创建一个调色板。 例子 使用默认参数创建一个有 10 种颜色的调色板: ```py >>> import seaborn as sns; sns.set() >>> sns.palplot(sns.husl_palette(10)) ``` ![http://seaborn.pydata.org/_images/seaborn-husl_palette-1.png](https://img.kancloud.cn/bc/41/bc411367b18ab27eb59c551c62a43d6d_900x90.jpg) 创建一个以不同色调值开头的 10 种颜色的调色板: ```py >>> sns.palplot(sns.husl_palette(10, h=.5)) ``` ![http://seaborn.pydata.org/_images/seaborn-husl_palette-2.png](https://img.kancloud.cn/46/bc/46bca033d2d73de7d7af7973407f895b_900x90.jpg) 创建一个比默认颜色更暗的 10 种颜色的调色板: ```py >>> sns.palplot(sns.husl_palette(10, l=.4)) ``` ![http://seaborn.pydata.org/_images/seaborn-husl_palette-3.png](https://img.kancloud.cn/0c/a6/0ca653ddb3cebac33598c62fd3c1feb6_900x90.jpg) 创建 10 种颜色的调色板,其饱和度低于默认值: ```py >>> sns.palplot(sns.husl_palette(10, s=.4)) ``` ![http://seaborn.pydata.org/_images/seaborn-husl_palette-4.png](https://img.kancloud.cn/b2/fd/b2fd9acd146ca25155a9fc308c675504_900x90.jpg)