> ## Content Index
> Fetch the complete content index at: https://siwei.li/llms.txt
> Use this file to discover other available public pages before exploring further.

# macOS中Spotify的主题替换
- URL: https://siwei.li/replacing-spotifys-theme-on-macos/
- Published: 2025-06-12T02:48:12.000Z
- Updated: 2026-07-18T04:36:45.000Z
- Description: 在macOS上通过Spicetify安装Matte主题和Porcelain配色，让Spotify从默认深色界面切换为浅色风格。
- Author: 李思维
- Tags: 分享

由于 Spotify 默认的黑色主题与我系统的浅色（白色）配色不协调，加之 Spotify 官方尚未开放自定义主题功能，因此我选择使用 Spicetify 进行主题美化。配置过程稍显复杂。在本文中，我将以 Matte 主题下的 Porcelain 配色方案 为例，分享一套详细的安装与设置步骤教程。

### 第一步：安装 Homebrew（如尚未安装）

**打开终端并执行**

```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

**添加 Homebrew 到环境变量（Apple Silicon 芯片）**

```
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
```

### 第二步：安装 Spicetify CLI

```
brew install spicetify-cli
```

### 第三步：备份并初始化 Spotify 客户端

```
spicetify backup apply
```

### 第四步：下载并配置 MattePorcelain 主题([官网步骤](https://github.com/spicetify/spicetify-themes?ref=siwei.li))

克隆 Spicetify 主题仓库

```
git clone https://github.com/spicetify/spicetify-themes.git ~/spicetify-themes
```

将 Matte 主题复制到配置目录

```
mkdir -p ~/.config/spicetify/Themes
cp -r ~/spicetify-themes/Matte ~/.config/spicetify/Themes/
```

拷贝 Porcelain 配置文件

```
cp ~/spicetify-themes/Matte/Porcelain.ini ~/.config/spicetify/Themes/Matte/
```

### 第五步：设置并应用主题

```
spicetify config current_theme Matte
spicetify config color_scheme Porcelain
spicetify apply
```

### 第六步：重启 Spotify