1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
ChatGPT 主要調整區域與語法|ChatGPT CSS Note

୨୧・୨୧・୨୧

■ 背景與開始畫面的標題顏色:
.relative.flex.h-full.max-w-full.flex-1.flex-col.overflow-hidden {
background-color: pink;
color: black;
}


■ 側邊欄的字體顏色:
.text-token-text-primary {
color: black;
}


■ ChatGPT的訊息框樣式:
.w-full .markdown {
background-color: white;
color: black;
border-radius: 30px;
padding: 10px 20px 10px 20px;
border: 1px solid pink;
box-shadow: 0 3px 5px darkpink;
}


■ 使用者方的訊息框樣式:
.bg-token-message-surface {
background-color: lightpink;
color: black;
border-radius: 30px;
padding: 10px 20px 10px 20px;
box-shadow: 0 3px 5px darkpink;
}


■ 按鈕樣式(注意!會套用全部可以點擊的地方):
.btn,
button {
background-color: white;
color: pink;
border: none;
border-radius: 30px;
box-shadow: 0 1.5px 3px darkpink;
padding: 1.5px 12px 1.5px 12px;
}


■ 按鈕補充包-新交談(不清楚為什麼這個被漏掉):
a[aria-label="新聊天"] {
background-color: #fff0;
color: pink;
border: none;
border-radius: 30px;
box-shadow: none;
padding: 1.5px 12px;
}


■ 使用者的照片:
div[data-message-author-role="user"]::before {
content: " ";
margin-top: -20px;
/* 圖片網址 */
background-image: url('(圖片網址)');
background-size: 30px 30px;
border-radius: 15px;
width: 30px;
height: 30px;
z-index: 0;
}

div[data-message-author-role="user"] {
position: relative;
}


■ 輸入訊息框樣式:
div[class*="composer"] div.bg-token-main-surface-primary {
border: 1px solid white;
background-color: white;
box-shadow: darkpink;
}